@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700');

*{
    font-family: 'Montserrat', sans-serif;
}
body::-webkit-scrollbar {
    width: 0.5em;
    background: rgba(255, 255, 255, 0.35);
  }
  body::-webkit-scrollbar-thumb {
    background: #000000;
    height:30px;
  }
  
  body::-webkit-scrollbar-track-piece
  {
     display:none;
  }
.main
{
    background-image: url(img/fon.png);
    background-size: cover;
    background-attachment: fixed;
    min-height: 650px;
}
.pt200
{
    padding-top: 170px;
}
.pt100
{
    padding-top: 8%;
}
.text-haw-work
{
    font-size: 18px;
    padding-left: 26px;
    padding-top: 8px;
    line-height: 25px;
}
a
{
    cursor: pointer;
}
.line
{
    display: block;
    width: 4px;
    height: 10px;
    background-color: black;
}
.haw-work
{
    justify-content: space-between;
}
@media (min-width: 350px) and (max-width: 1000px) {
    .main
    {
      background-image: url(./img/fon_mob.png);
  
    }
}

.table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
}
.table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 30px 15px;
	background: #d8d8d8;
	font-size: 14px;
}
.table thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.table thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.table tbody td {
	text-align: left;
	border: none;
	padding: 30px 15px;
	font-size: 14px;
	vertical-align: top;
}
.table tbody tr:nth-child(even){
	background: #f3f3f3;
}
.table tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.table tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}

/* Стили для нового блока разработки с параллакс-эффектом */
.parallax-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.parallax-container .parallax-image {
  background-image: url('./img/pexels-pixabay-276452.jpg');
  background-size: auto 250px;
  background-position: center;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
}