@import url("https://fonts.googleapis.com/css2?family=Cabin&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
}

div {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.padding-section {
  padding: 0 20vw;
}

.button {
  padding: 14px 40px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.button:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #e60a80;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

#title-section {
  width: 100%;
  padding-top: 265px;
  padding-bottom: 265px;
  background-image: url("../img/pattern-15.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: -2;
}

#title-section .title {
  font-family: "Quicksand", sans-serif;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.3em;
  font-weight: 700;
  margin: 0;
}

#title-section .overlay {
  width: 60%;
  height: 100%;
  position: absolute;
  margin: 0 20%;
  top: 0;
  left: 0;
  z-index: -1;
}

#title-section .overlay .icon-one {
  position: absolute;
  left: 6%;
  top: 35%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
  -webkit-animation: 3s zoom-fade linear infinite;
          animation: 3s zoom-fade linear infinite;
}

#title-section .overlay .icon-two {
  position: absolute;
  left: 6%;
  top: 65%;
  width: 91px;
  height: 99px;
  background-repeat: no-repeat;
  -webkit-animation: 3s left-right linear infinite;
          animation: 3s left-right linear infinite;
}

#title-section .overlay .icon-three {
  position: absolute;
  left: 26%;
  top: 35%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
}

#title-section .overlay .icon-four {
  position: absolute;
  left: 48%;
  top: 35%;
  width: 101px;
  height: 101px;
  background-repeat: no-repeat;
  -webkit-animation: 3s zoom-fade linear infinite;
          animation: 3s zoom-fade linear infinite;
}

#title-section .overlay .icon-five {
  position: absolute;
  left: 48%;
  top: 65%;
  width: 64px;
  height: 60px;
  background-repeat: no-repeat;
  -webkit-animation: 15s rotate linear infinite;
          animation: 15s rotate linear infinite;
}

#title-section .overlay .icon-six {
  position: absolute;
  right: 3%;
  top: 25%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
  -webkit-animation: 3s left-right linear infinite;
          animation: 3s left-right linear infinite;
}

#posts-section {
  width: 100%;
}

#posts-section .card {
  width: 30%;
  height: 410px;
  margin: 1.6%;
  -webkit-box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
  margin-bottom: 20px;
  position: relative;
}

#posts-section .card > a > img {
  width: 100%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#posts-section .card .text {
  width: 100%;
  padding: 25px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}

#posts-section .card .text h6 {
  font-weight: 600;
  text-align: center;
  line-height: 1.6em;
  margin: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#posts-section .card .text h6 a {
  text-decoration: none;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#posts-section .card .text h6 a:hover {
  color: #0400b5;
}

#posts-section .card .text span {
  position: relative;
  color: #222222;
  font-size: 14px;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d6d6d6;
  font-family: 'Cabin', sans-serif;
  width: 100%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
}

@keyframes left-right {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@media (max-width: 1450px) {
  .padding-section {
    padding: 0 10vw;
  }
  #title-section .overlay {
    width: 80%;
    margin: 0 10%;
  }
}

@media (max-width: 1000px) {
  .padding-section {
    padding: 0 3vw;
  }
  #title-section .overlay {
    width: 94%;
    margin: 0 3%;
  }
}

@media (max-width: 900px) {
  #title-section {
    padding: 140px 0px 225px;
  }
  #title-section .title {
    font-size: 28px;
  }
  #posts-section .card {
    width: 48%;
    margin: 1%;
  }
}

@media (max-width: 600px) {
  #posts-section .card {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=blog.css.map */