.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  z-index: 100;
}
.nav__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .nav__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: block;
  flex-shrink: 0;
  width: 107px;
  height: 49px;
}
.nav__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
@media (min-width: 992px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 0;
  }
}
.nav__menu-item {
  padding: 10px;
}
.nav__menu-link {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: #303030;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__menu-link:hover {
  color: #00a5f7;
}
.nav__menu-link--active {
  color: #00a5f7;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 50px;
  background-color: #00a5f7;
  border-radius: 29.557px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  overflow: hidden;
}
.nav__cta:hover {
  background-color: rgb(0, 137.7449392713, 206.2);
  color: #ffffff;
}
.nav__phone {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: normal;
  color: #303030;
  text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover {
  color: #00a5f7;
}
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 992px) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #303030;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav--open .nav__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  gap: 8px;
}

.blog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
  color: #303030;
}
@media (min-width: 1200px) {
  .blog-hero {
    max-width: 369.034px;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: capitalize;
  color: #303030;
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .blog-hero__title {
    font-size: 73px;
    line-height: 95px;
  }
}
.blog-hero__subtitle {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #303030;
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .blog-hero__subtitle {
    font-size: 20px;
    line-height: 38px;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 0 0;
  min-width: 0;
}
.blog-card--featured {
  box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
}
@media (min-width: 992px) {
  .blog-card--fixed {
    height: 375px;
  }
}
.blog-card--tall {
  align-self: stretch;
}
.blog-card__image-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #ffffff;
  width: 100%;
  flex: 1 0 0;
  min-height: 0;
}
.blog-card--fixed .blog-card__image-wrap {
  flex: 1 0 0;
  border-radius: 4px;
}
.blog-card--tall .blog-card__image-wrap {
  flex: 0 0 auto;
  border-radius: 4px;
}
.blog-card__image {
  width: 100%;
  border-radius: 4px;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}
.blog-card--fixed .blog-card__image {
  flex: 1 0 0;
  min-height: 0;
  height: 100%;
  border-radius: 4px;
}
.blog-card--tall .blog-card__image {
  height: 321px;
  border-radius: 4px;
}
.blog-card--featured .blog-card__image {
  height: 238px;
  flex: none;
  border-radius: 4px;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  flex-shrink: 0;
}
.blog-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.blog-card--fixed .blog-card__meta, .blog-card--featured .blog-card__meta {
  height: 89px;
  border-radius: 4px;
}
.blog-card--tall .blog-card__meta {
  height: 62px;
  border-radius: 4px;
}
.blog-card__date {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  color: #303030;
  flex: 1 0 0;
  min-height: 0;
  margin: 0;
}
.blog-card__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
.blog-card__title {
  flex: 1 0 0;
  min-width: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 27px;
  color: #303030;
  margin: 0;
  text-decoration: none;
}
.blog-card__title:hover {
  color: #00a5f7;
}

.blog-card-h {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .blog-card-h {
    flex-direction: row;
  }
}
.blog-card-h__image-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 4px;
  background-color: #ffffff;
  flex-shrink: 0;
}
.blog-card-h__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
@media (min-width: 768px) {
  .blog-card-h__image {
    width: 269px;
    height: 201.75px;
  }
}
.blog-card-h__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  flex: 1 0 0;
  min-width: 0;
  align-self: stretch;
}
.blog-card-h__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.blog-card-h__date {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  height: 27px;
  color: #303030;
  width: 100%;
  margin: 0;
}
.blog-card-h__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
.blog-card-h__title {
  flex: 1 0 0;
  min-width: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 27px;
  color: #303030;
  margin: 0;
  text-decoration: none;
}
.blog-card-h__title:hover {
  color: #00a5f7;
}
.blog-card-h__excerpt {
  font-family: "Montserrat Arm", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  width: 100%;
  margin: 0;
  font-style: normal;
}

.blog-section {
  padding-top: 160px;
  padding-bottom: 120px;
}
.blog-section__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .blog-section__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.blog-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.blog-row-a {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 992px) {
  .blog-row-a {
    flex-wrap: nowrap;
  }
}
.blog-row-a .blog-card {
  flex: 1 0 100%;
}
@media (min-width: 576px) {
  .blog-row-a .blog-card {
    flex: 1 0 calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .blog-row-a .blog-card {
    flex: 1 0 0;
  }
}

.blog-row-b {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-row-b {
    flex-direction: row;
    justify-content: center;
  }
}
.blog-row-b__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-row-b__left {
    flex: 1 0 0;
    min-width: 0;
  }
}
.blog-row-b__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-row-b__right {
    flex: 1 0 0;
    min-width: 0;
    align-self: stretch;
  }
}
.blog-row-b__right .blog-card {
  height: 100%;
  align-self: stretch;
}

.blog-row-d {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-row-d {
    flex-direction: row;
    justify-content: center;
  }
}
.blog-row-d__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-row-d__left {
    flex: 1 0 0;
    min-width: 0;
    align-self: stretch;
  }
}
.blog-row-d__left .blog-card {
  height: 100%;
  align-self: stretch;
}
.blog-row-d__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-row-d__right {
    flex: 1 0 0;
    min-width: 0;
  }
}

.blog-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 50px;
  padding-right: 50px;
  background-color: #00a5f7;
  border-radius: 29.557px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.blog-show-more__label {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.blog-show-more:hover {
  background-color: rgb(0, 137.7449392713, 206.2);
}

.site-footer {
  position: relative;
  width: 100%;
  background-color: #303030;
}
@media (min-width: 992px) {
  .site-footer {
    height: 300.179px;
  }
}
.site-footer__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .site-footer__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.site-footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 40px;
  padding-bottom: 40px;
  height: 100%;
}
@media (min-width: 992px) {
  .site-footer__container {
    flex-direction: row;
    gap: 95px;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 992px) {
  .site-footer__brand {
    gap: 0;
  }
}
.site-footer__logo {
  display: block;
  width: 186.222px;
  height: 85.222px;
  flex-shrink: 0;
}
.site-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer__copyright {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .site-footer__copyright {
    margin-top: 127.43px;
  }
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 992px) {
  .site-footer__contact {
    gap: 0;
  }
}
.site-footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .site-footer__phone {
    margin-left: 36.66px;
  }
}
.site-footer__phone-icon {
  width: 20px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 992px) {
  .site-footer__phone-icon {
    position: absolute;
    left: 0;
  }
}
.site-footer__phone-text {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: normal;
  color: #ffffff;
  white-space: nowrap;
}
.site-footer__email {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .site-footer__email {
    margin-top: 35.31px;
    margin-left: 36.66px;
  }
}
.site-footer__email-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 992px) {
  .site-footer__email-icon {
    position: absolute;
    left: 0;
  }
}
.site-footer__email-text {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: normal;
  color: #ffffff;
  white-space: nowrap;
}
.site-footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .site-footer__social {
    gap: 0;
    position: relative;
    width: 108px;
  }
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 10px;
  background-color: #00a5f7;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.site-footer__social-link:hover {
  background-color: rgb(0, 137.7449392713, 206.2);
}
.site-footer__social-link--facebook {
  border-radius: 25px;
}
@media (min-width: 992px) {
  .site-footer__social-link--facebook {
    position: absolute;
    left: 0;
    top: 1.21px;
  }
}
.site-footer__social-link--instagram {
  border-radius: 32px;
}
@media (min-width: 992px) {
  .site-footer__social-link--instagram {
    position: absolute;
    left: 48.54px;
    top: 1.21px;
  }
}
.site-footer__social-link--linkedin {
  border-radius: 32px;
}
@media (min-width: 992px) {
  .site-footer__social-link--linkedin {
    position: absolute;
    left: 97.08px;
    top: 0;
  }
}
.site-footer__social-link img {
  display: block;
  max-width: 100%;
}
.site-footer__up-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  padding: 10px;
  background-color: #00a5f7;
  border-radius: 46px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s ease;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .site-footer__up-btn {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.site-footer__up-btn:hover {
  background-color: rgb(0, 137.7449392713, 206.2);
}
.site-footer__up-btn img {
  width: 14.306px;
  height: 19.499px;
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .ncm-blog-layout {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 30px !important;
  }
  .ncm-blog-main,
  .ncm-blog-content-item {
    width: 100% !important;
    min-width: 0 !important;
  }
  .ncm-blog-sidebar,
  .ncm-latest-list,
  .ncm-latest-card,
  .ncm-latest-card-body,
  .ncm-latest-card-img {
    width: 300px !important;
  }
  .ncm-latest-card-img {
    height: auto !important;
    padding: 14px 14px 0 !important;
    box-sizing: border-box !important;
  }
  .ncm-latest-card-img img {
    width: 272px !important;
    height: 190px !important;
    object-fit: cover !important;
  }
  .ncm-blog-hero-content {
    left: 40px !important;
    right: 40px !important;
    width: auto !important;
  }
  .ncm-blog-hero-content h1 {
    width: auto !important;
    font-size: 38px !important;
    line-height: 46px !important;
  }
}

/*# sourceMappingURL=blog.css.map */
