

/*#================================================================================================
OVERIDES
================================================================================================*/
#default_hero, #breadcrumbs{
    display: none;
}

/* ===============================================================================================
SECTION 1
===============================================================================================*/

#section1 {
    padding: 50px 0;
    position: relative;
    z-index: 2;
    background-size: cover;
    background: #1A1A1A;
}
#section1 h1 {
    color: #fff;
}
#section1 p {
    color: #fff;
}

/* ===============================================================================================
SECTION 2
===============================================================================================*/



.post {
  margin: 0 0 20px;
}
.post a {
  display: flex;
}
.post a .left {
  width: 50%;
  height: 100%;
  position: relative;
}
.post a .left img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0;
}
.post a .right {
  width: 50%;
  height: 350px;
  background: #F9F9F9;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post a .right h2 {
  font-size: 23px;
  font-weight: 600;
  line-height: 32px;
}

.pag {
  display: flex;
  justify-content: center;
  width: 100%;
}
.pag a {
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #9B9B9B;
  border-radius: 2px;
  margin: 0 5px;
  color: #000000;
  font-weight: 600;
}
.pag .current {
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #9B9B9B;
  border-radius: 2px;
  background: #1A1A1A;
  color: #fff;
}
.pag .next {
  display: none;
}


/* ===============================================================================================
RESPONSIVE
===============================================================================================*/

@media(max-width: 1200px){
  .post a {
    flex-direction: column;
  }
  .post a .left {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .post a .left img {
    width: 100%;
    height: 350px;
  }
  .post a .right {
    width: 100%;
    height: 350px;
    padding: 30px;
  }
}