#mainBlog {
  padding-top: 0;
  background: #f8f8f8;
}
#mainBlog .block-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
#mainBlog .block-title h2 {
  font-size: 1.75em;
  font-weight: 600;
  margin: 0;
}
#mainBlog .block-title .link-more {
  font-size: 1em;
  text-decoration: none;
  color: var(--color-link);
  transition: all 0.3s;
}
#mainBlog .block-title .link-more:hover {
  color: var(--color-link-hover);
}
#mainBlog .block-tabs .tabs-wrapper {
  max-width: 100%;
  flex-wrap: nowrap;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
#mainBlog .block-tabs .tabs-wrapper .tabs-item {
  background: #eee;
  transition: all 0.3s;
  cursor: pointer;
}
#mainBlog .block-tabs .tabs-wrapper .tabs-item .tab-item-content {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  transition: all 0.3s;
}
#mainBlog .block-tabs .tabs-wrapper .tabs-item.active, #mainBlog .block-tabs .tabs-wrapper .tabs-item:hover {
  transition: all 0.3s;
  background: #424242;
}
#mainBlog .block-tabs .tabs-wrapper .tabs-item.active .tab-item-content, #mainBlog .block-tabs .tabs-wrapper .tabs-item:hover .tab-item-content {
  transition: all 0.3s;
  color: white;
}
#mainBlog .tabs-content {
  padding-bottom: 60px;
}
#mainBlog .tabs-content .tabs-content-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  opacity: 0;
  z-index: -1;
  position: relative;
  transition: all 0.3s;
  height: 0;
}
#mainBlog .tabs-content .tabs-content-items .swiper {
  height: 360px;
  width: 100%;
}
#mainBlog .tabs-content .tabs-content-items .swiper .swiper-wrapper {
  gap: 20px;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item {
  width: calc(20% - 18px) !important;
  height: 340px;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper {
  padding: 10px;
  position: relative;
  width: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: calc(100% - 20px);
  background: white;
  overflow: hidden;
  border-radius: 10px;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-image {
  position: relative;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-image img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-image img.no-image {
  width: 35%;
  height: auto;
  opacity: 0.2;
  min-height: unset;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-title {
  font-size: 1.1em;
  font-weight: 600;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-desc {
  height: 70px;
  overflow-y: hidden;
  position: relative;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .item-desc:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item .item-wrapper .btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
}
#mainBlog .tabs-content .tabs-content-items .swiper .content-item:hover {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
#mainBlog .tabs-content .tabs-content-items.active {
  padding-top: 30px;
  opacity: 1;
  z-index: 2;
  height: fit-content;
}
#mainBlog .tabs-content .tabs-content-items .slider-btns {
  position: absolute;
  right: 0;
  display: flex;
  gap: 20px;
  height: 50px;
  bottom: -50px;
}
#mainBlog .tabs-content .tabs-content-items .slider-btns .swiper-btn {
  left: unset;
  top: unset;
  right: unset;
  position: relative;
  border-radius: 50%;
  background: white;
  width: 50px;
  height: 50px;
  margin-top: unset;
  transition: all 0.3s;
}
#mainBlog .tabs-content .tabs-content-items .slider-btns .swiper-btn:after {
  font-size: 25px;
  color: #424242;
  transition: all 0.3s;
}
#mainBlog .tabs-content .tabs-content-items .slider-btns .swiper-btn:hover {
  background: var(--color-link-hover);
}
#mainBlog .tabs-content .tabs-content-items .slider-btns .swiper-btn:hover:after {
  color: white;
}

.services-list-block {
  margin-top: 20px;
}
.services-list-block .block-title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.services-list-block .block-title h2 {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0;
}
.services-list-block .block-title a {
  line-height: 1.2;
}
.services-list-block .block-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
}
.services-list-block .block-section .section-tabs {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.services-list-block .block-section .section-tabs .tabs-item {
  padding: 7px 20px;
  font-size: 16px;
  font-weight: 500;
  color: black;
  width: 100%;
  transition: all 0.3s;
  background: #f4f4f4;
  cursor: pointer;
}
.services-list-block .block-section .section-tabs .tabs-item.active {
  background: #222222;
  color: white;
}
.services-list-block .block-section .section-tabs .tabs-item:not(.active):hover {
  background: #ffffff;
  color: #222222;
}
.services-list-block .block-section .section-content {
  position: relative;
  flex-grow: 1;
  padding: 0 20px;
}
.services-list-block .block-section .section-content .tab-content-item {
  display: none;
}
.services-list-block .block-section .section-content .tab-content-item.active {
  display: block;
}
.services-list-block .block-section .section-content .tab-content-item .services-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 80px;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .swiper-wrapper {
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item {
  width: calc(20% - 16px);
  border-radius: 10px;
  background: white;
  position: relative;
  padding: 10px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item:hover {
  box-shadow: 0px 5px 30px rgba(34, 34, 34, 0.1);
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item .service-image {
  width: 100%;
  height: 0;
  padding-top: 70%;
  position: relative;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item .service-image .service-image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item .service-image .service-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item .service-name {
  font-weight: bold;
  transition: all 0.3s;
  font-size: 16px;
  color: black;
  flex-grow: 1;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .service-item .service-name:hover {
  color: #222222;
}
.services-list-block .block-section .section-content .tab-content-item .services-list .btn-more {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/*# sourceMappingURL=style.css.map */
