<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mockups-category-page {
  padding-top: 160px;
  padding-bottom: 80px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.mockups-category-page h1,
.mockups-category-page h2,
.mockups-category-page h3,
.mockups-category-page h4,
.mockups-category-page h5,
.mockups-category-page h6 {
  margin: 0;
}
.mockups-category-page .section {
  width: 100%;
  max-width: 1114px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumbs-wrapper  {
	font-size:16px;
	color: #687076;
	font-weight:400;
}
.breadcrumbs-wrapper  a{
	color:#687076;
}
.breadcrumbs-wrapper a:hover{
	color:#0081F1;
}

/* Page title */
.mockups-category-page .section.page-title .content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.mockups-category-page .section.page-title .video-wrapper {
  padding: 16px;
  border-radius: 16px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockups-category-page .section.page-title .video-wrapper video {
  max-width: 520px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: none;
}
.mockups-category-page .section.page-title .image-wrapper {
  padding: 16px;
  border-radius: 16px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockups-category-page .section.page-title .image-wrapper img {
  max-width: 520px;
  max-height: 289px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: none;
}
.mockups-category-page .section.page-title .title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.mockups-category-page .section.page-title .title-wrapper .title {
  font-size: 40px;
  font-weight: 800;
  line-height: 64px;
  color: #00254d;
  font-family: "Manrope", Sans-serif;
  text-align: left;
}
.mockups-category-page .section.page-title .title-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #687076;
  font-family: "Manrope", Sans-serif;
  text-align: left;
}

.mockups-category-page .section.page-title .title-wrapper button {
  background: #151718;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  font-family: "Manrope", Sans-serif;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
	margin-top:12px;
}

.mockups-category-page .section.page-title .title-wrapper button:hover {
  background: #26292b;
  cursor: pointer;
}

.mockups-category-page .section.mockups-grid .content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.mockups-category-page .section.mockups-grid .content .mockup-item {
  aspect-ratio: 1 / 1.3;
  border-radius: 8px;
	display: flex;
	position:relative;
}
.mockups-category-page .section.mockups-grid .content .mockup-item:hover {
  cursor: pointer;
}
.mockups-category-page .section.mockups-grid .content .mockup-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.mockups-category-page .section.mockups-grid .content .mockup-item .item-head {
 	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    z-index: 10;
    top: 0;
    position: absolute;
    color: #fff;
    background: linear-gradient(180deg, rgba(23, 23, 23, .5) 0%, rgba(23, 23, 23, 0) 100%);
    height: 97px;
    transition: all .2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: start;
    justify-content: start;
	padding:16px;
}

.mockups-category-page .section.mockups-grid .content .mockup-item:hover .item-head {
    visibility: visible;
    opacity: 1;
    z-index: 10;
    top: 0;
    position: absolute;
}

.mockups-category-page .section.mockups-grid .content .mockup-item .item-head p{
	margin-bottom: 0;
	display: inline-block;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
	font-weight:400;
	color:#fff;
	font-size:14px;
}

.mockups-category-page .integration-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #f8f9fa;
}
.mockups-category-page .integration-item .box.image {
  height: 221px;
}
.mockups-category-page .integration-item .box.image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.mockups-category-page .integration-item .box.info {
  padding: 32px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.mockups-category-page .integration-item .title {
  text-align: left;
  font-size: 24px;
  font-weight: 800;
}
.mockups-category-page .integration-item .description {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.mockups-category-page .integration-item button {
  width: auto;
  max-width: 75%;
  margin-top: 16px;
}


@media (max-width: 1180px) {
  .mockups-category-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 880px) {
}

@media (max-width: 480px) {
  .mockups-category-page .section.page-title .title {
    line-height: normal;
  }
	.mockups-category-page .integration-item button {
  max-width: 100%;
}
.mockups-category-page .integration-item .box.info,
.mockups-category-page .integration-item .box.info {
  padding: 48px 29px;
}

}

.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.pagination .page-numbers {
  list-style: none;
  margin: 0 5px;
   text-decoration: none;
  display: flex;  
	justify-content:center;
	align-items:center;
	cursor:pointer; 
    font-size: 14px;
    font-weight: 500;
    line-height: auto;
    color: #0f1720;
    font-family: "Manrope", Sans-serif;
    border: none;
    background: transparent;
    border-radius: 8px;
	width:38px;
	height:45px;
}
.pagination .page-numbers.prev{
	transform: rotate(180deg);
 } 
.pagination .page-numbers:hover {
    background: #eceef0;
}
 
.pagination .page-numbers.current:hover {
    background: #0082f1;
}

.pagination .current {
  font-weight: bold;
  background-color: #0082f1;
  color: #fff;
}
</pre></body></html>