/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/inter-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* inter-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/inter-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* inter-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/inter-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
:root {
    --bg-color: #fff;
    --text-color: #5C5C5C;
    --grey: #9D9D9D;
    --font-primary: 'Inter','sans-serif';
    --border-color: rgba(157, 157, 157, 0.4);
    --active-border-color: #7949FF;
}
/***************************************************************
                         BODY
***************************************************************/
body {
    font-family: var(--font-primary) !important;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100svh;
    width: auto;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.2; 
}

.border-radius {
    border-radius: 10px;
}
.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

/***************************************************************
                         HOME
***************************************************************/
.bg-test {
	background-color: lightblue;
	color:  #fff;
}
.bg-cover {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    transform: none;
    z-index: -1;
}
.bg-cover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}
.bg-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-part-box {
    padding: 20px 17px;
    gap: 20px;
    min-height: calc(100svh - 80px);
    box-shadow: 0px 4px 22.2px 0px #00000040;
}
.single-service {
	transition: all 0.3s ease-in-out;
}
.lang-switcher {
    /* gap: 10px; */
    font-size: 14px;
    color: var(--grey);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lang-item a {
    text-decoration: none;
	text-transform: uppercase;
    padding: 5px 2px;
    margin: 0 3px;
    color: var(--text-color);
}
.lang-item.current-lang a {
    color: #000;
    font-weight: 700;
}
.main-part-text h2,
.main-part-text h1 {
    color: #000;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.main-part-text h2 {
	font-size: 21px;
}
.main-part-text p,
.main-part-text a,
.main-part-text li {
    font-weight: 400;
    margin-bottom: 20px;
	color: var(--text-color);
}
.main-part-text li {
	margin-bottom: 5px;
}
.main-part-text ul,
.main-part-text ul li ul{
	padding-left: 15px;
}
.main-part-text ul li ul {
	margin-top: 5px;
}
.main-part-text p:last-child {
    margin-bottom: 0;
}

select {
	max-width: 400px;
	width: 100%;
    text-align: start;
    padding: 14px 12px;
    font-size: 16px;
    line-height: 1.5;
    border: 2px solid var(--border-color) !important;
    background-color: transparent !important;
    color: var(--text-color) !important;
    border-radius: 8px;
	-webkit-appearance: none;
    background-image: url('../kontakt-footer-files/images/arrow-down-chevron.svg');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
	transition: all 0.3s ease-in-out;
}
select:focus-visible,
select:active,
select:hover,
select:active {
    box-shadow: none;
    background-color: transparent !important;
    color: var(--text-color) !important;
    border-color: var(--active-border-color) !important;
	outline: none;
}

.dropdown-menu {
    width: 100%;
    padding: 0;
    border: 0px;
    border-radius: 8px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.dropdown-item {
    color: var(--text-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    padding: 12px;
    transition: all 0.3s ease-in-out;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--text-color);
}

.company-logo {
    max-width: 180px;
    height: auto;   
}
.company-logo img {
    width: 100%;
    height: auto;
}
.contact-info {
    margin-top: 7px;
}
.contact-info .contact-info-box:last-child {
    margin-bottom: 0;
}
.contact-info-box {
    gap: 20px;
    margin-bottom: 0;
    padding: 7px 0;
}
.contact-info-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-info-icon img {
    width: 100%;
    height: 100%;
    max-width: 20px;
    max-height: 22px;
}
.contact-info-text,
.contact-info-text a {
    color: var(--text-color);
}

@media (min-width: 576px) {
    .container {
        max-width: unset;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: unset;
        padding-left: 50px;
        padding-right: 50px;
    }
    .main-part-box {
        padding: 40px;
    }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }
    .main-part-box {
        padding: 50px;
    }
}

