@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700&display=swap');
*{
    font-family: 'Raleway', sans-serif;
}
body::-webkit-scrollbar {
    width: 0.01em;
    background: rgba(255, 255, 255, 0.35);
  }
  body::-webkit-scrollbar-thumb {
    background: #000000;
    width: 10px;
    border-radius: 20px;
  }
  
  body::-webkit-scrollbar-track-piece
  {
     display:none;
  }
.main
{
    background-image: url(img/fon.png);
    background-size: cover;
    min-height: 600px;
}
.pt200
{
    padding-top: 150px;
}
.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;
}
.main-discription
{
    width: 65%;
    font-size: 1.3em;
}
.dis
{
   width: 460px;
   text-align: justify;
   font-size: 16px;
}

.card-img-top
{
   height: 350px;
   background-size: cover;
}
.card-img-top h4{
    color: white;
    font-weight: 700;
    padding: 20px 30px;

}
@media (min-width: 350px) and (max-width: 1000px) {
 
    .main-discription
    {
        width: 85%;
        font-size: 1em;
    }
}

.parallax-container {
	height: 250px;
	overflow: hidden;
	position: relative;
}
.parallax-container::before {
	content: "";
	background-image: url('./img/pexels-pixabay-270366.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
	z-index: -1;
}