html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: "PT Serif", sans-serif;
  font-weight: 400;
}

.open {
  display: flex !important;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 34px 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 10;
}

.logo {
}

.logo-image {
}

.navigation {
  display: flex;
  gap: 34px;
  font-size: 14px;
  margin-top: 8px;
  max-width: 1024px;
}

.navigation-item {
  text-decoration: none;
  color: #171717;
}

.navigation-item:hover {
  cursor: pointer;
  color: #C9A96E
}

.burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}

.burger span {
  height: 2px;
  width: 100%;
  transform: scale(1);
  background-color: #C9A96E;
}

.burger::before, .burger::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #C9A96E;
  transition: all 0.3s ease 0s;
}

.burger::before { top: 0 }

.burger::after { bottom: 0;}

.burger.active span { transform: scale(0) }

.burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

@media screen and (max-width: 1280px) {
  .navigation-item {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {

  .header {
  }

  .burger {
    display: flex;
  }

  .navigation {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 50%;
    top: 92px;
    bottom: 0;
    left: 50%;
    right: 0;
    z-index: 50;
    overflow-y: auto;
    /*padding: 50px 40px;*/
    background-color: white;
  }

  .navigation-item {
    display: flex;
    flex-direction: column;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    border-bottom: 2px solid rgba(201, 169, 110, .5);
  }
}

@media screen and (max-width: 376px) {

}

.main-hero {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 100px;
}

.main-hero-img {
  background-image: url(../img/main-hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 900px;
}

.main-text-p1 {
  position: absolute;
  bottom: 192px;
  left: 375px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

.main-text-h1 {
  position: absolute;
  bottom: 88px;
  left: 375px;
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  max-width: 560px;
  text-align: left;
}

.main-text-p3 {
  position: absolute;
  bottom: 59px;
  left: 375px;
  color: white;
  font-size: 14px;
  max-width: 283px;
}
 .author {
  text-decoration: none;
  color: #FFFFFF;
 }

 @media screen and (max-width: 1024px) {
  .main-hero-img {
    width: 1024px;
  }

  .main-text-p1 {
    left: 10px;
    margin-bottom: 50px;
    font-size: 12px;
  }

  .main-text-h1 {
    left: 10px;
    max-width: 450px;
    font-size: 35px;
  }

  .main-text-p3 {
    left: 10px;
    font-size: 12px;
  }
 }

 .main-context {
  display: flex;
 }

 @media screen and (max-width: 1280px) {
  .main-context {
    display: flex;
    flex-direction: column;
  }
 }

 @media screen and (max-width: 1024px) {
  .main-context {
    display: flex;
    flex-direction: column;
  }
 }

 @media screen and (max-width: 768px) {
  .main-text-p1 {
    bottom: 240px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
  }

  .main-text-h1 {
    bottom: 88px;
    color: white;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    max-width: 380px;
    text-align: left;
  }
 }

 @media screen and (max-width: 376px) {
  .main-hero-img {
    max-width: 376px;
    height: 550px;
  }

  .main-text-p1 {
    bottom: 180px;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
  }

  .main-text-h1 {
    bottom: 100px;
    color: white;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    max-width: 376px;
    text-align: left;
  }
 }

 .post-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 29px;
  max-width: 770px;
  margin: 0 0 60px 375px;
 }

 .post-item {
  box-shadow: 0 2px 6px #0000001A;
  transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.post-item:hover {
  margin-top: -5px;
  margin-bottom: 5px;
}

.post-text-p {
  text-transform: uppercase;
  font-size: 12px;
  color: #C9A96E;
  margin-top: 14px;
  text-align: center;
}

.post-text-p2 {
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  max-width: 285px;
  margin: 5px 0 11px 43px;
  color: #171717;
}

.post-text-p3 {
  text-align: center;
  max-width: 166px;
  font-size: 12px;
  margin-left: 102px;
  margin-bottom: 14px;
  color: #666666;
}

@media screen and (max-width: 1280px) {
  .post-1 {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    margin: 0 80px 20px 40px;
  }

  .post-text-p {
    font-size: 12px;
  }
  
  .post-text-p2 {
    font-size: 20px;
    margin-left: 30px;
    padding: 0 15px;
  }
  
  .post-text-p3 {
    max-width: 166px;
    font-size: 12px;
    margin-left: 100px;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .post-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 40px 20px 40px;
  }

  .post-text-p {
    font-size: 12px;
  }
  
  .post-text-p2 {
    font-size: 20px;
    margin-left: 0;
    padding: 0 15px;
  }
  
  .post-text-p3 {
    max-width: 1000px;
    font-size: 12px;
    margin-left: 10px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .post-1 {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    margin: 0 40px 20px 30px;
  }
}

@media screen and (max-width: 376px) {
  .post-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 15px 20px 15px;
  }

  .post-text-p {
    font-size: 16px;
  }
  
  .post-text-p2 {
    font-size: 22px;
    margin-left: 22px;
    padding: 0 0;
  }
  
  .post-text-p3 {
    max-width: 1000px;
    font-size: 16px;
    margin-left: 0;
    text-align: center;
  }
}

.post-2 {
  max-width: 770px;
  margin-left: 375px;
  box-shadow: 0 2px 6px #00000010;
  margin-bottom: 27px;
}

.container-post-2 {
  margin-left: 30px;
  text-align: left;
  padding-bottom: 27px;
}

.post-text-p-post-2 {
  margin-top: 25px;
  font-size: 12px;
  color: #C9A96E;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.post-text-p2-post-2 {
  font-size: 20px;
  color: #171717;
  margin-bottom: 11px;
}
.post-text-p3-post-2 {
  font-size: 12px;
  color: #666666;
  margin-bottom: 14px;
}
.post-text-p4 {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  max-width: 622px;
}

@media screen and (max-width: 1280px) {
  .post-2 {
    max-width: 770px;
    margin-left: 40px;
    box-shadow: 0 2px 6px #00000010;
    margin-bottom: 27px;
  }
}

@media screen and (max-width: 1024px) {
  .post-2 {
    max-width: 770px;
    margin-left: 40px;
    box-shadow: 0 2px 6px #00000010;
    margin-bottom: 27px;
  }
}

@media screen and (max-width: 768px) {
  .post-2 {
    margin-left: 30px;
  }
}

@media screen and (max-width: 376px) {
  .post-2 {
    margin-left: 15px;
    max-width: 345px;
  }

  .post-text-p-post-2 {
    font-size: 14px;
  }

  .post-text-p2-post-2 {
    font-size: 22px;
    color: #171717;
    margin-bottom: 11px;
  }
  .post-text-p3-post-2 {
    font-size: 14px;
    color: #666666;
    margin-bottom: 14px;
  }
  .post-text-p4 {
    font-size: 16px;
    padding-right: 15px;
    color: #666666;
    line-height: 24px;
    max-width: 622px;
  }
}


.pagination {
  margin: 60px 0 80px 506px;
  padding: 11px 21px 38px 27px;
  max-width: 509px;
  max-height: 50px;
  border: 1px solid #E5E5E5;
  vertical-align: middle;
}

.page-link {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #171717;
}

.page-link-arrow {
  font-family: "Hanken Grotesk", sans-serif;
  text-decoration: none;
  color: #A2A2A2;
  font-size: 20px;
}

.page-link-older {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #A2A2A2;
  padding-right: 30px;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 16px;
}

.page-link-number {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #171717;
  padding-right: 30px;
  cursor: pointer;
  line-height: 16px;
}

.page-link-next {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #171717;
  text-transform: uppercase;
  line-height: 16px;
}

@media screen and (max-width: 1280px) {
  .pagination {
  margin: 60px 0 80px 400px;
  }
}

@media screen and (max-width: 1024px) {
  .pagination {
    margin: 60px 0 80px 300px;
  }
}

@media screen and (max-width: 768px) {
  .pagination {
    margin: 60px 0 80px 250px;
  }
}

@media screen and (max-width: 376px) {
  .pagination {
    margin: 60px 0 80px 40px;
    width: 300px;
  }

  .page-link-arrow {
    margin-right: 8px;
  }

  .page-link-older {
    display: none;
  }

  .page-link-next {
    display: none;
  }
}

.sidebar {
  margin-left: 127px;
  max-width: 275px;
}

.about-author {
  font-size: 16px;
  color: #171717;
  text-align: center;
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid #E5E5E5;
  padding-top: 15px;
  padding-left: 4px;
}

.author-item {
  box-shadow: 0 2px 6px #00000010;
  margin-bottom: 70px;
}

.author-image {
  margin-bottom: 13px;
  width: 275px;
  height: 188px;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: #171717;
  text-align: center;
  margin-bottom: 3px;
}

.blog-theme {
  font-style: italic;
  font-size: 14px;
  color: #B1B1B1;
  text-align: center;
  margin-bottom: 14px;
}

.author-description {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 14px;
}

.rectangle-1 {
  width: 275px;
  height: 1px;
  background-color: #E5E5E5;
  margin-bottom: 11px;
}

.continue-reading {
  color: #C9A96E;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 12px;
}

@media screen and (max-width: 1280px) {
  .sidebar {
    margin-left: 500px;
    width: 275px;
  }

  .author-item {
    margin-left: -280px;
    width: 800px;
  }

  .rectangle-1 {
    width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  .sidebar {
    margin-left: 400px;
    width: 275px;
  }

  .author-item {
    margin-left: -360px;
    width: 950px;
  }

  .rectangle-1 {
    width: 950px;
  }
}

@media screen and (max-width: 768px) {
  .sidebar {
    margin-left: 350px;
    width: 275px;
  }

  .author-item {
    margin-left: -215px;
    width: 700px;
  }

  .rectangle-1 {
    width: 700px;
  }
}

@media screen and (max-width: 376px) {
  .sidebar {
    margin-left: 50px;
    width: 275px;
  }

  .author-item {
    margin-left: -10px;
    width: 300px;
  }

  .rectangle-1 {
    width: 300px;
  }
}

.posts {
  margin-bottom: 70px;
}

.posts-item {
  margin-bottom: 29px;
  box-shadow: 0 2px 6px #00000010;
}

.post-image {
  margin-bottom: 15px;
  width: 275px;
  height: 161px;
}

.posts-item-text-p {
  text-transform: uppercase;
  font-size: 12px;
  color: #C9A96E;
  margin-bottom: 6px;
  text-align: center;
}

.posts-text {
  font-size: 18px;
  color: #171717;
  margin-left: 13px;
  margin-bottom: 14px;
  text-align: center;
  max-width: 250px;
}

.posts-text-p3 {
  text-align: center;
  max-width: 166px;
  font-size: 12px;
  margin-left: 55px;
  padding-bottom: 14px;
  color: #666666;
}

@media screen and (max-width: 1280px) {
  .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 800px;
    margin-left: -280px;
  }

  .posts-text {
    font-size: 18px;
    margin-left: 0;
    padding: 0 15px;
  }
  
  .posts-text-p3 {
    text-align: center;
    max-width: 166px;
    font-size: 10px;
    margin-left: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 900px;
    margin-left: -340px;
  }

  .posts-text {
    font-size: 20px;
    margin-left: 10px;
    padding: 0 15px;
  }
  
  .posts-text-p3 {
    text-align: center;
    max-width: 166px;
    font-size: 14px;
    margin-left: 50px;
  }
}

@media screen and (max-width: 768px) {
  .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 700px;
    margin-left: -215px;
  }

  .posts-text {
    font-size: 20px;
    margin-left: 10px;
    padding: 0 15px;
  }
  
  .posts-text-p3 {
    text-align: center;
    max-width: 166px;
    font-size: 14px;
    margin-left: 30px;
  }
}

@media screen and (max-width: 376px) {
  .posts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: 275px;
    margin-left: -1px;
  }

  .posts-item-text-p {
    font-size: 16px;
  }

  .posts-text {
    font-size: 20px;
    margin-left: 10px;
    padding: 0 15px;
  }
  
  .posts-text-p3 {
    text-align: center;
    max-width: 166px;
    font-size: 14px;
    margin-left: 50px;
  }
}

.categories {
  margin-bottom: 44px;
}
.about-author {
}

.categories-item {
  display: flex;
  justify-content: space-between;
}

.categories-text {
  color: #666666;
  font-size: 14px;
  margin-bottom: 19px;
}

.categories-text:hover {
  cursor: pointer;
  color: #C9A96E;
}

.categories-number {
  color: #666666;
  font-size: 14px;
  margin-bottom: 19px;
  cursor: pointer;
}

.rectangle-2 {
  width: 275px;
  height: 1px;
  background-color: #E5E5E5;
  margin-bottom: 11px;
}

.social-media {
  margin-bottom: 66px;
}

.social-media-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
}

.social-media-item {
  background-color: #F8F9FA;
  padding-bottom: 13px;
}

.social-media-logo {
  margin: 17px 38px 6px 39px;
}

.social-media-text {
  text-align: center;
  color: #999999;
  font-size: 12px;
}

.tags {
}

.tags-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.tags-link {
  text-decoration: none;
}

.tags-item {
  background-color: #F8F9FA;
  padding: 6px 14px;
  cursor: pointer;
}

.tags-text {
  text-align: center;
  color: #999999;
  font-size: 14px;
}

@media screen and (max-width: 1280px) {
  .addition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-left: -310px;
  }

  .categories-text {
    font-size: 16px;
    margin-bottom: 10px;
    color: #171717;
  }

  .categories-number {
    font-size: 16px;
    margin-bottom: 10px;
    color: #171717;
  }

  .social-media-logo {
    margin: 17px 38px 6px 22px;
    padding: 0 14px;
  }
  
  .social-media-text {
    font-size: 14px;
  }

  .tags-text {
    font-size: 16px;
    color: #171717;
  }
}

@media screen and (max-width: 1024px) {
  .addition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-left: -340px;
  }
}

@media screen and (max-width: 768px) {
  .addition {
    /*display: flex;
    justify-content: center;
    margin-left: -215px;
    flex-wrap: wrap;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-left: -100px;
  }

  .addition:last-child {
    justify-content: center;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 376px) {
  .addition {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-left: -1px;
  }
}

.instagram-widget {
  margin: 0 20px 100px;
}

.instagram {
  text-align: center;
  font-size: 24px;
  color: #171717;
  margin-bottom: 39px;
}

.instagram-link {
  text-decoration: none;
  color: #171717;
}

.bitmap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 21px;
}

.bitmap:last-child {
  margin-right: 0;
}

.bitmap:first-child {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .instagram {
    margin-left: 150px;
  }
  
  .bitmap {
    display: grid;
    grid-template-columns: repeat(6, 150px);
    gap: 21px;
  }
}

@media screen and (max-width: 376px) {
  .instagram {
    margin-left: 20px;
  }

  .bitmap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
  }
}

.footer {
  margin-bottom: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 60px;  
}

.logo-image {
}

.footer-navigation {
  display: flex;
  gap: 34px;
  font-size: 14px;
  margin-bottom: 26px;
}

.footer-item {
  font-size: 14px;
  color: #666666;
  text-decoration: none;
}

.footer-item:hover {
  color: #C9A96E;
}

.footer-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-icon {
  border-radius: 24px;
}

.footer-icon:hover {
  cursor: pointer;
  background-color: #C9A96E;
  color: white;
}

.rectangle {
  width: 1170px;
  height: 1px;
  background-color: #E5E5E5;
  margin-bottom: 30px;
}

.footer-contact {
  font-size: 14px;
  color: #666666;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-left: 350px;
  }
}

@media screen and (max-width: 376px) {
  .footer {
    width: 376px;
    margin-left: 0px;
  }

  .footer-navigation {
    display: none;
  }
  
  .rectangle {
    width: 376px;
  }
  
  .footer-contact {
    font-size: 16px;
  }
}