/* CSS Document */
/*=========================================== BANNERS SECTION ==============================================*/
.banners-section {
  text-align: center;
  margin: 0 0 20px;
}
.banners-section .container-fluid {
  opacity: 0;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
}
.banners-section.ready .container-fluid {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.banners-section .container-fluid .item {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 32.3566%;
}
.banners-section .container-fluid .item img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .banners-section {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .banners-section .container-fluid {
    gap: 6px;
  }
}

/*=========================================== MAIN ISSUE SECTION ==============================================*/
.main-issue-section {
    display: block;
    margin: 0 0 35px;
    width: 100%;
    max-width: 100%;
}
.main-issue-section .bnn {
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
  padding-bottom: 68%;
  margin: 0 0 10px;
}
.main-issue-section .bnn img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-issue-section .info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.main-issue-section .info .left {
    width: 100%;
    max-width: 100%;
}
.main-issue-section .info .left h3 {
  color: #000;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 10px;
}
.main-issue-section .info .left p {
  color: #565656;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0;
}
.main-issue-section .info .link-arrow {
    display: block;
    min-width: 326px;
    color: #000;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}
.main-issue-section .info .link-arrow:hover,
.main-issue-section .info .link-arrow:focus {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .main-issue-section .info {
    flex-direction: column;
  }
}

/*=========================================== MAIN NEWS SECTION ==============================================*/
.main-news-section {}
.main-news-section .news-grid div.item:nth-child(1),
.main-news-section .news-grid div.item:nth-child(2) {
  width: calc(50% - 10px);
}
.main-news-section .news-grid div.item:nth-child(1) a,
.main-news-section .news-grid div.item:nth-child(2) a {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}
.main-news-section .news-grid div.item:nth-child(1) .bnn,
.main-news-section .news-grid div.item:nth-child(2) .bnn {
  width: 100%;
  margin: 0;
  padding-bottom: 49%;
}
@media (max-width: 768px) {
  .main-news-section .news-grid div.item:nth-child(1),
  .main-news-section .news-grid div.item:nth-child(2) {
    width: 100%;
  }
}

/*=========================================== READ SECTION ==============================================*/
.read-section-wrapper {
  position: relative;
  margin: 75px 0;
}
.read-section-wrapper .cover {
  position: absolute;
  z-index: 2;
  right: 50%;
  margin-right: 250px;
  top: -13px;
  max-width: 358px;
  transform: rotate(-4deg);
  box-shadow: 0 7px 23px #00000070;
}
.read-section {}
.read-section .container {
  opacity: 0;
  position: relative;
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: space-between;
  padding-left: 360px;
}
.read-section.ready .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.read-section .container > .cta {
  min-width: 282px;
}
.read-section .container > .cta h2 {
  font-size: 50px;
  margin: 0 0 15px
}
.read-section .issues {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.read-section .issues .item {
  min-width: 127px;
  max-width: 127px;
}
.read-section .issues .item .cta {
  display: block;
}
@media (max-width: 1200px) {
  .read-section-wrapper .cover {
    margin: 0 6vw;
    top: -50px;
  }
  .read-section .issues {
    max-width: 400px;
    margin-right: 8vw;
  }
  .read-section .container {
    padding-left: 120px;
    align-items: end;
  }
}
@media (max-width: 991px) {
  .read-section-wrapper .cover {
    margin: 0 0 0 7vw;
    top: -35px;
  }
  .read-section .issues {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .read-section {
    padding-top: 350px!important;
  }
  .read-section-wrapper .cover {
    position: relative;
    z-index: 2;
    left: unset;
    right: unset;
    top: unset;
    margin: auto;
    max-width: 310px;
    margin-bottom: -321px;
  }
  .read-section .issues {
    margin-right: 0;
    max-width: 500px;
    align-items: center;
    justify-content: center;
  }
  .read-section .container {
    flex-direction: column;
    padding-left: 20px;
    align-items: center;
  }
}

/*=========================================== FEATURED SECTION ==============================================*/
.featured-section {
  margin: 75px 0;
}
.featured-section .container {
  opacity: 0;
}
.featured-section.ready .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.featured-section .cta-wrapper {
  display: flex;
  gap: 80px; 
}
.featured-section .cta-wrapper .cta {
  text-decoration: none;
  width: 100%;
}
.featured-section .cta-wrapper .cta .bnn {
  display: block;
  position: relative;
  padding-bottom: 68%;
  margin: 0 0 15px;
}
.featured-section .cta-wrapper .cta .bnn img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  
}
.featured-section .cta-wrapper .cta h2 {
  color: #000;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .featured-section {
    margin: 10px 0;
  }
  .featured-section .cta-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/*=========================================== INSTAGRAM SECTION ==============================================*/
.instagram-section {
    margin: 75px 0;
}
.instagram-section .container {
  opacity: 0;
  display: flex;
  justify-content: space-between;
  gap: 38px;
}
.instagram-section.ready .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.instagram-section .left {
  max-width: 346px;
}
.instagram-section .left h2 {
  font-size: 28px;
  margin: 0 0 15px;
}
.instagram-section .left p {
  margin: 0 0;
}
.instagram-section .grid {}

@media (max-width: 768px) {
  .instagram-section {
      margin: 10px 0;
  }
  .instagram-section .container  {
    flex-direction: column;
  }
}