:root {
  --main-color: #3eb595;
  --black-color: #443e3e;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--black-color);
}

.section-heading {
  margin-bottom: 25px;
}

.section-heading__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0;
}

.section-heading__subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 0;
}

.page-navigation {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-navigation__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
  padding: 5px;
  text-decoration: none;
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-navigation__button:hover {
  color: var(--main-color);
}

.page-navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 10px;
}

.page-navigation__list-item {
  margin: 5px;
  list-style: none;
}

.page-navigation__list-link {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-navigation__list-link.active {
  background: var(--main-color);
  color: #fff;
}

.page-navigation__list-link:hover {
  background: var(--main-color);
  color: #fff;
}

.blog-section {
  position: relative;
  padding-bottom: 100px;
}

.blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px 20px;
  padding: 0;
}

.blog-tags__item {
  list-style: none;
  margin: 10px 15px;
}

.blog-tags__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #DDE0E2;
  color: var(--main-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-tags__link:hover {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.blog-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}

.blog-cards__item {
  width: calc(25% - 40px);
  margin: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-cards__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: #D9D9D9;
  height: 240px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.blog-cards__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-duration: 0.6s;
       -o-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.blog-cards__image:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-cards__title {
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-cards__title:hover {
  color: var(--main-color);
}

.blog-cards__subtitle {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.blog-cards__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}

.blog-cards__date {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.blog-cards__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-cards__time-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}

.blog-cards__time-text {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.cta-section {
  position: relative;
  padding-bottom: 100px;
}

.cta-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1019607843);
  border-radius: 9px;
  padding: 50px 100px;
}

.cta-body__heading {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.cta-body .row {
  margin-bottom: 20px;
}

.cta-body .row:last-child {
  margin-bottom: 0;
}

.cta-body input,
.cta-body textarea {
  padding: 16px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cta-body input::-webkit-input-placeholder, .cta-body textarea::-webkit-input-placeholder {
  color: #ccc;
}

.cta-body input::-moz-placeholder, .cta-body textarea::-moz-placeholder {
  color: #ccc;
}

.cta-body input:-ms-input-placeholder, .cta-body textarea:-ms-input-placeholder {
  color: #ccc;
}

.cta-body input::-ms-input-placeholder, .cta-body textarea::-ms-input-placeholder {
  color: #ccc;
}

.cta-body input::placeholder,
.cta-body textarea::placeholder {
  color: #ccc;
}

.cta-body input:focus,
.cta-body textarea:focus {
  border-color: var(--main-color);
  -webkit-box-shadow: 0 0 0 1px var(--main-color);
          box-shadow: 0 0 0 1px var(--main-color);
}

.cta-body input {
  width: 100%;
  max-width: 100%;
}

.cta-body input[type=checkbox] {
  width: auto;
}

.cta-body input[type=submit] {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.cta-body input[type=submit]:hover {
  background: var(--black-color);
  border-color: var(--black-color);
}

.cta-body textarea {
  width: 100%;
  max-width: 100%;
  height: 80px;
}

.single-section {
  position: relative;
  padding-bottom: 100px;
}

.single-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.single-post__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.single-post__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}

.single-post__author-image {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  border-radius: 250px;
  margin-right: 20px;
}

.single-post__author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post__author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single-post__author-name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.single-post__author-desc {
  color: #767676;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.single-post__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-post__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}

.single-post__time-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 10px;
}

.single-post__time-text {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.single-post__date {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.single-post__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
  min-height: 300px;
  max-height: 400px;
}

.single-post__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single-post__content p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 20px 0;
}

.single-post__content h2 {
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 10px 0 20px;
}

.single-post__content ul {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 20px 0;
}

.single-post__content img {
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
  margin: 30px 0;
}

.recent-posts {
  position: relative;
  padding-bottom: 100px;
}

@media all and (max-width: 1400px) {
  .blog-cards__image {
    height: 180px;
  }
}

@media all and (max-width: 1200px) {
  .blog-cards__item {
    width: calc(33.33% - 40px);
  }

  .section-heading__title {
    font-size: 35px;
  }

  .blog-cards__item {
    width: calc(33.33% - 40px);
  }

  .single-post__thumbnail {
    min-height: 200px;
    max-height: 300px;
  }

  .single-post__content img {
    max-height: 350px;
  }
}

@media all and (max-width: 991px) {
  .blog-cards__item {
    width: calc(50% - 40px);
    margin: 30px 20px;
  }

  .blog-section {
    padding-bottom: 70px;
  }

  .cta-body {
    padding: 50px;
  }

  .cta-body .row {
    margin-bottom: 0;
  }

  .cta-body input,
  .cta-body textarea {
    margin: 10px 0;
  }

  .cta-body__heading {
    font-size: 25px;
  }

  .cta-section {
    padding-bottom: 70px;
  }

  .single-section {
    padding-bottom: 70px;
  }
}

@media all and (max-width: 768px) {
  .section-heading__title {
    font-size: 25px;
    line-height: 32px;
  }

  .blog-tags__item {
    margin: 5px;
  }

  .blog-tags {
    margin: 0 -5px 20px;
  }

  .cta-body__heading {
    font-size: 20px;
    line-height: 25px;
  }

  .cta-body {
    padding: 40px;
  }

  .single-section {
    padding-bottom: 70px;
  }

  .single-post__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .single-post__info {
    margin-top: 20px;
  }

  .single-post__thumbnail {
    max-height: 280px;
    margin-bottom: 20px;
  }

  .single-post__content p {
    font-size: 18px;
  }

  .single-post__content ul {
    font-size: 18px;
  }

  .single-post__content img {
    max-height: 280px;
  }
}

@media all and (max-width: 575px) {
  .section-heading__title {
    font-size: 20px;
    line-height: 26px;
  }

  .blog-cards__item {
    width: calc(100% - 40px);
    margin: 20px;
  }

  .page-navigation__button {
    font-size: 14px;
  }

  .page-navigation__list {
    padding: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .blog-section {
    padding-bottom: 50px;
  }

  .cta-section {
    padding-bottom: 50px;
  }

  .cta-body {
    padding: 20px;
  }

  .cta-body__heading {
    margin-bottom: 15px;
  }

  .single-section {
    padding-bottom: 50px;
  }
}

.nav-links {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 10px;
}
.page-numbers {
	width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: var(--black-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    border-radius: 4px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	margin: 5px;
}
.page-numbers:hover {
	background: var(--main-color);
    color: #fff;
}
.page-numbers.current {
	background: var(--main-color);
    color: #fff;
}

.blog-cards__excerpt {
	margin-bottom: 25px;
}
.blog-cards__excerpt p {
	margin: 0;
}

.section-heading__title {
	margin-top: 0;
}

@media (min-width: 992px) {
	.single-section .container {
		max-width: 800px;
	}
}
