@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.fleet-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
}

.fleet-block {
    max-width: 360px;
    max-height: 280px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 32px;
}

.fleet-title {
    font-size: 24px;
    font-weight: 650;
    text-align: center;
    padding: 24px 0;
    font-family: 'Roboto', sans-serif;
}

.fleet-block {
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
  }
  
  .fleet-block:hover {
    transform: scale(1.1);
  }
  
  .fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .fleet-block:hover .fleet-img {
    transform: scale(1.2);
  }
  
  .fleet-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 18px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .fleet-block:hover .fleet-title {
    opacity: 1;
  }

@media screen and (max-width: 1200px) { 
    .title {
        text-align: center;
    }

    .nav-text {
        justify-content: center;
    }

    .content {
        padding: 0 12px;
    }

    .fleet-blocks {
        justify-content: center;
    }

    .fleet-block { 
        margin: 12px 8px;
    }
}












.fleet-content_title {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  margin-top: 60px;
  font-family: 'Roboto', sans-serif;
}

.fleet-block_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.fleet-block_flex img {
  max-width: 560px;
  border-radius: 2px;
}

.fleet-h2 {
  font-size: 18px;
  font-weight: 550;
  text-align: center;
  margin-bottom: 16px;
}

.fleet-ul {
  padding: 0 12px;
  max-width: 600px;
}

.fleet-ul li {
  margin-bottom: 8px;
  line-height: 22px;
}

.fleet-ul li span {
  font-weight: 600;
}

.fleet-description {
  margin: 42px 0 60px;
}

.fleet-description .fleet-h2 {
  font-size: 22px;
  font-weight: 550;
  text-align: left;
  margin-bottom: 16px;
}

.fleet-description p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 24px;
}

@media screen and (max-width: 1000px) { 
  .fleet-block_flex {
    display: grid;
    justify-content: center;
  }

  .fleet-block_flex img { 
    margin: 0 auto;
    margin-bottom: 12px;
  }

  .fleet-ul {
    padding: 0;
    max-width: 560px;
  }
}

@media screen and (max-width: 600px) { 
  .fleet-block_flex img { 
    max-width: 310px;
  }
}