@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "Cella";
  src: url("font/Cella.a41234a744f8.otf") format("truetype");
}
/*HEADER IMAGE*/
.subpage-header {
  width: 100%;
}

.headerimg_subpage {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 260px;
}

/*BACK LINK AND TITLE*/
.text-subpages {
  padding: 24px 161px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subpage-title {
  font-family: "Cella", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #1F2430;
}

.back-link {
  text-decoration: none;
  color: #7A8096;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}
.back-link .arrow-left {
  padding-right: 13px;
  height: 12px;
}

/*FILTERS AND SEARCHBAR*/
.subpage-filters {
  padding: 0 153px;
}
.subpage-filters form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-subpage {
  width: 100%;
  margin-bottom: 24px;
}
.search-subpage .search-wrapper-subpage {
  display: flex;
  flex: 1;
  align-items: center;
  height: 44px;
  border: 1px solid #D3D7DE;
  border-radius: 6px;
  padding: 0 12px;
  overflow: hidden;
}
.search-subpage .search-wrapper-subpage input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 14px;
}

.btn-create {
  padding: 12px 24px;
  background-color: #343B86;
  border-radius: 6px;
  border: 1px solid #343B86;
  gap: 4px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-weight: 500;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.btn-create img {
  transform: translateY(1px);
}

/*CARDS WITH RECENT POSTS*/
.recent-posts {
  padding: 0 152px;
}
.recent-posts h2 {
  font-family: "Cella", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #1F2430;
  padding-bottom: 24px;
}

.recent-posts-info .cards-row {
  padding-bottom: 120px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-content: space-around;
  gap: 24px;
}

/*CARS WITH ALL POSTS*/
.all-posts {
  padding: 0 152px 120px;
}
.all-posts .pagination {
  padding-top: 24px;
}

.all-posts-info h2 {
  font-family: "Cella", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #1F2430;
  padding-bottom: 24px;
}

.pagination {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
}

.pagination .pagination-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #D3D7DE;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1F2430;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  gap: 4px;
}

.pagination .pagination-btn.active {
  background-color: #343B86;
  color: #ffffff;
  border-color: #343B86;
}

.pagination-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  background-color: white;
}

.filters {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  min-width: 120px;
  border-radius: 6px;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid #ECEEF2;
  color: #4A5065;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1%;
  background-color: #FFFFFF;
  align-content: flex-start;
  display: flex;
  position: relative;
}
.filter-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.filter-dot {
  width: 8px;
  height: 8px;
  background-color: #343B86;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  right: -3px;
}

.filter-content {
  display: none;
  position: absolute;
  border: 1px solid #ECEEF2;
  border-radius: 6px;
  z-index: 1000;
  min-width: 180px;
  border-radius: 6px;
  padding: 6px 8px;
  gap: 4px;
  background-color: #FFFFFF;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: 4px;
  scrollbar-color: #B3B8C2;
}
.filter-content a {
  color: #7A8096;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  padding: 16px;
  text-decoration: none;
  display: block;
}

.filter-content.open {
  display: block;
  margin-top: 4px;
  box-shadow: 1px 4px 10px 0px rgba(160, 160, 160, 0.2392156863);
}
.filter-content.open .arrow-icon {
  transform: rotate(180deg);
}

.filter-content a:hover {
  background-color: #F7F8FA;
}

.filters-left {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 22px 0 32px;
  justify-content: space-between;
}
.active-filters a {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  gap: 4px;
  border-radius: 6px;
  color: #1F2430;
  background-color: #F7F8FA;
  text-decoration: none;
}
.active-filter img {
  width: 16px;
  margin-left: 8px;
}

.clear-all {
  color: #FFFFFF;
  background-color: #343B86;
  padding: 6px 12px;
  gap: 4px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
.clear-all img {
  margin-left: 4px;
  width: 16px;
  transform: translateY(2px);
}

/*articles styles*/
.main-content-articles {
  padding: 24px 161px;
  display: flex;
  flex-direction: column;
}

.article-title {
  margin: 24px 0 17px;
}

.article-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.actions-left {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #7A8096;
}
.actions-left button {
  background: none;
  border: none;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #7A8096;
}
.actions-left img {
  transform: translateY(-2px);
  margin-right: 7px;
}

.views {
  transform: translateY(8px);
}

.actions-right {
  display: inline-flex;
  justify-content: flex-end;
}

.autor-info {
  transform: translateY(8px);
  color: #8F95AA;
  font-size: 13px;
}

.article-text {
  font-size: 16px;
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-family: Inter;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 75px;
}

.badges {
  padding: 24px 161px 48px;
}

.articles-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.badges-title {
  color: #1F2430;
  font-family: "Cella", sans-serif;
  font-size: 22px;
}

.country-list, .tags-list {
  width: 363px;
}

.related-title {
  font-size: 28px;
  font-family: "Cella", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.related {
  padding: 120px 161px;
}

.related-explore {
  padding-bottom: 120px;
}

.comments {
  padding: 0 161px;
}

.comments-title {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

/*ABOUT PAGE   */
.headerimg {
  width: 100%;
}

.headerimg_abt {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-start {
  padding: 0 154px;
}

.about-title {
  font-family: "Cella", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #1F2430;
  margin: 24px 0 17px;
}

about-info {
  display: grid;
  grid-template-columns: 490px 1fr;
  padding: 24px 154px 100px;
}

.info-left {
  width: 459px;
}
.info-left img {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  display: block;
}

.address {
  width: 100%;
  margin-top: 8px;
}

.address p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #7A8096;
}

.about-info-title {
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 8px;
}

.info-text {
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  padding-bottom: 24px;
}

.list {
  padding-left: 20px;
}

.info-list {
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
}

.imprint-text {
  padding: 24px 152px 120px;
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-family: Inter;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
}
.imprint-text a {
  color: #1F2430;
}
.imprint-text h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}
.imprint-text h3 {
  font-weight: 500;
  font-size: 24px;
}

.history {
  margin-bottom: 24px;
}

.address-imprint {
  margin: 24px 0 24px;
}

.copy-list {
  margin-top: 8px;
}

.copyright-text {
  margin: 24px 0;
}

.webdesign {
  margin-top: 24px;
}

/*CONTACT STYLES*/
.contact-together {
  padding: 80px 152px 0;
  display: grid;
  grid-template-columns: 560px 1fr;
}

.left-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.right-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 35px 0 0 24px;
}

.contact-title {
  color: #1F2430;
  font-family: "Cella", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  text-transform: uppercase;
}

.options-title {
  color: #1F2430;
  font-family: "Cella", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 8px;
}

.options-info {
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

.input-group h4 {
  color: #1F2430;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

.input-group.first {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 24px;
  gap: 24px;
}

.input-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.red-star {
  color: #A33A3A;
}

.form-input {
  border: 1px solid #D3D7DE;
  border-radius: 6px;
  min-width: 185px;
  padding: 10px 12px;
  color: #7A8096;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.contact-textarea {
  min-width: 200px;
  min-height: 114px;
  resize: none;
  width: 100%;
  border: 1px solid #D3D7DE;
  gap: 8px;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
}

.contact-btn {
  padding: 12px 24px;
  background: #343B86;
  border: 1px solid #343B86;
  border-radius: 6px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-top: 24px;
}

.input-title {
  margin-bottom: 8px;
}/*# sourceMappingURL=subpages.css.map */