/*!
Theme Name: psit
Author: kukarika
Author URI: http://www.kukarika.com
Description: kukarika custom theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kukarikaTheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

kukarikaTheme is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */



/*-------------------------------------------------------------*/
/* 					   	  END SCREEN CORRECTIONS FONTS		   */
/*-------------------------------------------------------------*/

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
	height: 100vh;
    scroll-behavior: smooth;
	line-height: 1.15; 
	-webkit-text-size-adjust: 100%;
}

:root {
    scrollbar-color: rgba(0,0,0,.2)!important;
    scrollbar-width: thin!important
}

::-webkit-scrollbar {
    width: 9px
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(0,0,0,.2)
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,.4)
}

::-webkit-scrollbar-thumb:window-inactive {
    border-radius: 5px;
    background: rgba(0,0,0,.2)
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
    font-family: "peridot-pe-variable" !important;
    background-color: #FBFBFB;
	margin: 0;
    font-weight: 500;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; 
	height: 0; 
	overflow: visible; 
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; 
	font-size: 1em; 
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; 
	text-decoration: underline; 
	text-decoration: underline dotted; 
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; 
	font-size: 1em; 
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; 
	font-size: 100%; 
	line-height: 1.15; 
	margin: 0; 
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { 
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { 
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; 
	color: inherit; 
	display: table; 
	max-width: 100%; 
	padding: 0;
	white-space: normal; 
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; 
	padding: 0; 
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; 
	outline-offset: -2px; 
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; 
	font: inherit; 
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

:root {
  --basic_color: #ED1B24;
  --secondary_color: #000000;
}

/*-------------------------------------------------------------*/
/* 					   	  END SCREEN CORRECTIONS FONTS		   */
/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* 					   	  START FONTS						   */
/*-------------------------------------------------------------*/

@import url("https://p.typekit.net/p.css?s=1&k=vnh6gea&ht=tk&f=53151&a=395840775&app=typekit&e=css");

@font-face {
    font-family:"peridot-pe-variable";
    src:url("https://use.typekit.net/af/ef62e5/0000000000000000774ee020/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/ef62e5/0000000000000000774ee020/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/ef62e5/0000000000000000774ee020/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
    font-display:auto;
    font-style:normal;
    font-weight:100 950;
    font-stretch:normal;
}

@font-face {
    font-family:"peridot-pe-variable";
    src:url("https://use.typekit.net/af/ef62e5/0000000000000000774ee020/31/l?primer=3086c349d7cac22739113b758da7899a1075dd77206c7f91575316a59ba43814&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/ef62e5/0000000000000000774ee020/31/d?primer=3086c349d7cac22739113b758da7899a1075dd77206c7f91575316a59ba43814&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/ef62e5/0000000000000000774ee020/31/a?primer=3086c349d7cac22739113b758da7899a1075dd77206c7f91575316a59ba43814&fvd=n4&v=3") format("opentype");
    font-display:auto;
    font-style:normal;
    font-weight:100 950;
    font-stretch:normal;
}

.tk-peridot-pe-variable {
    font-family: "peridot-pe-variable", sans-serif;
    font-weight: 500;
}

.PeridotPEVariable-Regular {
    font-weight: 400;
}

/*-------------------------------------------------------------*/
/* 					   	    END	FONTS	 					   */
/*-------------------------------------------------------------*/


/*-------------------------------------------------------------*/
/* 					   	    START COLORS 					   */
/*-------------------------------------------------------------*/

.whiteFontColor {
	color: #ffffff;
}

.whiteFontColor2 {
	color: #FBFBFB;
}

.whiteBackgroundColor {
	background-color: #ffffff;
}

.blackFontColor {
	color: #27282C !important;
}

.blackBackgroundColor {
	background-color: #27282C;
}

.grayFontColor {
    color: #B2B2B2;
}

/*-------------------------------------------------------------*/
/* 					   	    END	COLORS	 					   */
/*-------------------------------------------------------------*/


/*-------------------------------------------------------------*/
/* 					   START ALL SCREENS        			   */
/*-------------------------------------------------------------*/

* {
    box-sizing: border-box;
}

html {
	height: 100vh;
	scroll-behavior: smooth;
}

#contentArea {
    max-width: 1920px;
    margin: auto;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	line-height: normal;
}

.displaynone {
	display: none !important;
}

.displayblock {
	display: block !important;
}

.displayflex {
	display: flex !important;
}

.mobile .display-desktop {
	display: none;
}

.desktop .display-mobile {
    display: none;
}

/*-------------------------------------------------------------*/
/* 				    START ALL SCREENS - GENERAL CSS		       */
/*-------------------------------------------------------------*/


/* write your style here */
.cli-tab-footer .wt-cli-privacy-accept-btn {
	background-color: #333333;
}

.classic_href {
	color: inherit !important;
	text-decoration: none;
}

/*-------------------------------------------------------------*/
/* 				    END ALL SCREENS - GENERAL CSS		       */
/*-------------------------------------------------------------*/

.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu li a {
	text-decoration: none;
}

.error404 #colophon {
	display: none !important;
}

.error404 .error-404 {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wpcf7-text, .wpcf7-select {
    color: #27282C;
    width: 100%;
    outline: 0 !important;
    box-shadow: none !important;
}

.wpcf7-textarea {
    color: #27282C;
}

.wpcf7-textarea {
    resize: none;
    outline: 0 !important;
    box-shadow: none !important;
	width: 100%;
}

.desktop .wpcf7-text[name="your-name"],
.desktop .wpcf7-text[name="tel-636"] {
    width: 98% !important;
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    right: 0;
}

form.wpcf7-form {
    position: relative;
}

.wpcf7-response-output {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
}

.wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
}

button.kuka_accordion * {
    color: #000;
}

.kuka_panel p {
    font-size: small;
}

a {
    outline: 0 !important;
    box-shadow: none !important;
}

.kuka_accordion:hover {
    background-color: transparent !important;
}

.kuka_category-description {
    line-height: normal;
}

.kuka_accordion {
    font-weight: normal !important;
}

#menu {
    height: 100dvh;
    border: none;
}

.btn-close {
    background: none !important;
    opacity: 1 !important;
    padding: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    z-index: 9;
}

.offcanvas {
    background-color: #27282C;
}

.offcanvas .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas .menu a, .wpml-ls-legacy-list-horizontal a {
    text-decoration: none;
}

.offcanvas .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offcanvas .menu a {
	color: #27282C;
}

.menu_toggler {
    background: transparent !important;
    padding: 0;
	border: none !important;
}

a.remove::before {
    color: #000;
}

#masthead {
    width: 100%;
    z-index: 9999;
    position: fixed;
    inset: 0;
    height: max-content;
    border-top: 1px solid #08161B;
    border-bottom: 1px solid #08161B;
    background-color: #FBFBFB;
}

.basic_btn, .wpcf7-submit {
    background-color: transparent;
    color: #2A2B2F !important;
    border: 1px solid #2A2B2F;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}

.basic_btn:hover, .wpcf7-submit:hover {
    background-color: #2A2B2F;
    color: #27282C !important;
    transition: all .3s ease;
}

.desktop #masthead .menu {
    display: flex;
    align-items: center;
}

.mobile #masthead .menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

#masthead .menu li a {
    color: #27282C;
}

.error404 #masthead, .error404 #colophon {
    display: none;
}

.header img {
    object-fit: cover;
    object-position: center;
}

.fancybox__toolbar__column.is-right .f-button:not(.f-button[title="Close"]) {
    display: none !important;
}

.wpcf7-text, .wpcf7-select {
    width: 100% !important;
    border: 1px solid #27282C;
    border-radius: 0;
    background-color: transparent;
}

.wpcf7 label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
    color: #27282C;
}

.wpcf7-textarea {
    border: 1px solid #27282C;
    border-radius: 0;
    background-color: transparent;
}

.wpcf7-submit {
    background-color: transparent;
    border: 1px solid #27282C;
    color: #FFFBEC !important;
    transition: all .3s ease;
}

.wpcf7-submit:hover {
    background-color: #27282C;
    color: #2A2B2F !important;
    transition: all .3s ease;
}

.wpcf7-response-output {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
}

.mobile .offcanvas .menu a {
    margin-bottom: 15px;
    display: block;
}

.mobile .btn-close {
    width: max-content;
}

.f-button:hover:not([disabled]) {
    background-color: transparent !important;
}

.error404 .basic_btn {
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
    color: #27282C !important;
}

#colophon .menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
}

.fadeInUp {
	opacity: 0;
}

.show-fade-element {
	opacity: 1;
	animation: fadeInUp 1.3s ease forwards;
}

@keyframes fadeInUp {
	0% {
		transform: translate(0px, 40px);
		opacity: 0;
	}
	100% {
		transform: translate(0px, 0);
		opacity: 1;
	}
}

.flex_inline {
    display: flex;
    align-items: center;
}

.wpml-ls, .wpml-ls * {
    padding: 0 !important;
    color: #27282C;
}

.wpml-ls-current-language span {
    text-decoration: underline;
}

.menu-open .menu_toggler {
    display: none;
}

body:not(.menu-open) .btn-close {
    display: none;
}

.btn-close {
    width: max-content;
}

body:not(.menu-open) #masthead {
    transition: all .4s ease;
}

.menu-open #masthead {
    background-color: transparent;
    transition: all .4s ease;
}

.menu-open #masthead .main_logo, .menu-open #masthead .darkFontColor {
    filter: invert(1);
}

.mobile #masthead {
    border: none;
}

#menu.offcanvas .offcanvas-body {
    width: 100%;
    padding: 0;
}

.mobile .menu-main-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile .offcanvas .menu a {
    color: #FBFBFB;
    font-size: 25px;
    line-height: 60px;
    letter-spacing: -0.75px;
    text-decoration: none;
}

.mobile .wpml-ls, .mobile .wpml-ls * {
    color: #FBFBFB;
}

#colophon a {
    display: block;
    width: max-content;
}

.mobile .copyrights {
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 0;
    margin-top: 40px;
}

.mobile .footer_logo_top {
    margin-bottom: 32px;
}

.mobile .socials_col {
    margin-top: 51px;
}

.single-services, .single-services #masthead {
    background-color: #76A0FF;
}

#colophon {
    overflow: hidden;
}

hr {
    background: #27282C;
    opacity: 1;
    margin: 0;
}

.service_icon {
    object-fit: contain;
}

.fancybox__container {
    z-index: 99999 !important;
}

.fancybox__content img {
    height: 80dvh;
}

.sticky_img {
    position: sticky;
}

#accordion * {
    padding: 0;
    border: none;
    outline: 0;
    box-shadow: none;
    background-color: transparent;
    color: inherit;
    border-radius: 0;
}

.accordion-item, .services_row {
    border-top: 1px solid #27282C !important;
}

.accordion-item:last-child, .services_wrapper_page a:last-child .services_row {
    border-bottom: 1px solid #27282C !important;
}

.desktop .accordion-button p {
    max-width: 50%;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='33' viewBox='0 0 36 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='16' x2='36' y2='16' stroke='%2327282C' stroke-width='2'/%3E%3Cline x1='18' y1='33' x2='18' y2='0' stroke='%2327282C' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='2' viewBox='0 0 36 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='1' x2='36' y2='1' stroke='%2327282C' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.error404 {
    height: 100dvh;
}

.error_wrapper_text {
    display: flex;
    align-items: center;
}

.error_wrapper_text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mobile .error_wrapper_text {
    justify-content: center;
}

.mobile .error_wrapper_text, .mobile .error_wrapper_text * {
    justify-content: center !important;
    text-align: center !important;
    align-items: center !important;
    height: max-content !important;
}

.mobile .error_wrapper_text img {
    margin-bottom: 25px;
    max-width: 200px;
}

.swiper-slide {
    border-right: 1px solid #27282C;
}

.service_desc {
    width: 85%;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    display: none;
}

.swiper-button-next, .swiper-button-prev {
    color: #27282C !important;
}

.services_list_items, .services_list_items * {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .5s ease, opacity .5s ease, visibility .5s ease;
}

.services_row .services_icon {
    transition: transform .5s ease;
}

.services_row:hover .services_list_items, .services_row:hover .services_list_items * {
    max-height: 300px; /* adjust depending on your content */
    opacity: 1;
    visibility: visible;
}

.services_row .mt33 {
    transition: all .5s ease;
}

.services_row:hover .mt33 {
    margin: 0;
    transition: all .5s ease;
}

.nav-tabs, .nav-tabs *, .tab-pane, .tab-pane * {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.post_row {
    border-bottom: 1px solid #27282C !important;
}

.post_row h6 {
    width: 80%;
}

.mw77 {
    width: 75%;
}

.post_row:last-child {
    border-bottom: none !important;
}

.nav-item.active {
    border-bottom: 3px solid #000 !important;
    transition: all .3s ease;
}

.nav-tabs .nav-link {
    width: 100%;
    text-align: left;
}

.custom-audio-player {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.audio-play {
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.audio-progress {
    position: relative;
    flex: 1;
    height: 1px;
    background: #27282C !important;
    cursor: pointer;
}

.audio-progress::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

.audio-progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #2a2a32 !important;
}

.audio-progress-handle {
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    background: #2a2a32 !important;
    transform: translate(-50%,-135%);
}

.gray_btn {
    color: #8C8C8C !important;
    text-decoration: underline;
    width: max-content;
}

.text-underline {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #212529 !important;
}

.wpcf7-text {
    border: none;
    border-bottom: 1px solid #27282C;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wpcf7-submit {
    background: transparent !important;
    color: #27282C !important;
    border: none;
    height: auto;
    width: max-content !important;
    padding: 0 !important;
    text-transform: capitalize;
}

#masthead .menu li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

#masthead .menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background: #27282C;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#masthead .menu li a:hover::after {
    opacity: 1;
}

.mobile .home_img {
    height: 360px;
    object-fit: cover;
}

.mobile .menu_togglers * {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}

.mobile .service_desc {
    width: 100%;
}

.mobile .home .swiper-wrapper {
    flex-direction: column;
}

.mobile .services_icon {
    max-width: 80px;
}

.mobile .home .swiper-slide {
    border-right: none;
    border-bottom: 1px solid #27282C;
    padding-bottom: 25.4px;
    margin-bottom: 25px;
}

.mobile .podcast_wrapper .mb40 {
    margin-bottom: 15.5px;
}

.mobile .services_row .mt33 {
    margin-top: 0;
    margin-bottom: 40px;
}

.mobile img.sticky_img {
    margin-bottom: 32.47px;
}

.mobile .single-services h1.mb25 {
    max-width: 80%;
}

.mobile .menu-open #masthead {
    background-color: #27282C;
}

.mobile .philosophy img.sticky_img {
    display: none;
}

.mobile .philosophy .main_content {
    margin-top: 40px;
}

.mobile #accordion .accordion-button p {
    max-width: 80%;
}

.mobile .accordion-button::after {
    margin-top: -34px;
}

.mobile .wpcf7 form .wpcf7-response-output {
    bottom: -50px !important;
}

.mobile .contact a.gray_btn {
    margin-top: 70px;
}

.mobile .notebook .post_icon {
    margin-bottom: 40px !important;
}

.mobile .mw77 {
    width: 100%;
}

.mobile .post_row h6 {
    width: 100%;
}

.mobile .nav-item.active {
    border-width: 2px !important;
    border-color: #000 !important;
}

.mobile .notebook hr {
    display: none;
}

.mobile .nav-tabs .nav-link {
    padding-top: 10px !important;
}

.mobile .nav-tabs .nav-item:first-child .nav-link {
    padding-top: 0 !important;
}

.mobile .nav-item {
    border-bottom: 2px solid transparent !important;
}

.mobile .nav-tabs .nav-link {
    border-bottom: 1px solid #000 !important;
}

.desktop .wpml-ls-legacy-list-horizontal a span, .desktop #masthead .menu li a {
    line-height: normal !important;
}

.desktop .wpml-ls-legacy-list-horizontal>ul {
    display: flex;
}

.mobile .philosophy .main_content h6,
.mobile .single .main_content h6,
.mobile .single-services .main_content h6 {
    word-break: break-word;
}

.desktop #masthead {
    transition: none !important;
}

.swiper.servicesSlider .swiper-slide .services_icon {
    transition: all .3s ease;
}

.swiper.servicesSlider .swiper-slide:hover .services_icon {
    transform: translateY(-10px);
    transition: all .3s ease;
}

/*-------------------------------------------------------------*/
/* 					   	  START MEDIA						   */
/*-------------------------------------------------------------*/

@media (min-width: 320px) {
    h1, h1 p {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0;
    }

    .error-404 h1 {
        font-size: 100px;
        line-height: normal;
        letter-spacing: 0;
    }

    h2, h2 p {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 0;
    }

    h3, h3 p {
        font-size: 25px;
        line-height: normal;
        letter-spacing: -0.75px;
    }

    h5, h5 p, .gray_btn {
        font-size: 18px;
        line-height: normal;
        letter-spacing: 0;
    }

    h6, h6 p, #masthead .menu li a, .wpml-ls-legacy-list-horizontal a span, .audio-current, .audio-duration, .wpcf7 label, .wpcf7-text, .wpcf7-submit, .wpcf7-response-output {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0;
    }

    p {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .error_wrapper_text a {
        font-size: 12px;
        line-height: 19px;
        letter-spacing: 0;
    }

    .menu_toggler svg {
        width: 37px;
    }

    .basic_btn, .wpcf7-submit {
        padding-left: 35px;
        padding-right: 35px;
        height: 35px;
    }

    .main_logo {
        width: 59px;
        height: 52px;
    }

    .croppedContent {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wpcf7-text, .wpcf7-select {
        height: 45px;
        margin-bottom: 29px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .wpcf7-textarea {
        height: 200px;
        padding: 15px;
    }

    .wpcf7-not-valid-tip {
        top: 36px;
        font-size: 10px;
    }

    .wpcf7-submit {
        width: 100%;
        margin-top: 0;
    }

    .f-button svg {
        width: 20px !important;
        height: 20px !important;
    }

    button.f-button[title="Close"] {
        top: 20px !important;
        right: 20px !important;
    }

    .fancybox__infobar {
        margin-top: 20px !important;
        margin-left: 20px !important;
    }

    .menu_additions .wpml-ls-native, .wpml-ls-item-en a::after {
        font-size: 15px;
        line-height: normal;
    }

    #masthead {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 29px;
        padding-bottom: 11px;
    }
    
    .home #main {
        padding-top: 276px;
        padding-bottom: 170px;
    }

    #colophon {
        padding-top: 55px;
        padding-bottom: 10px;
    }

    #masthead .menu li a {
        margin-right: 95px;
    }
    
    .wpml-ls-first-item {
        margin-right: 15px !important;
    }

    .footer_logo_top {
        width: 100%;
        height: auto;
    }

    .footer_logo {
        width: 100%;
        height: auto;
    }

    .pt85 {
        padding-top: 35px !important;
    }

    .mb15 {
        margin-bottom: 15px;
    }

    .mb50 {
        margin-bottom: 50px;
    }

    .mt33 {
        margin-top: 25px;
    }

    .mt60 {
        margin-top: 40px;
    }

    .mt80 {
        margin-top: 80px;
    }

    .mt19 {
        margin-top: 19px;
    }

    .mb40 {
        margin-bottom: 40px;
    }

    .mb100 {
        margin-bottom: 80px;
    }

    .mb25 {
        margin-bottom: 32px;
    }

    .bottom_footer_row {
        padding-top: 90px;
    }

    .home_img {
        margin-top: 35px;
        margin-bottom: 76px;
    }

    .single-services #main, .single #main {
        padding-top: 344px;
        padding-bottom: 150px;
    }

    .philosophy #main {
        padding-top: 113px;
        padding-bottom: 220px;
    }

    .services #main {
        padding-top: 113px;
        padding-bottom: 135px;
    }

    .service_icon {
        width: auto;
        max-width: 80px;
        height: 58.53px;
    }

    .single-services .main_content, .philosophy .main_content, .single .main_content {
        margin-top: 68px;
    }

    .sticky_img {
        top: 159px;
    }

    .legal-notice #main {
        padding-bottom: 170px;
    }

    .contact #main, .faq #main, .notebook #main, .legal-notice #main {
        padding-top: 344px;
    }

    .faq #main {
        padding-bottom: 233px;
    }

    .contact #main {
        padding-bottom: 170px;
    }

    .notebook #main {
        padding-bottom: 104px;
    }

    .accordion-item {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .accordion-body {
        padding-top: 40px !important;
    }

    .accordion-button::after {
        width: 26px;
        height: 23px;
    }

    .accordion-button:not(.collapsed)::after {
        width: 26px;
        height: 2px;
    }

    .services_wrapper {
        padding-top: 80px;
    }

    .services_icon {
        width: auto;
        height: 61.6px;
        margin-top: 100px;
        margin-bottom: 24px;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 34px !important;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 17px !important;
        height: 34px !important;
    }
    
    .services_row {
        padding-top: 20px;
        padding-bottom: 20px;
        height: auto;
    }

    .services .services_icon {
        max-width: 80px;
        width: auto;
        height: 61.6px;
    }

    .services_row:hover .services_icon {
        transform: none;
    }

    .post_icon {
        margin-top: 34px !important;
        width: auto;
        height: 62px;
    }

    .post_row {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .nav-tabs .nav-link {
        padding-bottom: 10px !important;
    }

    .audio-play {
        font-size: 24px;
        width: 24px;
        height: 23px;
    }

    .audio-progress-handle {
        width: 7px;
        height: 7px;
    }

    .custom-audio-player {
        gap: 20px;
    }

    .audio-progress {
        margin-bottom: 6px !important;
    }

    .podcast_wrapper img {
        margin-bottom: 15px;
        width: auto;
        height: 56.22px;
    }

    .podcast_wrapper {
        padding-bottom: 27.28px;
    }

    .audio-progress::before {
        top: -12px;
        bottom: -12px;
    }

    .contact_img {
        height: auto;
    }

    .wpml-ls-current-language span {
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }

    #masthead .menu li a::after {
        bottom: 0;
        height: 2px;
    }

    .text-underline {
        text-underline-offset: 3px;
        text-decoration-thickness: 1px;
    }
}

@media (min-width: 992px) {
    h1, h1 p {
        font-size: 3.333vw;
        line-height: 3.646vw;
        letter-spacing: 0;
    }

    .error-404 h1 {
        font-size: 10.417vw;
        line-height: normal;
        letter-spacing: 0;
    }

    h2, h2 p {
        font-size: 3.333vw;
        line-height: 3.646vw;
        letter-spacing: 0;
    }

    h3, h3 p {
        font-size: 2.5vw;
        line-height: normal;
        letter-spacing: -0.075vw;
    }

    h5, h5 p, .gray_btn {
        font-size: 1.458vw;
        line-height: normal;
        letter-spacing: 0;
    }

    h6, h6 p, #masthead .menu li a, .wpml-ls-legacy-list-horizontal a span, .audio-current, .audio-duration, .wpcf7 label, .wpcf7-text, .wpcf7-submit, .wpcf7-response-output {
        font-size: 1.25vw;
        line-height: 1.57vw;
        letter-spacing: 0;
    }

    p {
        font-size: 1.25vw;
        line-height: 1.57vw;
        letter-spacing: 0;
    }

    .error_wrapper_text a {
        font-size: 0.781vw;
        line-height: 1.094vw;
        letter-spacing: 0;
    }

    .menu_toggler svg {
        width: 1.927vw;
    }

    .basic_btn, .wpcf7-submit {
        padding-left: 2.344vw;
        padding-right: 2.344vw;
        height: 2.344vw;
    }

    .main_logo {
        width: 4.271vw;
        height: 3.75vw;
    }

    .croppedContent {
        padding-left: 2.083vw;
        padding-right: 2.083vw;
    }

    .wpcf7-text, .wpcf7-select {
        height: 3.021vw;
        margin-bottom: 1.51vw;
        padding-left: 0.781vw;
        padding-right: 0.781vw;
    }

    .wpcf7-textarea {
        height: 14.167vw;
        padding: 0.781vw;
    }

    .wpcf7-not-valid-tip {
        top: 2.1vw;
        font-size: 10px;
    }

    .wpcf7-submit {
        width: max-content;
        margin-top: 1.302vw;
    }

    .f-button svg {
        width: 1.042vw !important;
        height: 1.042vw !important;
    }

    button.f-button[title="Close"] {
        top: 1.042vw !important;
        right: 1.042vw !important;
    }

    .fancybox__infobar {
        margin-top: 1.042vw !important;
        margin-left: 1.042vw !important;
    }

    .menu_additions .wpml-ls-native, .wpml-ls-item-en a::after {
        font-size: 0.781vw;
        line-height: normal;
    }

    #masthead {
        padding-left: 2.083vw;
        padding-right: 2.083vw;
        padding-top: 1.198vw;
        padding-bottom: 1.146vw;
    }

    .home #main {
        padding-top: 20.781vw;
        padding-bottom: 14.063vw;
    }

    #colophon {
        padding-top: 2.396vw;
        padding-bottom: 1.042vw;
    }

    #masthead .menu li a {
        margin-right: 4.948vw;
    }
    
    .wpml-ls-first-item {
        margin-right: 0.781vw !important;
    }

    .footer_logo_top {
        width: 21.302vw;
        height: 3.543vw;
    }

    .footer_logo {
        width: 39.323vw;
        height: 14.01vw;
    }

    .pt85 {
        padding-top: 4.427vw !important;
    }

    .mb15 {
        margin-bottom: 0.781vw;
    }

    .mb50 {
        margin-bottom: 2.604vw;
    }

    .mt33 {
        margin-top: 1.719vw;
    }

    .mt60 {
        margin-top: 3.125vw;
    }

    .mt80 {
        margin-top: 4.167vw;
    }

    .mt19 {
        margin-top: 0.99vw;
    }

    .mb40 {
        margin-bottom: 2.083vw;
    }

    .mb100 {
        margin-bottom: 5.208vw;
    }

    .mb25 {
        margin-bottom: 1.302vw;
    }

    .bottom_footer_row {
        padding-top: 9.792vw;
    }

    .home_img {
        margin-top: 5.208vw;
        margin-bottom: 5.208vw;
    }
    
    .single-services #main, .single #main {
        padding-top: 22.448vw;
        padding-bottom: 7.813vw;
    }

    .philosophy #main {
        padding-top: 9.271vw;
        padding-bottom: 14.375vw;
    }

    .services #main {
        padding-top: 9.271vw;
        padding-bottom: 17.448vw;
    }

    .service_icon {
        width: auto;
        max-width: 26.042vw;
        height: 16.615vw;
    }

    .single-services .main_content, .philosophy .main_content, .single .main_content {
        margin-top: 3.542vw;
    }

    .sticky_img {
        top: 8.281vw;
    }

    .legal-notice #main {
        padding-bottom: 8.854vw;
    }

    .contact #main, .faq #main, .notebook #main, .legal-notice #main {
        padding-top: 22.031vw;
    }

    .faq #main {
        padding-bottom: 17.344vw;
    }

    .contact #main {
        padding-bottom: 8.854vw;
    }

    .notebook #main {
        padding-bottom: 21.042vw;
    }

    .accordion-item {
        padding-top: 1.615vw !important;
        padding-bottom: 1.198vw !important;
    }

    .accordion-body {
        padding-top: 2.083vw !important;
    }

    .accordion-button::after {
        width: 1.875vw;
        height: 1.719vw;
    }

    .accordion-button:not(.collapsed)::after {
        width: 1.875vw;
        height: 0.104vw;
    }

    .services_wrapper {
        padding-top: 12.604vw;
    }

    .services_icon {
        width: auto;
        height: 4.688vw;
        margin-top: 10.938vw;
        margin-bottom: 3.177vw;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 2.292vw !important;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 1.406vw !important;
        height: 2.292vw !important;
    }

    .services_row {
        padding-top: 1.406vw;
        padding-bottom: 1.406vw;
        height: 10.469vw;
    }

    .services .services_icon {
        max-width: 5.885vw;
        width: auto;
        height: 4.688vw;
    }

    .services_row:hover .services_icon {
        transform: translateY(calc((10.469vw - 100%) / 2 - 1.406vw));
    }

    .post_icon {
        margin-top: 3.854vw !important;
        width: auto;
        height: 4.792vw;
    }

    .post_row {
        padding-top: 3.854vw !important;
        padding-bottom: 4.427vw !important;
    }

    .nav-tabs .nav-link {
        padding-bottom: 1.719vw !important;
    }

    .audio-play {
        font-size: 1.563vw;
        width: 1.563vw;
        height: 1.563vw;
    }

    .audio-progress-handle {
        width: 0.677vw;
        height: 0.677vw;
    }

    .custom-audio-player {
        gap: 3.646vw;
    }

    .audio-progress {
        margin-bottom: 0.313vw !important;
    }

    .podcast_wrapper img {
        margin-bottom: 2.292vw;
        width: auto;
        height: 4.792vw;
    }

    .podcast_wrapper {
        padding-bottom: 2.292vw;
    }

    .audio-progress::before {
        top: -0.625vw;
        bottom: -0.625vw;
    }

    .contact_img {
        height: 22.448vw;
    }

    .wpml-ls-current-language span {
        text-underline-offset: 0.208vw;
        text-decoration-thickness: 0.104vw;
    }

    #masthead .menu li a::after {
        bottom: 0;
        height: 0.104vw;
    }

    .gray_btn {
        text-underline-offset: 0.156vw;
        text-decoration-thickness: 0.052vw;
    }

    .text-underline {
        text-underline-offset: 0.156vw;
        text-decoration-thickness: 0.104vw;
    }

    .swiper.servicesSlider .services_icon {
        max-width: 7.5vw;
    }

    .home .servicesSlider .services_icon {
        padding-top: 1.042vw;
        margin-top: 13.021vw;
    }
}

@media (min-width: 1920px) {
    h1, h1 p {
        font-size: 64px;
        line-height: 70px;
        letter-spacing: 0;
    }

    .error-404 h1 {
        font-size: 200px;
        line-height: normal;
        letter-spacing: 0;
    }

    h2, h2 p {
        font-size: 64px;
        line-height: 70px;
        letter-spacing: 0;
    }

    h3, h3 p {
        font-size: 48px;
        line-height: normal;
        letter-spacing: -1.44px;
    }

    h5, h5 p, .gray_btn {
        font-size: 28px;
        line-height: normal;
        letter-spacing: 0;
    }

    h6, h6 p, #masthead .menu li a, .wpml-ls-legacy-list-horizontal a span, .audio-current, .audio-duration, .wpcf7 label, .wpcf7-text, .wpcf7-submit, .wpcf7-response-output {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0;
    }

    p {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0;
    }

    .error_wrapper_text a {
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 0;
    }

    .menu_toggler svg {
        width: 37px;
    }

    .basic_btn, .wpcf7-submit {
        padding-left: 45px;
        padding-right: 45px;
        height: 45px;
    }

    .main_logo {
        width: 82px;
        height: 72px;
    }

    .croppedContent {
        padding-left: 40px;
        padding-right: 40px;
    }

    .wpcf7-text, .wpcf7-select {
        height: 58px;
        margin-bottom: 29px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .wpcf7-textarea {
        height: 272px;
        padding: 15px;
    }

    .wpcf7-not-valid-tip {
        top: 40px;
        font-size: 10px;
    }

    .wpcf7-submit {
        width: max-content;
        margin-top: 25px;
    }

    .f-button svg {
        width: 20px !important;
        height: 20px !important;
    }

    button.f-button[title="Close"] {
        top: 20px !important;
        right: 20px !important;
    }

    .fancybox__infobar {
        margin-top: 20px !important;
        margin-left: 20px !important;
    }

    .menu_additions .wpml-ls-native, .wpml-ls-item-en a::after {
        font-size: 15px;
        line-height: normal;
    }

    #masthead {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 23px;
        padding-bottom: 22px;
    }

    .home #main {
        padding-top: 399px;
        padding-bottom: 270px;
    }

    #colophon {
        padding-top: 46px;
        padding-bottom: 20px;
    }

    #masthead .menu li a {
        margin-right: 95px;
    }

    .wpml-ls-first-item {
        margin-right: 15px !important;
    }

    .footer_logo_top {
        width: 409px;
        height: 68.02px;
    }

    .footer_logo {
        width: 755px;
        height: 268.99px;
    }

    .pt85 {
        padding-top: 85px !important;
    }

    .mb15 {
        margin-bottom: 15px;
    }

    .mb50 {
        margin-bottom: 50px;
    }

    .mt33 {
        margin-top: 33px;
    }

    .mt60 {
        margin-top: 60px;
    }

    .mt80 {
        margin-top: 80px;
    }

    .mt19 {
        margin-top: 19px;
    }

    .mb40 {
        margin-bottom: 40px;
    }

    .mb100 {
        margin-bottom: 100px;
    }

    .mb25 {
        margin-bottom: 25px;
    }

    .bottom_footer_row {
        padding-top: 188px;
    }
    
    .home_img {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .single-services #main, .single #main {
        padding-top: 431px;
        padding-bottom: 150px;
    }

    .philosophy #main {
        padding-top: 178px;
        padding-bottom: 276px;
    }

    .services #main {
        padding-top: 178px;
        padding-bottom: 335px;
    }

    .service_icon {
        width: auto;
        max-width: 500px;
        height: 319px;
    }

    .single-services .main_content, .philosophy .main_content, .single .main_content {
        margin-top: 68px;
    }

    .sticky_img {
        top: 159px;
    }

    .legal-notice #main {
        padding-bottom: 170px;
    }

    .contact #main, .faq #main, .notebook #main, .legal-notice #main {
        padding-top: 423px;
    }

    .faq #main {
        padding-bottom: 333px;
    }

    .contact #main {
        padding-bottom: 170px;
    }

    .notebook #main {
        padding-bottom: 404px;
    }

    .accordion-item {
        padding-top: 31px !important;
        padding-bottom: 23px !important;
    }

    .accordion-body {
        padding-top: 40px !important;
    }

    .accordion-button::after {
        width: 36px;
        height: 33px;
    }

    .accordion-button:not(.collapsed)::after {
        width: 36px;
        height: 2px;
    }

    .services_wrapper {
        padding-top: 242px;
    }

    .services_icon {
        width: auto;
        height: 90px;
        margin-top: 210px;
        margin-bottom: 61px;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 44px !important;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 27px !important;
        height: 44px !important;
    }

    .services_row {
        padding-top: 27px;
        padding-bottom: 27px;
        height: 201px;
    }

    .services .services_icon {
        max-width: 113px;
        width: auto;
        height: 90px;
    }

    .services_row:hover .services_icon {
        transform: translateY(calc((201px - 100%) / 2 - 27px));
    }

    .post_icon {
        margin-top: 74px !important;
        width: auto;
        height: 92px;
    }

    .post_row {
        padding-top: 74px !important;
        padding-bottom: 85px !important;
    }

    .nav-tabs .nav-link {
        padding-bottom: 33px !important;
    }

    .audio-play {
        font-size: 30px;
        width: 30px;
        height: 30px;
    }

    .audio-progress-handle {
        width: 13px;
        height: 13px;
    }

    .custom-audio-player {
        gap: 70px;
    }

    .audio-progress {
        margin-bottom: 6px !important;
    }

    .podcast_wrapper img {
        margin-bottom: 44px;
        width: auto;
        height: 92px;
    }

    .podcast_wrapper {
        padding-bottom: 44px;
    }

    .audio-progress::before {
        top: -12px;
        bottom: -12px;
    }

    .contact_img {
        height: 431px;
    }

    .wpml-ls-current-language span {
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }

    #masthead .menu li a::after {
        bottom: 0;
        height: 2px;
    }

    .gray_btn {
        text-underline-offset: 3px;
        text-decoration-thickness: 1px;
    }

    .text-underline {
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
    }

    .swiper.servicesSlider .services_icon {
        max-width: 144px;
    }

    .home .servicesSlider .services_icon {
        padding-top: 20px;
        margin-top: 250px;
    }
}

@media (min-width: 1921px) {
    h1, h1 p {
        font-size: 3.333vw;
        line-height: 3.646vw;
        letter-spacing: 0;
    }

    .error-404 h1 {
        font-size: 10.417vw;
        line-height: normal;
        letter-spacing: 0;
    }

    h2, h2 p {
        font-size: 3.333vw;
        line-height: 3.646vw;
        letter-spacing: 0;
    }

    h3, h3 p {
        font-size: 2.5vw;
        line-height: normal;
        letter-spacing: -0.075vw;
    }

    h5, h5 p, .gray_btn {
        font-size: 1.458vw;
        line-height: normal;
        letter-spacing: 0;
    }

    h6, h6 p, #masthead .menu li a, .wpml-ls-legacy-list-horizontal a span, .audio-current, .audio-duration, .wpcf7 label, .wpcf7-text, .wpcf7-submit, .wpcf7-response-output {
        font-size: 1.25vw;
        line-height: 1.57vw;
        letter-spacing: 0;
    }

    p {
        font-size: 1.25vw;
        line-height: 1.57vw;
        letter-spacing: 0;
    }

    .error_wrapper_text a {
        font-size: 0.781vw;
        line-height: 1.094vw;
        letter-spacing: 0;
    }

    .menu_toggler svg {
        width: 1.927vw;
    }

    .basic_btn, .wpcf7-submit {
        padding-left: 2.344vw;
        padding-right: 2.344vw;
        height: 2.344vw;
    }

    .main_logo {
        width: 4.271vw;
        height: 3.75vw;
    }

    .croppedContent {
        padding-left: 2.083vw;
        padding-right: 2.083vw;
    }

    .wpcf7-text, .wpcf7-select {
        height: 3.021vw;
        margin-bottom: 1.51vw;
        padding-left: 0.781vw;
        padding-right: 0.781vw;
    }

    .wpcf7-textarea {
        height: 14.167vw;
        padding: 0.781vw;
    }

    .wpcf7-not-valid-tip {
        top: 2.1vw;
        font-size: 10px;
    }

    .wpcf7-submit {
        width: max-content;
        margin-top: 1.302vw;
    }

    .f-button svg {
        width: 1.042vw !important;
        height: 1.042vw !important;
    }

    button.f-button[title="Close"] {
        top: 1.042vw !important;
        right: 1.042vw !important;
    }

    .fancybox__infobar {
        margin-top: 1.042vw !important;
        margin-left: 1.042vw !important;
    }

    .menu_additions .wpml-ls-native, .wpml-ls-item-en a::after {
        font-size: 0.781vw;
        line-height: normal;
    }

    #masthead {
        padding-left: 2.083vw;
        padding-right: 2.083vw;
        padding-top: 1.198vw;
        padding-bottom: 1.146vw;
    }

    .home #main {
        padding-top: 20.781vw;
        padding-bottom: 14.063vw;
    }

    #colophon {
        padding-top: 2.396vw;
        padding-bottom: 1.042vw;
    }

    #masthead .menu li a {
        margin-right: 4.948vw;
    }

    .wpml-ls-first-item {
        margin-right: 0.781vw !important;
    }

    .footer_logo_top {
        width: 21.302vw;
        height: 3.543vw;
    }

    .footer_logo {
        width: 39.323vw;
        height: 14.01vw;
    }

    .pt85 {
        padding-top: 4.427vw !important;
    }

    .mb15 {
        margin-bottom: 0.781vw;
    }

    .mb50 {
        margin-bottom: 2.604vw;
    }

    .mt33 {
        margin-top: 1.719vw;
    }

    .mt60 {
        margin-top: 3.125vw;
    }

    .mt80 {
        margin-top: 4.167vw;
    }

    .mt19 {
        margin-top: 0.99vw;
    }

    .mb40 {
        margin-bottom: 2.083vw;
    }

    .mb100 {
        margin-bottom: 5.208vw;
    }

    .mb25 {
        margin-bottom: 1.302vw;
    }

    .bottom_footer_row {
        padding-top: 9.792vw;
    }

    .home_img {
        margin-top: 5.208vw;
        margin-bottom: 5.208vw;
    }
  
    .single-services #main, .single #main {
        padding-top: 22.448vw;
        padding-bottom: 7.813vw;
    }
   
    .philosophy #main {
        padding-top: 9.271vw;
        padding-bottom: 14.375vw;
    }
    
    .services #main {
        padding-top: 9.271vw;
        padding-bottom: 17.448vw;
    }

    .service_icon {
        width: auto;
        max-width: 26.042vw;
        height: 16.615vw;
    }

    .single-services .main_content, .philosophy .main_content, .single .main_content {
        margin-top: 3.542vw;
    }

    .sticky_img {
        top: 8.281vw;
    }

    .legal-notice #main {
        padding-bottom: 8.854vw;
    }

    .contact #main, .faq #main, .notebook #main, .legal-notice #main {
        padding-top: 22.031vw;
    }

    .faq #main {
        padding-bottom: 17.344vw;
    }

    .contact #main {
        padding-bottom: 8.854vw;
    }

    .notebook #main {
        padding-bottom: 21.042vw;
    }

    .accordion-item {
        padding-top: 1.615vw !important;
        padding-bottom: 1.198vw !important;
    }

    .accordion-body {
        padding-top: 2.083vw !important;
    }

    .accordion-button::after {
        width: 1.875vw;
        height: 1.719vw;
    }

    .accordion-button:not(.collapsed)::after {
        width: 1.875vw;
        height: 0.104vw;
    }

    .services_wrapper {
        padding-top: 12.604vw;
    }

    .services_icon {
        width: auto;
        height: 4.688vw;
        margin-top: 10.938vw;
        margin-bottom: 3.177vw;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 2.292vw !important;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 1.406vw !important;
        height: 2.292vw !important;
    }

    .services_row {
        padding-top: 1.406vw;
        padding-bottom: 1.406vw;
        height: 10.469vw;
    }

    .services .services_icon {
        max-width: 5.885vw;
        width: auto;
        height: 4.688vw;
    }

    .services_row:hover .services_icon {
        transform: translateY(calc((10.469vw - 100%) / 2 - 1.406vw));
    }
    
    .post_icon {
        margin-top: 3.854vw !important;
        width: auto;
        height: 4.792vw;
    }

    .post_row {
        padding-top: 3.854vw !important;
        padding-bottom: 4.427vw !important;
    }

    .nav-tabs .nav-link {
        padding-bottom: 1.719vw !important;
    }

    .audio-play {
        font-size: 1.563vw;
        width: 1.563vw;
        height: 1.563vw;
    }

    .audio-progress-handle {
        width: 0.677vw;
        height: 0.677vw;
    }

    .custom-audio-player {
        gap: 3.646vw;
    }

    .audio-progress {
        margin-bottom: 0.313vw !important;
    }

    .podcast_wrapper img {
        margin-bottom: 2.292vw;
        width: auto;
        height: 4.792vw;
    }

    .podcast_wrapper {
        padding-bottom: 2.292vw;
    }

    .audio-progress::before {
        top: -0.625vw;
        bottom: -0.625vw;
    }

    .contact_img {
        height: 22.448vw;
    }

    .wpml-ls-current-language span {
        text-underline-offset: 0.208vw;
        text-decoration-thickness: 0.104vw;
    }

    #masthead .menu li a::after {
        bottom: 0;
        height: 0.104vw;
    }

    .gray_btn {
        text-underline-offset: 0.156vw;
        text-decoration-thickness: 0.052vw;
    }

    .text-underline {
        text-underline-offset: 0.156vw;
        text-decoration-thickness: 0.104vw;
    }

    .swiper.servicesSlider .services_icon {
        max-width: 7.5vw;
    }

    .home .servicesSlider .services_icon {
        padding-top: 1.042vw;
        margin-top: 13.021vw;
    }
}