/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-width: 320px;

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: #1D3F77;
    background: #F5F5F5;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-width: 320px;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: #1D3F77;
    background: #F5F5F5;
}

/* main content */

.main {
    flex: 1 0 auto;
	overflow: hidden;
}

main section{
	padding-left: 15px !important;
	padding-right: 15px !important;
	box-sizing: border-box;
}

/* header / top */

.page-top {
    flex-shrink: 0;
}

/* footer */

.footer {
    flex-shrink: 0;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.product-sidebar__item { display: block; text-decoration: none; color: inherit; }

.modal-backdrop {
  --bs-backdrop-opacity: 0.8;
}

.modal-header{
	border: none !important;
}

.modal-header h5.modal-title{
font-weight: 700;
font-size: 24px;
line-height: 110%;
text-transform: uppercase;
text-align: center;
color: #fff;
display: block;
  width: 100%;
}
.modal-content{
	padding:  clamp(20px,2.6vw,50px);
	backdrop-filter: blur(30px);
	background: rgba(255, 255, 255, 0.1);
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	color: #fff;	
}

.modal-content button[type="submit"]{
	width: 100%;
}

.modal-footer button[type="button"]{
	width: 100%;
}

.modal-header .btn-close {
  top: 20px;
  right: 20px;
  position: absolute;
}

.modal-content .footer-form__checkbox{
	font-size: 12px;
}

.modal-header .btn-close {
  --bs-btn-close-color:#000;
  --bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity:0.5;
  --bs-btn-close-hover-opacity:0.75;
  --bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity:1;
  --bs-btn-close-disabled-opacity:0.25;
  box-sizing:content-box;
  width:1em;
  height:1em;
  padding:.25em .25em;
  color:#fff;
  background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  filter:var(--bs-btn-close-filter);
  border:0;
  border-radius:.375rem;
  opacity:var(--bs-btn-close-opacity);
  fill: #fff;
}

.modal-footer{
	border: none !important;
}

.vacancy-card__detail {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.vacancy-card__detail:hover {
    background-color: #eee;
}

.fulltext {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin-top 0.4s ease-out;
}

.fulltext.is-active {
    opacity: 1;
    margin-top: 20px;
}



.default-table-wrapper {
    width: 100%;
	/*
    overflow-x: auto;
	*/
    margin: 30px 0;
    -webkit-overflow-scrolling: touch;
}

.default-table-wrapper table {
    width: 100%;
	/*
    min-width: 900px;
	*/
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.45;
    color: #555;
}

.default-table-wrapper table th,
.default-table-wrapper table td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #999;
}

.default-table-wrapper table thead th {
    color: #444;
    font-weight: 700;
    background: #eee;
}

.default-table-wrapper table thead th:first-child {
    width: 18%;
}

.default-table-wrapper table tbody th {
    color: #555;
    font-weight: 700;
    background: #f5f5f5;
}

.default-table-wrapper table strong {
    color: #444;
    font-weight: 700;
}

.default-table-wrapper table em {
    color: #777;
}

@media (max-width: 767px) {
    .default-table-wrapper table {
        font-size: 14px;
    }

    .default-table-wrapper table th,
    .default-table-wrapper table td {
        padding: 10px;
    }
}

.service-tabs__slider img{
	transition: filter 0.4s ease;
}
.service-tabs__slider img:hover{
  filter: grayscale(0%);
}