/*
Theme Name: Ortexpo
Author: Maio
Version: 1.0
*/

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    font-family: 'TildaSans';
    font-weight: 300;
    color: #0D0D0D;
    background-color: #f9f9f9;
    background-image: url(img/bg-ortexpo.svg);
    background-repeat: no-repeat;
    background-position: top left;
}

ul, ol {
    list-style: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}
html.pum-open.pum-open-overlay .header-bottom.is-fixed {
    transform: translateX(-8px);
}
.site-main {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}

.ortexpo-content {
    max-width: 1123px;
    min-width: 320px;
    margin: 0 auto;
}

.ortexpo-content .ortexpo-content-wrapper {
    display: block;
    margin-left: 20px;
    margin-right: 20px;
}

/* Шрифты */
@font-face { font-family: 'TildaSans'; font-weight: 100; font-style: normal; src: url(css/font/TildaSans-Light.ttf); }
@font-face { font-family: 'TildaSans'; font-weight: 200; font-style: normal; src: url(css/font/TildaSans-Regular.ttf); }
@font-face { font-family: 'TildaSans'; font-weight: 300; font-style: normal; src: url(css/font/TildaSans-Medium.ttf); }
@font-face { font-family: 'TildaSans'; font-weight: 400; font-style: normal; src: url(css/font/TildaSans-Semibold.ttf); }
@font-face { font-family: 'TildaSans'; font-weight: 500; font-style: normal; src: url(css/font/TildaSans-Bold.ttf); }
@font-face { font-family: 'TildaSans'; font-weight: 600; font-style: normal; src: url(css/font/TildaSans-ExtraBold.ttf); }
@font-face { font-family: 'TildaSans'; font-weight: 700; font-style: normal; src: url(css/font/TildaSans-Black.ttf); }

/* Header Top */
.header-top {
    display: flex;
    margin: 0 -10px;
    justify-content: space-between;
    padding-top: 27px;
}

.header-top > div {
    padding: 0 10px;
}

.header-top .social-flex {
    display: block;
    font-size: 0;
}

.header-top .social-flex a {
    display: inline-block;
    padding: 0 14px 5px 0;
}

.header-top .social-flex a:last-child {
    padding-right: 0;
}

.header-top .social-flex a svg {
    transition: 0.4s;
}

.header-top .social-flex a:hover svg {
    transform: scale(1.1);
    filter: brightness(1.2);
}
.social-flex:hover a:not(:hover) {
    opacity: 0.6;
}
.social-flex a {
   transition:0.4s;
}
.header-top .top-link {
    font-weight: 300;
    font-size: 20px;
    line-height: 124%;
    transition: 0.4s;
}

.header-top .top-txt {
    font-weight: 300;
    font-size: 13px;
    line-height: 124%;
    padding-bottom: 12px;
}

.header-top .custom-logo-link img {
    width: 100%;
    height: 100%;
}

.header-top .logo {
    width: 206px;
}
.header-mobile .logo {
    width: 206px;
}

.header-mobile .logo img {
    width: 100%;
    height: 100%;
}
/* Localization */
.header-top .localization-wrapper {
    position: relative;
}

.header-top .localization-wrapper .localization-top {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 15px;
    line-height: 124%;
    gap: 4px;
    cursor: pointer;
}

.header-top .localization-wrapper .localization-list {
    pointer-events: none;
    position: absolute;
    z-index: 2;
    top: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 4px 24px rgba(27, 30, 37, 0.08);
    border-radius: 5px;
    transition: 0.4s;
    opacity: 0;
}

.header-top .localization-wrapper:hover .localization-list {
    opacity: 1;
    pointer-events: all;
}

.header-top .localization-wrapper .localization-list .localization-list-item {
    padding: 0 10px;
    cursor: pointer;
    transition: 0.4s;
}

.header-top .localization-wrapper .localization-list .localization-list-item:hover {
    color: #009DD8;
}

/* Header Bottom */
.header-bottom {
    margin: 0 -10px;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
}

.header-bottom .main-navigation, 
.header-bottom .header-form-wrap {
    padding: 0 10px;
}

.header-bottom .main-navigation {
    width: 70%;
    max-width: 705px;
}

.header-bottom .main-navigation .nav-list {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, #171717 0%, #5B5B5B 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    font-size: 16px;
    line-height: 124%;
    text-align: center;
    padding: 10px 22px;
}

.header-bottom .main-navigation .nav-list a {
    padding: 7px 10px;
    display: block;
    transition: 0.4s;
    position: relative;
}

.header-bottom .main-navigation .nav-list a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #fff;
    transition: 0.4s;
    width: 0;
}

.header-bottom .main-navigation .nav-list a:hover:after,
.header-bottom .main-navigation .current-menu-item a:after {
    width: 100%;
}
.header-bottom .main-navigation .nav-list a:hover,
.header-bottom .main-navigation .current-menu-item a {
 
}
.header-bottom .header-btn {
    font-weight: 200;
    font-size: 16px;
    line-height: 124%;
    background: linear-gradient(180deg, #00AEEF 0%, #009DD8 100%);
    color: #fff;
    transition: 0.4s;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
}

.header-bottom .header-form-wrap {
    position: relative;
}
.header-bottom.is-fixed:after {
    right: 0;
    left: 0;
    width: 100vw;
    background: #f9f9f9;
    content: "";
    position: fixed;
    top: 0;
    height: 90px;
}

.header-bottom.is-fixed > div {
    position: relative;
    z-index: 2;
}
.header-bottom .header-form-wrap .count-basket {
    position: absolute;
    top: -16px;
    right: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 0%;
    text-align: center;
    color: #4D4D4D;
    background: #E9EBEB;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 3px solid #fff;z-index:2;
}

.header-bottom .header-form-wrap .count-basket-decor {
    right: 7px;
    position: absolute;
    top: -7px;z-index:2;
}.header-bottom .header-btn span {
    position: relative;
    z-index: 3;
}
.header-bottom .header-btn span {
    position: relative;
    z-index: 3;
}

.header-bottom .header-btn:hover:after {
    opacity: 1;
}

.header-bottom .header-btn:after {
    background: #5ac3eb;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    bottom: 0;
    z-index: 1;
    content: "";
    opacity: 0;
    transition: 0.4s;
}

.widget-portfolio .category-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.widget-portfolio .category-list .category-item {
    cursor: pointer;
    font-weight: 200;
    font-size: 18px;
    line-height: 124%;
    text-align: center;
    padding: 3px 24px;
    border: 1px solid #DADADA;
    border-radius: 30px;
    margin-right: 12px;
    margin-bottom: 10px;
    background: #fff;
    transition: 0.4s;
}

.widget-portfolio .category-list .category-item:hover, 
.widget-portfolio .category-list .category-item.active {
    background: #E9EBEB;
    border-color: #E9EBEB;
}
.widget-portfolio .portfolio-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 37px;
}

.widget-portfolio .item-card {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
}
.widget-portfolio .item-card-flex {
    border: 1px solid #ECECEC;
    background: #fff;
    padding: 4px 35px 25px 36px;
    border-radius: 10px;
    color: #333333;
    height: 100%;
}


.widget-portfolio .item-card-flex .item-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 11px;
}
.widget-portfolio .name {
    font-weight: 500;
    font-size: 24px;
    line-height: 129%;
    display: block;
    padding-bottom: 5px;
}

.widget-portfolio .size {
    font-weight: 300;
    font-size: 16px;
    line-height: 129%;
    position: relative;
    padding-left: 6px;
    padding-bottom: 2px;
}

.widget-portfolio .size svg {
    position: absolute;
    left: 0;
    bottom: 0;
}

.widget-portfolio .card-link {
    font-weight: 200;
    font-size: 13px;
    line-height: 124%;
    letter-spacing: 0%;
    border: 1px solid #DADADA;
    border-radius: 22px;
    padding: 4px 13px;
    cursor: pointer;
    transition: 0.4s;
    color: #0D0D0D;
}

.widget-portfolio .card-link:hover {
    background: #E9EBEB;
    border-color: #E9EBEB;
}

.widget-portfolio .work-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.widget-portfolio .work-gallery-grid .image-item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 8px;
}
.widget-portfolio .work-gallery-grid .image-image {
    padding-bottom: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    display: block;
}
.widget-portfolio .work-gallery-grid .image-item:first-child {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
}

.widget-portfolio .work-gallery-grid .image-item:first-child .image-image {
    padding-bottom: 75%;
}

.widget-portfolio .work-gallery-grid .image-item:nth-child(n+6) {
    display: none;
}
.widget-detail-content {
    padding: 93px 0 88px 0;
}
.widget-portfolio .work-gallery-grid .image-item:first-child .plan {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-weight: 200;
    font-size: 12px;
    line-height: 124%;
    letter-spacing: 0%;
    text-align: center;
    padding: 3px 15px 4px 15px;
    color: #FFFFFF;
    background: #FFFFFF80;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.4s;
    cursor: pointer;
}
.widget-portfolio .work-gallery-grid .image-item:first-child .plan:hover {
    background: #7e7e7ec4;
}
.widget-portfolio .work-gallery-grid .image-item:first-child .download {
    right: 0;
    position: absolute;
    top: 0;
    padding: 24px;
}
.widget-portfolio .work-gallery-grid .image-item:first-child .plan svg {
    margin-right: 7px; 
    top: 0px;
    position: relative;
}
.widget-portfolio .work-gallery-wrap .download {
    right: 0;
    position: absolute; 
    top: 0;
    padding: 24px;
}

.widget-portfolio .category-list-wrapper.is-fixed {
    z-index: 22;
    position: fixed;
    top: 90px;
    left: 0;
    animation: slideDown 0.3s ease-out;
    right: 0;
    background: #f9f9f9;
}
.widget-portfolio .category-list-wrapper.is-fixed .category-list {
    padding: 0 20px;
    padding-bottom: 20px;
    max-width: 1123px;
    min-width: 320px;
    margin: 0 auto;
}
@media all and (max-width: 850px) {
	.widget-portfolio .category-list-wrapper.is-fixed {
		top: 0;
		padding-top: 20px;
	}
}
.solutions-gallery-wrap .owl-item.center {
    opacity: 1;
}

.solutions-gallery-wrap .owl-item {
    opacity: 0.4;
}

.widget-portfolio .work-gallery-wrap .download:hover ~ .fade-download {
    opacity: 1;
}
.widget-portfolio .work-gallery-wrap .download a {
    right: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.widget-detail-content h1 {
    font-weight: 400;
    font-size: 48px;
    line-height: 129%;
    letter-spacing: 0%;
    padding-bottom: 17px;
}

.widget-detail-content p {
    font-weight: 200;
    font-size: 32px;
    line-height: 129%;
}

.widget-portfolio .work-gallery-wrap {
    position: relative;
    font-size: 0;
}

.widget-portfolio .work-gallery-wrap .fade-cart, 
.widget-portfolio .work-gallery-wrap .fade-download {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 8px;
    background: #727272B2;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.widget-portfolio .work-gallery-wrap .fade-cart .delete {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 20px;
}
.lg-toolbar .lg-close:after{
	content:url(/wp-content/themes/ortexpo/img/close.svg)!important;
}
.lg-prev:after {
    content: url(/wp-content/themes/ortexpo/img/left-arr.svg)!important;
	 background: #ffffff61 !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    pointer-events: all !important;
    padding: 0 !important;
	transition:0.4s;
    margin-right: 100px;
}
.lg-next:before {
    content: url(/wp-content/themes/ortexpo/img/right-arrov.svg) !important;  
	background: #ffffff61 !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    pointer-events: all !important;transition:0.4s;
    margin-left: 100px;

}
div .lg-next, 
div .lg-prev {
    pointer-events: all !important;
    background: transparent !important;
    height: calc(100vh - 191px);
    top: 81px !important;
    bottom: 110px;
    padding-bottom: 81px;
    position: fixed;
    padding: 0 !important;
}

div .lg-next {
    width: calc((100vw - (1123px - 5%)) / 2);
    right: 0;
}
div .lg-prev {
    width: calc((100vw - (1123px - 5%)) / 2);
    left: 0;
    display: flex;
    justify-content: right;
    align-items: center;
}
@media all and (max-width: 1200px) {
	div .lg-prev {
		width: calc((100vw - (100vw - 20%)) / 2);
		left: calc((100vw - (100vw)) / 2 * -1);
	}
	div .lg-next {
		width: calc((100vw - (100vw - 20%)) / 2);
		right: calc((100vw - (100vw)) / 2 * -1);
	}
}

div .lg-outer{
    overflow: visible;
}
div .lg-container {
    overflow: hidden;
}

.lg-next, 
.lg-prev,
.lg-toolbar .lg-close {
    transition: 0.4s !important;
}

div .lg-next:hover:not(.disabled):before, 
div .lg-prev:hover:not(.disabled):after {
    background: #ffffffa6 !important;
}
.lg-toolbar .lg-close:hover:after {
    opacity: 0.8;
}
.lg-toolbar .lg-icon {
    height: 65px !important;
    width: 50px !important;
    margin-right: -100px;
}
.lg-outer {
    right: 0 !important;
    max-width: 1123px !important;
    min-width: 320px !important;
    margin: 0 auto !important;
}
@media (max-width: 1370px) {
	.lg-toolbar .lg-icon {
		margin-right: 0;
	}

	.lg-prev:after {
		margin-right: 0;
	}

	.lg-next:before {
		margin-left: 0;
	}
}

.widget-portfolio .item-card.added .fade-cart .delete {
    pointer-events: all;
    z-index: 2;
}
.widget-portfolio .work-gallery-wrap .fade-download {
    font-weight: 100;
    font-size: 32px;
    line-height: 124%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}
.widget-portfolio .item-card.added .fade-cart {
    opacity: 1;
}

.widget-portfolio .item-card.added .fade-download {
    display: none;
}

.widget-portfolio .item-card.added .fade-cart .delete {
    pointer-events: all;
}

.site-footer {
    flex-shrink: 0;
    background: #191919;
    color: #fff;
    padding: 65px 0;
}

.site-footer-flex {
    margin: 0 -10px;
    display: flex;
    justify-content: space-between;
}

.site-footer-flex > div {
    padding: 0 10px;
}

.site-footer-flex .top-txt {
    font-weight: 300;
    font-size: 14px;
    line-height: 124%;
    padding-bottom: 9px;
}

.site-footer-flex  .social-flex {
    display: flex;
}

.site-footer-flex .social-flex svg {
    min-width: 22px;
    width: 22px;
	transition:0.4s;
}

.site-footer-flex .social-flex a {
    margin: 0 10px 10px 0px;
}
.site-footer-flex .social-flex a:hover svg {
    transform: scale(1.2);
}
.site-footer-flex a.top-link {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
	transition:0.4s;
}

.site-footer-flex .contacts {
    margin-top: 13px;
}
.header-mobile,
.mobile-menu {
    display: none;
}

.solutions-list .solutions-element {
    border: 2px solid #ECECEC;
    border-radius: 10px;
    padding: 25px 23px 80px 20px;
    margin-bottom: 35px;
    background: #fff;
}

.solutions-list .solutions-element .top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    gap: 10px;
}

.solutions-list .solutions-element .name {
    font-weight: 300;
    font-size: 48px;
    line-height: 1.2;
    padding-right: 10px;
}

.solutions-list .solutions-element .file a {
    display: flex;
}

.file-text .bl {
    color: #009DD8;
    text-decoration: underline;
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.file-text .gr {
    text-decoration: none;
    display: block;
    font-size: 14px;
    color: #333333;
}


.solutions-list .solutions-element .file .icon {
    margin-right: 10px;
}

.solutions-list .solutions-element .content-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.solutions-list .solutions-element .content-top-flex .content {
    font-weight: 200;
    color: #0D0D0D;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    padding-right: 10px;
}

.solutions-list .solutions-element .content-top-flex .content ul li {
    padding-left: 20px;
    position: relative;
}

.solutions-list .solutions-element .content-top-flex .content ul li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #0D0D0D;
    display: inline-block;
    left: 5px;
    top: 6px;
    border-radius: 50px;
}

.solutions-list .solutions-element .content-top-flex .solutions-btn {
    font-weight: 200;
    font-size: 13px;
    line-height: 124%;
    letter-spacing: 0%;
    text-align: center;
    padding: 5px 13px;
    border: 1px solid;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.4s;
	color: #fff;
    background: #00AEEF;
    border-color: #00AEEF;
}

.solutions-list .solutions-element .content-top-flex .solutions-btn:hover {
  color: #0D0D0D;
  border-color:#DADADA;
  background:#fff;
}
.solutions-list .solutions-element .content-main-flex {
    display: flex;
    margin: -5px;
    margin-top: 30px;
}
#file-list-display,
#file-list-tech {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.solutions-list .solutions-element .content-main-flex .text-inner-wrap {width: 31%;padding: 5px;}

.solutions-list .solutions-element .content-main-flex .solutions-gallery-wrap {
    width: 69%;
    padding: 5px;
    position: relative;
    height: auto;
    font-size: 0;
    align-self: flex-start;
}
.solutions-list .solutions-element .price {
    font-weight: 300;
    font-size: 32px;
    letter-spacing: 0%;
    margin-bottom: 10px;
    line-height: 1.3;
}
.solutions-list .solutions-element .fade-cart {
    position: absolute;
    top: 5px;
    left: 125px;
    right: 125px;
    bottom: 5px;
    background: #727272B2;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    z-index: 10;
}

.solutions-list .solutions-element.added .fade-cart {
    opacity: 1;
    pointer-events: all;
}

.solutions-list .solutions-element .fade-cart .delete {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 20px;
}
.solutions-list .solutions-element .content-main-flex h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
}

.solutions-list .solutions-element .content-main-flex ul {
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
}

.solutions-list .solutions-element .content-main-flex .image-image {
    display: block;
    padding-bottom: 70%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.solutions-list .solutions-element .content-main-flex .owl-stage-outer {
    border-radius: 10px;
}

.solutions-list .solutions-element .content-main-flex .owl-nav {

    pointer-events: none;
}

.solutions-list .solutions-element .content-main-flex .owl-nav button {
    pointer-events: all;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
}
.solutions-list .solutions-element .content-main-flex .owl-nav button:hover:after {
    background: #ffffffa6 !important;
}
.solutions-list .solutions-element .content-main-flex .owl-nav button.owl-next {
    right: 0;
    left: auto;
}

.solutions-list .solutions-element .content-main-flex .owl-nav button svg {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-40%) translateY(10px);
}

.solutions-list .solutions-element .content-main-flex .owl-nav button:after {
    content: "";
    width: 55px;
    height: 55px;
    background: #4e4b4bab;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
}

.solutions-list .solutions-element .content-main-flex .owl-item.center {
    opacity: 1;
}

.solutions-list .solutions-element .content-main-flex .owl-item {
    opacity: 0.4;
}

.solutions-list .solutions-element .content-main-flex .text-inner{
    position: relative;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Слой с градиентом */
.solutions-list .solutions-element .content-main-flex .text-inner.has-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255 255 255));
    pointer-events: none;
    transition: opacity 0.3s ease;
}
/* Скрываем градиент при раскрытии */
.solutions-list .solutions-element .content-main-flex .text-inner.is-expanded::after {
    opacity: 0;
}
.solutions-list .solutions-element .content-main-flex .show-more-btn {
    display: inline-block;
    margin-top: 7px;
    color: #009DD8;
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0%;
    text-decoration: underline;
}
.solutions-list .solutions-element .file .icon img, 
.solutions-list .solutions-element .file .icon {
    width: 38px !important;
}
.solutions-wrapper {}

.solutions-wrapper .solutions-title {
    font-weight: 400;
    font-size: 52px;
    line-height: 129%;
    letter-spacing: 0%;
    padding-bottom: 37px;
}

.solutions-wrapper .solutions-element {
    background: #fff;
    border: 1px solid #ECECEC;
    margin-bottom: 35px;
    border-radius: 10px;
    padding: 22px 33px 37px 37px;
}

.solutions-wrapper .solutions-elements .solutions-element-price {
    font-weight: 300;
    font-size: 32px;
    line-height: 129%;
    letter-spacing: 0%;
    text-align: center;
    color: #0D0D0D;
}

.solutions-wrapper .solutions-elements .solutions-flex-props {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    font-size: 24px;
    line-height: 129%;
    letter-spacing: 0%;
    padding-bottom: 17px;
}
.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-stage-outer {
    border-radius: 10px;
}
.solutions-wrapper .thumbs-carousel {
    display: flex;
    padding-top: 24px;
}
.solutions-wrapper .solutions-element .owl-dots .owl-dot {
    flex: 1;
    padding: 10px;
}
.solutions-wrapper .thumbs-carousel .item span {
    background-position: center;
    display: block;
    padding-bottom: 52%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.4s;
    border-radius: 10px;
    cursor: pointer;
}
.solutions-wrapper .thumbs-carousel .current .item span {
    transform: scale(1.1);
}
.solutions-wrapper .thumbs-carousel .owl-stage-outer {
    padding: 10px 10px;
    margin: -10px -10px;
}
.solutions-widget .owl-dots {
    display: none;
}
.solutions-wrapper .solutions-elements .solutions-gallery-wrap .image-image {
    padding-bottom: 50%;
    display: block;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}
.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav {
    /* display: flex; */
    left: 15px;
    right: 15px;
    top: 50%;
    /* transform: translateY(-50%); */
    justify-content: space-between;
    pointer-events: none;
}
.bottom_description {
    font-weight: 100;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 0%;
    color: #0D0D0D;
    margin-top: 113px;
    margin-bottom: 60px;
}

.bottom_description .yellow-frame {
    background: #FFB72D;
    font-weight: 400;
    font-size: 32px;
    line-height: 129%;
    letter-spacing: 0%;
    padding: 13px 0;
    margin-bottom: 15px;
}

.bottom_description h2 {
    font-weight: 200;
    font-size: 52px;
    line-height: 129%;
    letter-spacing: 0%;
    padding-bottom: 35px;
}

.bottom_description .d-item {
    position: relative;
    padding-left: 25px;
    padding-bottom: 19px;
}

.bottom_description .d-item:after {
    content: "";
    background: #0D0D0D;
    width: 9px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}

.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button {
    pointer-events: all;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10%;
}
.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button:after {
    content: "";
    width: 55px;
    height: 55px;
    background: #4e4b4bab;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
	transition:0.4s;
}
.solutions-element-download a {
	transition:0.4s;	
}
.solutions-element-download a:hover {
    opacity: 0.5;
}
.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button.owl-next {right: 0;left: auto;}

.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button svg {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-40%) translateY(30%);
}
.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button:hover:after{
    background: #ffffffa6 !important;
}
.contact-flex {
    display: flex;
    padding-top: 18px;
    /* margin: -17px; */
}

.contact-flex iframe {
    height: calc(100% + 34px);
    width: calc(100% + 17px);
    margin-left: -17px;
    margin-top: -17px;
}

.contact-flex .contact-map {
    padding: 17px;
    background: #E9EBEB;
    width: 50%;
}

.contact-flex .contact-map .info {
    padding: 17px;
}

.contact-flex .info {
    padding: 32px 18px;
    width: 50%;
    background: #E9EBEB;
}

.contact-flex .info .info-item {
    display: flex;
    color: #0D0D0D;
    padding-bottom: 30px;
}

.contact-flex .info .info-item .name {
    padding-right: 10px;
    width: 40%;
    font-weight: 200;
    font-size: 24px;
    line-height: 129%;
    letter-spacing: 0%;
}

.contact-flex .info .info-item  .value {
    width: 60%;
    font-weight: 200;
    font-size: 24px;
    line-height: 129%;
    letter-spacing: 0%;
}

.contact-flex .info .info-item .name a {
    display: inline-block;
    padding-right: 5px;
}

.contact-flex .info .info-item .name a svg:hover [fill="#303130"] {
    fill: #00aaea;
}

.contact-flex .info .info-item .name a svg [fill="#303130"] {
    transition: 0.4s;
}
.widget-detail-content .content-page-light {
    font-weight: 200;
    font-size: 33px;
    line-height: 127%;
    letter-spacing: 0%;
}

.widget-detail-content .content-page-light p {
    padding-bottom: 40px;
}
.about-yellow-block {
    background-color: #F8A80E;
    background-image: url(/wp-content/themes/ortexpo/img/bg-f.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 44px 0;
}

.about-yellow-block .about-flex {
    display: flex;
    color: #fff;
}

.about-yellow-block .about-flex .about-title-col {
    width: 40%;
    font-weight: 400;
    font-size: 40px;
    line-height: 118%;
    letter-spacing: 0%;
    padding-right: 10px;
}

.about-yellow-block .about-flex .about-description-col {
    font-weight: 200;
    font-size: 32px;
    line-height: 119%;
    letter-spacing: 0%;
    width: 60%;
    padding-left: 30px;
}
.brands-title {
    font-weight: 300;
    font-size: 48px;
    line-height: 129%;
    letter-spacing: 0%;
    margin-bottom: 40px;
    color: #0D0D0D;
    padding-top: 97px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    padding-bottom: 50px;
}

.brands-list .brand-item {
    width: 10%;
    display: flex;
    align-items: center;
    padding: 10px;
}

.brands-list img {
    height: auto;
    width: auto;
}

.brands-list .brand-item .brand-image {
    filter: grayscale(1);
    opacity: 0.7;
}
#ortexpo-selected-list .img {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}
#ortexpo-selected-list .project-thumb {
    width: 80px;
    position: relative;
}
#ortexpo-selected-list .project-thumb .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form {
    margin-bottom: 60px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 33px 34px;
}
.pum-theme-hello-box .pum-content.popmake-content #ortexpo-selected-list {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 23px 95px;
    position: relative;
}
.pum-theme-hello-box .pum-content.popmake-content #ortexpo-selected-list:before {
    content: "Приложено к запросу";
    font-weight: 200;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1.5%;
    color: #fff;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    text-align: center;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form label {
    border-bottom: 1px solid #D9D9D9;
    position: relative;
    display: block;
    padding-left: 35px;
    margin-bottom: 15px;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form label br {
    display: none;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form label textarea {
    resize: none;
    max-height: 109px;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form label > span {
    display: block;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form label svg {
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 2;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form label input, .pum-theme-hello-box .pum-content.popmake-content .hello-form label textarea {
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1.5%;
    border: none;
    outline: none;
    display: block;
    width: 100%;
    padding: 0px 0 12px 0;
    color: #8E8A89;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form label textarea {
    resize: none;
    max-height: 109px;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form label.file-download {
    border: 1px dashed #D9D9D9;
    border-radius: 14px;
    padding: 19px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    color: #8E8A89;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form label.file-download:hover {
    border-color: #00AEEF; 
    background: #f9f9f9;
}
.file-download .ttl {
    font-size: 16px;
    color: #8E8A89;
    margin-bottom: 7px;
    display: inline-block;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form label.file-download .decor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 8px;
    color: #8E8A89;
    font-size: 16px;
    text-decoration: underline;
}
#file-list-display {
    width: 100%;
    padding-top: 10px;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form label.file-download .decor svg {
    position:static;
    flex-shrink: 0;
    margin-right: -2px;
}

.file-download input[type="file"] {
    display: none !important;
}

.file-download .wpcf7-form-control-wrap {
    display: none;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form .wpcf7-submit {
    transition: 0.4s;
    font-weight: 200;
    font-size: 16px;
    line-height: 124%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(180deg, #00AEEF 0%, #009DD8 100%);
    border: none;
    outline: none;
    padding: 16px 36px;
    display: inline-block;
    border-radius: 30px;
    cursor: pointer;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form .wpcf7-submit:hover {
    opacity: 0.8;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form .submit-center{
	text-align: center;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form .submit-center span.wpcf7-spinner {
    display: none;
}
.selected-files-info .file-item,
#file-list-display .file-item,
#file-list-tech .file-item {
    font-weight: 200;
    font-size: 11px;
    line-height: 135%;
    color: #8E8A89;
    letter-spacing: 0%;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.selected-files-info .file-item img,
#file-list-tech .file-item img,
#file-list-display .file-item img {
    margin-right: 10px;
    width: 27px;
}
.selected-files-info .file-item .file-details span,
#file-list-tech .file-item .file-details span,
#file-list-display .file-item .file-details span {
    display: block;
    word-break: break-word;
}

.widget-portfolio .item-card.added .download {
    display: none;
}
#file-list-display .file-item span.remove-file {
    overflow: hidden;
    font-size: 40px;
    height: 20px;
    text-decoration: none;
    border: none;
    outline: none;
}
#file-list-tech a.file-item .file-size {
    transition: 0.4s;
    text-decoration: underline;
}
#file-list-tech a.file-item:hover .file-size {
    color: #404040;
}
.pum-theme-hello-box .pum-content.popmake-content .hello-form .confirm br {
    display: none;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form .confirm p {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 14px;
    color: #707070;
    font-weight: 200;
    font-size: 11px;
    line-height: 148%;
    letter-spacing: 0%;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form .confirm a {
    text-decoration: underline;
    margin-left: 3px;
}

.pum-theme-hello-box .pum-content.popmake-content .hello-form .confirm svg {
    margin-right: 6px;
}
.pum-theme-hello-box .pum-close.popmake-close {
    position: absolute;
    top: 0;
    background: transparent;
    border: none;
    right: -70px;
    color: #fff;
    font-size:0;
    background-image: url(/wp-content/themes/ortexpo/img/close.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 42px;
    height: 42px;
	transition:0.4s;
}
.pum-theme-hello-box .pum-close.popmake-close:hover {
    opacity: 0.5;
}
#ortexpo-selected-list .owl-nav {
    display: flex;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);  
    justify-content: space-between;
    pointer-events: none;
}

#ortexpo-selected-list .owl-nav button {
    width: 55px;
    height: 55px;
    background: #4e4b4bab;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}

#ortexpo-selected-list .owl-stage-outer {
    margin: 0; 
    transition: margin 0.3s ease;
}
#ortexpo-selected-list .owl-nav.disabled {
    display: none;
}
.wpcf7 form .wpcf7-response-output {
    border-color: #00a9e9 !important;
    font-weight: 200;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -1.5%;
    text-align: center;
    background: #00a9e9;
    color: #fff;
    margin: 15px -34px -33px -34px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 26px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #FF9A1F !important;
    font-weight: 200;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1.5%;
    text-align: center;
    background: #FF9A1F;
    color: #fff;
    margin: 15px -34px -33px -34px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 26px;
}
.trp-switcher-dropdown-list { 
background-color: #ffffff !important; 
border-radius: 3px !important;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
 border: none !important; 
 overflow: hidden !important; 
 margin-top: 5px !important; 
 padding: 8px 5px !important; opacity: 0; transition: 0.4s; } 
  .trp-shortcode-switcher.trp-open-on-hover.is-open .trp-switcher-dropdown-list { opacity: 1; }
  
.header-bottom.is-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #f9f9f9;
    animation: slideDown 0.3s ease-out;
    max-width: 1123px;
    min-width: 320px;
    margin: 0px auto;
    right: 0;
    padding-bottom: 10px;
    padding-top: 20px;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
/*.header-top .top-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #0D0D0D;
    transition: 0.4s;
    width: 0;
}
.header-top .top-link:hover:after {
    width: 100%;
}*/
.header-top a.top-link:hover {
    opacity: 0.5;
}
.header-top .top-link {
    position: relative;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(180deg, #00AEEF 0%, #009DD8 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.back-to-top:hover {
    transform: translateY(-3px);
    opacity: 0.8 !important;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.solutions-wrapper .solutions-elements .solutions-element-price span {
    font-weight: 100;
}
.lg-counter {
    display: block !important;
    text-align: center !important;    
	padding-left: 50px !important;
}
.trp-shortcode-overlay {
    z-index: 10 !important;
}
/* Фиксированный контейнер для всей навигации справа */
.dots-navigation {
    position: fixed;
    right: 25px; /* Отступ от правого края экрана */
    top: 50%;
    transform: translateY(-50%); /* Выравнивание строго по центру вертикали */
    display: flex;
    flex-direction: column;
    gap: 18px; /* Расстояние между точками */
    z-index: 10; /* Отображение поверх всех элементов сайта */
}

/* Обертка для каждой отдельной точки и ее тултипа */
.dots-navigation .dot-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Стили для круглых точек-ссылок */
.dots-navigation .dot-item a {
    width: 10px;
    height: 10px;
    border: 2px solid #00a6e5; /* Розовый ободок */
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    display: block;
}

/* Состояние активной или закрашенной точки */
.dots-navigation .dot-item a.active {
    background-color: #00a6e5; /* Заливка активной точки */
}

/* Черная всплывающая подсказка с текстом */
.dots-navigation .dot-tooltip {
    position: absolute;
    right: 25px; /* Дистанция от плашки до точки */
    background-color: #1e1e1e; /* Глубокий черный цвет фона */
    color: #ffffff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap; /* Запрет переноса текста "Часть X" */
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    transform: translateX(12px); /* Начальное смещение для красивого выезда */
    pointer-events: none; /* Исключает дерганье мыши при наведении на сам текст */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Легкая тень под плашкой */
}

/* Маленькая треугольная стрелочка с правого бока тултипа */
.dots-navigation .dot-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 4px 0 4px 4px;
    border-style: solid;
    border-color: transparent transparent transparent #1e1e1e; /* Цвет совпадает с фоном плашки */
}

/* Эффект появления подсказки при наведении на область точки */
.dots-navigation .dot-item:hover .dot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Возвращение в исходную позицию при анимации */
}

/* Контейнер по центру экрана */
.error-404-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Занимает большую часть экрана по высоте */
    padding: 60px 20px;
    font-family: inherit;
}

.error-404-content {
    max-width: 600px;
    text-align: center;
}

/* Огромная стильная цифра 404 */
.error-404-code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: #00a8ec; /* Голубой цвет под стиль вашей кнопки "Отправить запрос" */
    margin-bottom: 20px;
    letter-spacing: -2px;
}

/* Заголовок и текст */
.error-404-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.error-404-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Стилизация формы поиска */
.error-404-search form > div {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Поле ввода */
.error-404-search input[type="search"], 
.error-404-search input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px; /* Скругленные края под стиль шапки */
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.error-404-search input[type="search"]:focus {
    border-color: #00a8ec;
}

/* Кнопка "Поиск" */
.error-404-search input[type="submit"],
.error-404-search button {
    padding: 12px 25px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.error-404-search input[type="submit"]:hover {
    background-color: #00a8ec;
}

/* Главная кнопка возврата */
.btn-back-home {
    display: inline-block;
    padding: 14px 35px;
    background-color: #00a8ec; /* Фирменный голубой цвет */
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 168, 236, 0.2);
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: #008cc4;
    transform: translateY(-2px); /* Легкий эффект приподнимания */
    box-shadow: 0 6px 20px rgba(0, 168, 236, 0.3);
}

@media (max-width: 768px) {
    .dots-navigation { display: none; }
}

@media all and (max-width: 1024px) {
	
	.contact-flex {
		flex-wrap: wrap;
	}

	.contact-flex .contact-map {
		width: 100%;
		height: 300px;
	}

	.contact-flex .info {
		width: 100%;
	}
	.solutions-list .solutions-element .top-flex {
		flex-direction: column;
		align-items: baseline;
	}.solutions-list .solutions-element .name {
    font-size: 35px;
    padding-right: 0;
}.solutions-list .solutions-element .content-top-flex {
    flex-direction: column;
    align-items: baseline;
}.solutions-list .solutions-element .content-top-flex .btn-wrap {
    padding-top: 10px;
}
	.solutions-list .solutions-element .top-flex {
		flex-wrap: wrap;
	}
	.solutions-list .solutions-element .top-flex .name {
		width: 100%;
		padding-bottom: 10px;
		font-size: 38px;
	}
	.solutions-list .solutions-element .price {
		font-size: 25px;
	}
	.solutions-list .solutions-element {
		padding: 25px 23px 50px 20px;
	}
	.solutions-list .solutions-element .content-main-flex .text-inner-wrap {
		width: 45%;
	}
	.solutions-list .solutions-element .content-main-flex .solutions-gallery-wrap {
		width: 65%;
	}
}
@media all and (max-width: 850px) {
	.solutions-list .solutions-element .content-main-flex .text-inner-wrap {
		width: 100%;
	}
	.solutions-list .solutions-element .price {
		font-size: 23px;
		line-height: 1.2;
	}
	.solutions-list .solutions-element .content-main-flex .solutions-gallery-wrap {
		width: 100%;
	}
.solutions-list .solutions-element .content-main-flex .owl-nav button {
    width: 35px;
    height: 35px;
}.solutions-list .solutions-element .content-main-flex .owl-nav button svg {
    height: 18px;
}
	.solutions-list .solutions-element .content-main-flex {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.widget-detail-content h1 {
		font-size: 38px;
	}

	.widget-detail-content {
		padding: 40px 0 48px 0;
	}

	.widget-detail-content p {
		font-size: 20px;
	}
	.widget-portfolio .category-list {
		padding-bottom: 10px;
		flex-wrap: nowrap;
		overflow: hidden;
		overflow-x: scroll;
	}	
	.mobile-menu {
		transition: 0.4s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0D0D0DCC;
        backdrop-filter: blur(46px);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
}.widget-portfolio .category-list .category-item {
    white-space: nowrap;    font-size: 16px;
}
.widget-portfolio .item-card-flex {
    padding: 4px 20px 25px 20px;
}
.mobile-menu.active {
    opacity: 1;
        pointer-events: all;
}
.mobile-menu .mobile-menu-wrap {
        transition: 0.4s;
        background: #fff;
        position: fixed;
        top: 0;
        bottom: 0;
        width: 80%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: 100vh;
        height: 100vh;
        overflow: hidden;
        overflow-y: auto;
        left: -100%;
        opacity: 0;
}
.mobile-menu.active .mobile-menu-wrap {
    opacity: 1;
    left: 0;
}
.mobile-menu .mobile-menu-wrap .close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.mobile-menu .mobile-menu-wrap .menu-content {
    padding-bottom: 30px;
}

.mobile-menu .mobile-menu-wrap .menu-content a {
    display: block;
    padding-bottom: 10px;
    font-size: 20px;
}

.mobile-menu .mobile-menu-wrap .header-contacts .top-link {
    font-size: 20px;
}

.mobile-menu .mobile-menu-wrap .header-contacts {
    padding-bottom: 20px;
}

.mobile-menu .social-flex {
    display: flex;
}

.mobile-menu .social-flex a {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-left: 10px;
}
	.header-mobile {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
	}

	.header-bottom,.header-top {
		display: none;
		display: none;
	}

	.header-mobile .logo-menu {
		display: flex;
		align-items: center;
	}

	.header-mobile .menu-open {
		margin-right: 20px;
	}

	.header-mobile .header-btn {
		font-weight: 300;
		font-size: 16px;
		line-height: 124%;
		background: linear-gradient(180deg, #00AEEF 0%, #009DD8 100%);
		color: #fff;
		transition: 0.4s;
		padding: 16px 36px;
		border-radius: 50px;
		cursor: pointer;
	}

	.header-mobile .count-basket-decor {
		right: 7px;
		position: absolute;
		top: -7px;
	}

	.header-mobile .count-basket {
		position: absolute;
		top: -16px;
		right: 15px;
		font-weight: 400;
		font-size: 16px;
		line-height: 31px;
		letter-spacing: 0%;
		text-align: center;
		color: #4D4D4D;
		background: #E9EBEB;
		height: 35px;
		width: 35px;
		border-radius: 50%;
		border: 3px solid #fff;
	}

	.header-mobile .header-form-wrap {
		position: relative;
	}
	.mobile-menu {
		display: block;
	}
	.mobile-menu .mobile-menu-wrap .header-contacts .top-txt {
    font-weight: 300;
    font-size: 13px;
    line-height: 124%;
    padding-bottom: 12px;
}
.site-footer-flex {
    display: block;
    text-align: center;
}.site-footer-flex .logo img {
    margin: 0 auto;
}.site-footer-flex .social-flex {
    justify-content: center;
}
}

@media all and (max-width: 768px) {
	.pum-theme-hello-box .pum-close.popmake-close {
    right: 10px;
    filter: brightness(0);
    top: 10px;
    width: 22px;
    height: 22px;
}
	.about-yellow-block .about-flex .about-title-col {
    font-size: 27px;
}.about-yellow-block .about-flex .about-description-col {
    font-size: 20px;
}
	.brands-list .brand-item {
    width: 20%;
}
	.contact-flex .info .info-item .name, 
	.contact-flex .info .info-item .value {
    font-size: 20px;
}
	.bottom_description {
    margin-bottom: 60px;
    font-weight: 100;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 0%;
    color: #0D0D0D;
    margin-top: 113px;
}

.bottom_description .yellow-frame {
    background: #FFB72D;
    font-weight: 400;
    font-size: 32px;
    line-height: 129%;
    letter-spacing: 0%;
    padding: 13px 0;
    margin-bottom: 15px;
}

.bottom_description h2 {
    font-weight: 200;
    font-size: 52px;
    line-height: 129%;
    letter-spacing: 0%;
    padding-bottom: 35px;
}

.bottom_description .d-item {
    position: relative;
    padding-left: 25px;
    padding-bottom: 19px;
}

.bottom_description .d-item:after {
    content: "";
    background: #0D0D0D;
    width: 9px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}


.solutions-wrapper .solutions-title {
    font-size: 30px;
    padding-bottom: 20px;
}

.solutions-wrapper .solutions-elements .solutions-element-price {
    font-size: 23px;
}

.solutions-wrapper .solutions-elements .solutions-flex-props {
    font-size: 19px;
}

.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button svg {
    height: 17px;
}

.solutions-wrapper .solutions-elements .solutions-gallery-wrap .owl-nav button:after {
	width: 35px;
	height: 35px;
}

.bottom_description h2 {
    font-size: 30px;
    padding-bottom: 20px;
}

.bottom_description .yellow-frame {
    font-size: 20px;
}

.bottom_description {
    font-size: 16px;
}
	.widget-portfolio .item-card {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.widget-portfolio .item-card-flex .item-card-top {
    flex-wrap: wrap;
    gap: 10px;
}.widget-portfolio .name {
    font-size: 20px;
}.widget-portfolio .size {
    font-size: 14px;
}
.solutions-list .solutions-element .content-main-flex .text-inner-wrap, 
.solutions-list .solutions-element .content-main-flex .solutions-gallery-wrap {
    width: 100%;
}
.solutions-list .solutions-element .content-main-flex {
    flex-wrap: wrap;
}
}
.widget-portfolio .card-link.card-link-mobile {
    display: none;
}
@media all and (max-width: 700px) {
	div .lg-next, div .lg-prev{
		display:none;
	}
}
@media all and (max-width: 500px) {
	.header-mobile .logo {
    width: 116px;
}
	.brands-list .brand-item {
    width: 33.333333%;
}.about-yellow-block .about-flex {
    flex-wrap: wrap;
}.about-yellow-block .about-flex .about-title-col {
    width: 100%;
}.about-yellow-block .about-flex .about-description-col {
    width: 100%;
    padding-left: 0;
    padding-top: 10px;
}.brands-title {
    padding-top: 47px;
    font-size: 38px;
    margin-bottom: 20px;
}
	.contact-flex .info .info-item {
    flex-wrap: wrap;
}
.contact-flex .info .info-item .name, 
.contact-flex .info .info-item .value {
    width: 100%;
}
.solutions-list .solutions-element .top-flex .name {
    font-size: 28px;
}
	.widget-portfolio .card-link.card-link-mobile {
    display: block;
    text-align: center;
    margin-top: 10px;
}
	.widget-portfolio .item-card-flex .card-link-wrap {
    display: none;
}
	.header-mobile .logo {
		width: 120px;
	}

	.header-mobile .logo img {
		height: auto;
	}

	.header-mobile .logo-menu svg {
		width: 20px;
	}

	.header-mobile .menu-open {
		margin-right: 10px;
	}

	.header-mobile .header-btn {
		padding: 10px 16px;
	}

	.header-mobile .count-basket-decor {
		display: none;
	}

	.header-mobile .count-basket {
		top: -8px;
		right: -7px;
		height: 25px;
		line-height: 24px;
		width: 25px;
		font-size: 11px;
	}
}

@media all and (max-width:450px) {
	.solutions-wrapper .solutions-element {
		padding: 22px 10px 17px 10px;
	}
	.solutions-wrapper .solutions-elements .solutions-gallery-wrap .image-image {
		padding-bottom: 90%;
	}
	.solutions-wrapper .solutions-elements .solutions-element-price {
		font-size: 20px;
	}

	.solutions-wrapper .solutions-elements .solutions-flex-props {
		font-size: 16px;
	}

	.solutions-wrapper .thumbs-carousel {
		padding-top: 10px;
	}

}
@media all and (max-width:370px) {
		.mobile-menu .mobile-menu-wrap {
    width: 100%;
}
	.header-mobile .header-btn {
		font-size: 12px;
	}
	.header-mobile .logo-menu svg {
		width: 17px;
	}
	.header-mobile .header-btn {
		padding: 10px 13px;
	}
}