@media (min-width: 768px) {
    .container {
        width: 750px;
		max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 992px;
		max-width: 992px;
    }
}

@media (min-width: 1190px) {
    .container {
        width: 1156px;
		max-width: 1156px;
    }
}

@media (min-width: 1366px) {
    .container {
        width: 1260px;
		max-width: 1260px;
    }
}

@media (min-width: 1670px) {
    .container {
        width: 1500px;
		max-width: 1500px;
    }
}
.container {
	margin:auto;
}




.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-success {
  	color: #fff;
	background-color: #198754;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}




.entry-content 
.post-body ol {list-style: revert; margin-left:30px;}
.post-body p, .entry-content p {text-indent: 20px;}

.fullwidth-container {
    position: relative;
    overflow: hidden;
}

.fullwidth-container .bg-image {
	position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 250px;
    aspect-ratio: 30 / 13;
    object-fit: cover;
    z-index: 0;
}

.fullwidth-container .content {
    position: relative;
    z-index: 1;
}


.page-bg {
	background-image: url(/assets/themes/artprom/img/page-bg.svg)
}


/* ============================================
   Header Menu - CSS Styles
   ============================================ */

.lang-item {
	line-height: 16px!important;
    vertical-align: middle;
    padding: 10px;
    background-color: #f33a20;
    z-index: 10;
	border-radius: 5px;
    overflow: hidden;
    position: unset;
}
.lang-item a {
	color: #fff!important;
}



/* ============================================
   Push Sidebar Menu - CSS Styles
   ============================================ */

/* Main Push Sidebar Container */
.push-sidebar {
    position: fixed;
    width: 400px;
    z-index: 12;
    height: 100%;
    overflow: auto;
}

.push-sidebar.push-sidebar-right {
    background-color: #1a1a1a;
    background-color: rgba(26,26,26,1);
    z-index: 9999999;
}

/* Push Sidebar Content */
.push-sidebar-content {
    padding: 35px 45px 40px 40px;
    display: inline-block;
    width: 100%;
}

/* Push Sidebar Position and Animation */
body:not(.rtl) .push-sidebar.push-sidebar-right {
    left: -400px;
    -webkit-transition: left 400ms ease;
    -moz-transition: left 400ms ease;
    -o-transition: left 400ms ease;
    transition: left 400ms ease;
}

body:not(.rtl) .push-sidebar.push-sidebar-right.opened {
    left: 0;
    z-index: 99999999;
	color:#fff;
}

/* Body and Main Container Adjustments */
body:not(.rtl) #main {
    -webkit-transition: right 400ms ease, -webkit-transform 400ms ease;
    -moz-transition: right 400ms ease, -moz-transform 400ms ease;
    -o-transition: right 400ms ease, -o-transform 400ms ease;
    transition: right 400ms ease, transform 400ms ease;
    position: relative;
    right: 0;
    float: left;
    width: 100%;
}

body #main {
    overflow-y: hidden;
    overflow-x: hidden;
}

body:not(.rtl) #main header:not(.header_style9_left_container) {
    -webkit-transition: all 400ms ease !important;
    -moz-transition: all 400ms ease !important;
    -o-transition: all 400ms ease !important;
    transition: all 400ms ease !important;
    right: 0;
    left: 0;
}

body:not(.rtl).push-sidebar-opened #main header.header-with-container,
body:not(.rtl).push-sidebar-opened #main header.header-full-width.header_not_fixed {
    right: 0;
}

/* Push Sidebar Opened State */
.push-sidebar-opened .navbar .nav-container .custom-font-icon .icon:not(.dripicons-cross) {
    display: none;
}

.navbar .nav-container .custom-font-icon .icon.dripicons-cross {
    display: none;
}

.push-sidebar-opened .navbar .nav-container .custom-font-icon .icon.dripicons-cross {
    display: block;
    font-size: 24px;
}

/* Menu Controls */
.menu-controls {
    cursor: pointer;
}

header .menu-controls {
    padding-left: 15px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    height: 32px;
    line-height: 0;
    z-index: 99;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

header .menu-controls .font-icon .icon {
    font-size: 21px;
    top: -2px;
    position: relative;
    font-weight: lighter;
}

header .menu-controls .font-icon .icon.dripicons-cross {
    font-size: 25px;
}

/* Sliderbar Menu Controller */
.push-sidebar .sliderbar-menu-controller {
    cursor: pointer;
    padding-left: 23px !important;
}

.push-sidebar .sliderbar-menu-controller {
    top: 30px;
    right: 30px;
    position: absolute;
}

.sliderbar-menu-controller:hover .hamburguer-trigger-menu-icon .hamburger-line-1,
.sliderbar-menu-controller:hover .hamburguer-trigger-menu-icon .hamburger-line-2 {
    width: 100%;
}

/* Hamburger Menu Icon */
.hamburguer-trigger-menu-icon {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 2px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    visibility: hidden;
}

.hamburguer-trigger-menu-icon .hamburger-line-1 {
    top: -6px;
    width: 60%;
	background-color: #010101;
}

.hamburguer-trigger-menu-icon .hamburger-line-2 {
    width: 80%;
	background-color: #010101;
}

.hamburguer-trigger-menu-icon .hamburger-line-3,
.hamburguer-trigger-menu-icon:after {
    top: 8px;
	background-color: #010101;
}

.push-sidebar .sidebar-opened .hamburger-line-1, .push-sidebar .sidebar-opened .hamburger-line-2, .push-sidebar .sidebar-opened .hamburger-line-3 {
	background-color: #fff!important;
}

.hamburguer-trigger-menu-icon span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    right: 0;
    -webkit-transition: top .5s ease-in-out, width .2s, -webkit-transform .5s;
    transition: top .5s ease-in-out, width .2s, -webkit-transform .5s;
    -o-transition: transform .5s, top .5s ease-in-out, width .2s;
    transition: transform .5s, top .5s ease-in-out, width .2s;
    transition: transform .5s, top .5s ease-in-out, width .2s, -webkit-transform .5s;
    visibility: visible;
    top: 1px;
}

/* Hamburger Icon Opened States */
.hamburguer-trigger-menu-icon.sidebar-opened,
.hamburguer-trigger-menu-icon.menu-opened {
    background-color: hsla(0,0%,100%,0) !important;
}

.push-sidebar .hamburguer-trigger-menu-icon.sidebar-opened,
.push-sidebar .hamburguer-trigger-menu-icon.menu-opened {
    background-color: #fff !important;
}

.hamburguer-trigger-menu-icon.sidebar-opened .hamburger-line-1,
.hamburguer-trigger-menu-icon.menu-opened .hamburger-line-1,
.hamburguer-trigger-menu-icon.sidebar-opened:before,
.hamburguer-trigger-menu-icon.menu-opened:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburguer-trigger-menu-icon.sidebar-opened .hamburger-line-3,
.hamburguer-trigger-menu-icon.menu-opened .hamburger-line-3,
.hamburguer-trigger-menu-icon.sidebar-opened:after,
.hamburguer-trigger-menu-icon.menu-opened:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburguer-trigger-menu-icon.sidebar-opened .hamburger-line-1,
.hamburguer-trigger-menu-icon.menu-opened .hamburger-line-1,
.hamburguer-trigger-menu-icon.sidebar-opened .hamburger-line-3,
.hamburguer-trigger-menu-icon.menu-opened .hamburger-line-3 {
    width: 100%;
}

.hamburguer-trigger-menu-icon.sidebar-opened .hamburger-line-2,
.hamburguer-trigger-menu-icon.menu-opened .hamburger-line-2 {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.disable_sliding_panel_mobile {
    display: none;
}

/* Additional Push Sidebar Content Styles */
.push-sidebar-content .widget_nav_menu {
    margin-bottom: 40px;
}

.push-sidebar-content .instagram_widget ul.instagram-pics li {
    border: none !important;
    margin: 0 4px 0 0px;
    width: 31.2% !important;
    height: auto;
    float: none;
}

.push-sidebar-content .instagram_widget ul.instagram-pics li a {
    padding: 0 !important;
}

.push-sidebar-content .instagram_widget .instagram-pics {
    margin-left: 0 !important;
}

.push-sidebar select {
    width: 100%;
    padding: 5px;
}

.push-sidebar h4,
.push-sidebar .widget h4 {
    position: relative;
    display: table;
    text-align: left;
    width: 100%;
    margin-bottom: 0px;
}

.push-sidebar-content .widget .title h4 {
    text-transform: unset;
}

.push-sidebar #flickr li {
    width: 67px;
    height: 67px;
}

.push-sidebar-content .widget-newsletter form input.email {
    color: #afb3b8;
    padding: 5px 15px;
}

.push-sidebar .widget-newsletter form .mc-field-group {
    width: 100%;
}

.push-sidebar .widget-newsletter form input.email {
    max-width: 100%;
    text-align: center;
    border: 1px solid #5d5e75;
    background: #0a0b26;
    color: #fff !important;
}

.push-sidebar .widget-newsletter form input.button {
    margin: 10px 0;
    width: 100%;
}

.push-sidebar-content .contact-form input[type="text"],
.push-sidebar-content .contact-form input[type="email"],
.push-sidebar-content .contact-widget-container textarea {
    padding: 10px;
    border: 1px solid #cacaca;
    background: #fff;
}

.push-sidebar-content .des_recent_posts_widget .slick-dots {
    bottom: 0px !important;
}

#push-sidebar-content a#send-comment {
    background: #fff !important;
    color: #2b2929 !important;
}

.push-sidebar .widget-contact-content:not(.centered) .widget-contact-info-content {
    text-align: left;
    position: relative;
    margin-left: 30px !important;
}

.push-sidebar .slick-initialized .slick-slide,
.sidebar .slick-initialized .slick-slide {
    margin: 0 !important;
}

.push-sidebar .instagram_widget .clear a {
    border: 1px solid #fff;
    color: #2b2929 !important;
    background: #fff !important;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
}

.push-sidebar .instagram_widget .clear a:hover {
    opacity: 1;
    background: #fff;
    background-color: #fff !important;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

/* No Transition Class */
body #main header.none-transition,
.none-transition {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    .push-sidebar {
        width: 300px;
    }
    
    .push-sidebar-opened .navbar .nav-container .custom-font-icon .icon.dripicons-cross {
        display: block;
        padding-right: 0;
        position: relative;
        top: 1px;
        right: 3px;
    }
}

/* IE 11 Hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    header .search_trigger,
    header .menu-controls,
    header .laszlo_cart_header,
    header .header_social_icons.with-social-icons {
        display: none;
    }
}










































.top-header {
	position: fixed;
    /* Відступ дорівнює висоті адмін-бару або 0, якщо його немає */
    top: var(--wp-admin--admin-bar--height, 0);
    left: 0;
    right: 0;
    z-index: 9999;
	background: rgba(255,255,255,0.95);
	
	
	
/* 
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  height: var(--header-height);
	  background: rgba(255,255,255,0.95);
	  backdrop-filter: blur(6px);
	  -webkit-backdrop-filter: blur(6px);
	  box-shadow: var(--shadow);
	  z-index: 9999;
	  display: flex;
	  align-items: center;
	  transition: transform 240ms ease, box-shadow 240ms ease;
	width: 100%;
*/
	
}
.top-header .container {
	width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
.top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}







.top-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
}
.top-header .logo img {
    height: 48px;
	width:342px;
    margin:10px 0px;
}



.top-header .tel {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    font-size: 20px;
    height: 40px;
    align-items: center;
}








.top-header .tel li a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}
.top-header .tel li a:hover {
    color: #000;
}
.top-header .tel li a img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}


.top-header .top-menu-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.top-header .header-nav-menu-list {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.top-header .header-nav-menu-list li {
	border-right: 1px solid #999;
    padding-right: 10px;
}
.top-header .header-nav-menu-list li:last-child {
	border-right: 0;
    padding-right: 10px;
}

.top-header .header-nav-menu-list li:nth-last-child(2) {
	border-right: 0;
    padding-right: 10px;
}


.top-header .header-nav-menu-list li a {
    color: #4b4b4b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
}
.top-header .header-nav-menu-list li a:hover {
    color: #000;
	text-decoration: none;
}
.header-nav-menu-list .menu-item a svg {
    display: block;
    fill: #000;
}

.logo-footer-title {
	font-family: 'Inter';
    font-weight: 700;
    border: none;
    color: #ffffff;
    font-size: 32px;
    line-height: 90px;
}
.logo-footer-container span {
  margin: 0;
  text-shadow: 0 -1px 0 #000000;
}
.logo-footer-container svg {
	width: 50px;
	height: 50px;
}

.logo-footer-container {
    margin: 0;
    text-align: center;
}

.sidebar-top-menu-navigation ul li a {
	color:#fff;
}

.sidebar-top-menu-navigation ul {
	padding: 15px;
    font-size: 14px;
}


.sidebar-top-menu-navigation ul li {
	border-bottom: 1px solid #fff;
    padding: 5px 0px 5px 10px;
}

.top-social-img {
	width: 30px;
    height: 30px;
}
.contact_widget_title {
	font-size: 20px;
}
.widget-contact-info {
    margin-top: 15px;
}


.widget-contact-content span {
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    height: 18px;
    line-height: 30px;
    vertical-align: middle;
    width: 40px;
}

.widget-contact-content .contact-email {
    background-image: url(img/icon/email-icon.svg);
	height: 14px;
}
.widget-contact-content .contact-mobile {
    background-image: url(img/icon/cell-phone-icon.svg);
}
.widget-contact-content {
	margin:10px 0px;
}
.widget-contact-content a, .widget-contact-content a:hover, .widget-contact-content a:focus {
	color:#fff;
}
.social-icons ul {
	display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.social-icons ul {
	display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.social-icons ul li {
	margin: 0 15px;
}
.social-icons ul li a {
	color:#fff;
}

.footer-col {
    flex: 0 0 auto;
    width: 25%;
}

.partners-box-row h2 {
	font-family: 'Inter', 'Arial', 'sans-serif';
	font-weight: 700;
	font-size: 60px;
	color: #010101;
	line-height: 1.107em;
	letter-spacing: -0.02em;
	text-transform: none;
	text-align: left;
	padding-bottom: 25px;
}
.sl-button-row {
	padding: 0px 50px 0px 0px;
}

.wp-block-embed iframe {
    max-width: 100%;
    width: 100%;
}

.info {
    align-items: center;
    background: #fff;
    padding: 20px 30px 20px 85px;
    margin: 20px 0px 20px 0px;
    position: relative;
    border: 3px solid #c2dae6;
    border-radius: 50px 0 50px 0;
    max-width: 100%;
    min-height: 100px;
    clear: both;
}
.info::before {
	content: "";
    width: 70px;
    height: calc(100% + 25px);
    height: 70px;
    margin-top: 0px;
    background: #c2dae6 url(img/icon/info.svg) 50% 50% no-repeat;
    border: 15px solid #ffffff;
    background-size: 40px;
    position: absolute;
    left: -20px;
    top: 32px;
    transform: translateY(-50%);
    border-radius: 100px 0 100px 100px;
}

.notat {
    align-items: center;
    background: #fff;
    padding: 20px 30px 20px 85px;
    margin: 20px 0px 20px 0px;
    position: relative;
    border: 3px solid #65c75e;
    border-radius: 50px 0 50px 0;
    max-width: 100%;
    min-height: 100px;
    clear: both;
}
.notat::before {
	content: "";
    width: 70px;
    height: calc(100% + 25px);
    height: 70px;
    margin-top: 0px;
    background: #65c75e url(img/icon/check-circle.svg) 50% 50% no-repeat;
    border: 15px solid #ffffff;
    background-size: 45px;
    position: absolute;
    left: -20px;
    top: 32px;
    transform: translateY(-50%);
    border-radius: 100px 0 100px 100px;
}
 
.svg-box {
	background-color: #000;
}

.svg-box svg {
	height: 75px;
	width:100%;
	fill:#ffffff;
}

.section-page article .param {
	border-radius: 15px;
    border: 3px solid #994bd7;
    background-attachment: fixed;
    background-color: #F9F9F9;
    padding: 0.5em 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    color: #555;
    font-size: 13px;
}

.addr-con svg {
	vertical-align: middle;
}

.param:before {
  content: "–";
  margin-right: 0.3em;
}

.param:after {
  content: "–";
  margin-left: 0.3em;
}
.section-page figure img {
	width: 100%!important;
	height: auto;
	margin: 0px 0px 15px 0px;
}

.error-404 img {
	width: 60%!important;
}



.entry-content .row {
	text-align: center;
    margin: auto!important;
    max-width: 700px;
    margin-bottom: 15px!important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.entry-content img {
	max-width:100%;
}
.logo_retina {
	width: 160px;
	height: 22px;
}



/* Помилка на головній відсутнє
.present-container h2.page_title, .present-container h1.page_title {
    color: #010101;
    font-size: 70px;
    font-family: 'Inter', 'Arial', 'sans-serif';
    font-weight: 700;
    line-height: 1.085;
    text-transform: none;
    margin-top: 20px;
}
.present-container a {
    color: #010101;
}

.fullwidth-container {
    height: auto;
    background: url('img/page-bg.svg') repeat !important;
    background-size: 100% auto;
}

.fullwidth-container .metas-container p {
    margin-right: 25px;
}

.fullwidth-container .metas-container p.metas-sep {
    display: none;
}

.fullwidth-container .metas-container p,
.fullwidth-container .metas-container a,
.fullwidth-container .metas-container p i {
    font-weight: 400;
    font-size: 16px;
}

.fullwidth-container .metas-container a:hover {
    opacity: 1;
}

.fullwidth-container .center .metas-container {
    margin: 30px auto 0px;
    width: auto;
}



.fullwidth-container .pagetitle_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
}

.pagetitle_overlay {
    background-color: rgba(252,252,252,0.85) !important;
}
.present-container {
    padding: 95px 25px 25px 25px;
	position: relative;
}

.present-container .pageTitle {
    text-align: center;
}

.present-container h2.page_title, .present-container h1.page_title {
    color: #010101;
    font-size: 70px;
    font-family: 'Inter', 'Arial', 'sans-serif';
    font-weight: 700;
    line-height: 1.085;
    text-transform: none;
    margin-top: 20px;
}
.laszlo-apply-tcolor, .laszlo-apply-tcolor a {
	font-family: 'Inter', 'Arial', 'sans-serif';
    font-weight: 400;
    font-size: 18px;
    color: #666;
    letter-spacing: 0.5px;
    margin: 40px 0px 0px 0px;
}


*/



.col-header {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
	gap: 20px;
}
.col-header-nav {
	list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.single-post .center h2.page_title {
    word-break: break-word;
}
.col-header-tel li a {
	display: flex;
    align-items: center;
    gap: 5px;
}



@media (max-width: 1670px) {
  	.top-header .logo img {
		height: 30px;
		width:214px;
	}
	.col-header {
		gap: 10px;
	}
	.top-header .tel {
		font-size: 16px;
	}
	.top-header .tel li a img {
		width: 20px;
		height: 20px;
	}
	.top-header .header-nav-menu-list li a {
		font-size: 16px;
	}
}

@media (max-width: 1400px) {
	.top-header .tel li a {
		margin-left: 0px;
	}
	.top-header .tel, .top-header .header-nav-menu-list li a {
		font-size: 16px;
	}
	.logo-footer-title {
	    font-size: 28px;
  	  line-height: 60px;
	}
    .present-container h2.page_title {
        font-size: 36px !important;
        letter-spacing: -0.03em !important;
        text-indent: 0px !important;
        margin-top: 50px !important;
    }
}
@media (max-width: 1200px) {
	.logo-footer-title {
		font-size: 16px;
		line-height: 30px;
	}
	.logo-footer-container svg {
		width: 30px;
		height: 30px;
	}
	.disable_sliding_panel_mobile {
		display: flex;
	}
	.header-nav-menu-list {
		display:none!important;
	}
}

@media (max-width: 900px) {
	.footer-col {
		width: 50%;
	}
	.advantages-box-col-1-flex h2 {
        font-size: 32px;
    }
	.partners-box-row h2 {
		font-size: 32px;
		padding-bottom: 20px;
	}
	.svg-box svg {
		height: 40px;
	}
}





@media (max-width: 767px) {
    .container {
        width: auto!important;
		max-width:100%!important;
    }
	.col-header-tel {
	    display: none !important;
	  }
	.push-sidebar-content {
		padding: 35px 25px 40px 25px;
	}
	.footer-col {
		width: 100%;
	}
	.svg-box svg {
		height: 25px;
	}
	.main-text-box-2 {
		padding: 0px 0px 50px 0px;
	}
}







/* Responsive Styles */
@media only screen and (max-width: 1366px) {




    .single-post .present-container {
        padding: 50px 20px !important;
    }

    .single-post .present-container h2.page_title {
        font-size: 36px !important;
        letter-spacing: -0.03em !important;
        text-indent: 0px !important;
        margin-top: 50px !important;
    }

    .blog_excerpt p,
    .blog_excerpt a {
        font-size: 16px;
        line-height: 1.51em !important;
    }
}


@media only screen and (max-width: 991px) {
	.page_content.right {
		margin: 0;
	}
}

.upb_row_bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0);
	background-attachment: scroll;
	background-position: center;
	min-width: 100%;
	width: 100%;
	height: 500px;
	position: relative;
}
.curve-up-inner-seperator {
	height: 50px;
	position: relative;
	bottom: 49px;
}

.region_menu {
	margin: 0px;
	display: flex;
	flex-direction: row;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}



@media (max-width: 1200px) {
	.upb_row_bg {
		height: 400px;
	}
	.curve-up-inner-seperator {
		bottom: 30px;
	}
	.lang-item {
		border-radius: 0px;
	}
}
@media (max-width: 991px) {
	.curve-up-inner-seperator {
		bottom: 30px;
	}
	.upb_row_bg {
		height: 300px;
	}
}
@media (max-width: 768px) {
    .upb_row_bg {
        height: 250px;
    }
}
@media (max-width: 600px) {
    .upb_row_bg {
        height: 200px;
    }
	.curve-up-inner-seperator {
        bottom: 14px;
		height:15px;
    }
	.section-page article p {
		font-size: 14px;
	}
	.present-container .page_title {
		line-height: 1em;
		font-size: 22px;
		margin-bottom: 10px;
		font-weight: 600;
	}
	#page .container {
		margin:0px;
		padding: 0px;
	}
}
