/* Background gradient and subtle grid pattern */
body {
  font-family: Inter, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #110e38;
  background-color: #f2f6ff;
}
section {
  padding: 96px 0;
}
@media only screen and (max-width: 576px) {
  section {
    padding: 30px 0;
  }
}
/* footer */
footer {
  background: linear-gradient(90deg, #1495a7 0%, #003687 167%);
}

a {
  text-decoration: none;
  color: #110e38;
  transition: all 0.35s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Inter, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

@keyframes pan-background {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #1495a7 0%, #003687 167%);
  border: none;
}

.btn-secondary {
  color: #110e38;
  background: #fff;
  border: none;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .hero-title {
    font-size: 58px;
    line-height: 1.2;
    margin: 0 0 24px;
  }
}
.hero-left {
  padding-right: 20px;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-right,
  .hero-left {
    width: 100%;
  }
}

.hero-right {
  position: relative;
}
.hero-image {
  position: relative;
  z-index: 10;
  width: 480px;
  height: 520px;
  margin-left: auto;
}
.hero-image img {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: 60px;
  object-fit: cover;
  user-select: none;
  box-shadow: 0 100px 80px #1495a712, 0 41.7776px 33.4221px #1495a70d,
    0 22.3363px 17.869px #1495a70b, 0 12.5216px 10.0172px #1495a709,
    0 6.6501px 5.32008px #1495a707, 0 2.76726px 2.21381px #1495a705;
  transition: inherit;
  background: #d5dce3;
}
@media only screen and (max-width: 1130px) {
  .hero-right .hero-image {
    width: 400px;
    height: 420px;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-right .hero-image {
    width: 340px;
    height: 360px;
  }
}

@media only screen and (max-width: 768px) {
  .hero-right {
    order: -1;
  }

  .hero-right .hero-image {
    width: 100%;
    height: 380px;
    margin-bottom: 40px;
  }

  .hero-right .hero-image:before {
    border-radius: 30px;
  }

  .hero-right .hero-image img {
    border-radius: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .hero-right .hero-image {
    height: 280px;
    margin-bottom: 32px;
  }

  .hero-right .hero-image:before {
    border-radius: 16px;
  }

  .hero-right .hero-image img {
    border-radius: 16px;
    box-shadow: none;
  }
}
.hero-btn {
  display: flex;
  align-items: center;
}
.cta-btn {
  padding: 12px 32px;
  font-size: 16px;
  margin-right: 8px;
}
.section__info {
  margin-bottom: 60px;
}

.section__info .section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section__info .section__head .section__title {
  margin: 0;
  font-size: 32px;
  line-height: 1;
}

.section__info .section__head .section__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

.section__info .section__head .section__link:hover {
  color: #110e38;
}

.section__info .section__head .section__link:hover i {
  transform: translate(2px);
}

.section__info .section__head .section__link i {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 2px #0000;
  background: #fff;
  transition: 0.2s;
}

.section__info .section__description {
  max-width: 480px;
  line-height: 1.6;
  margin: 32px 0 0;
}
@media only screen and (max-width: 1024px) {
  .section__info .section__description {
    max-width: 100%;
  }
}

.section__info .section__description p {
  margin: 0;
}

.card {
  transform: translate(0px);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 2px;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.image_wrap {
  background: rgb(255, 255, 255);
}
.card-body {
  border-radius: 16px 16px 0px 0px;
  background: white;

  p {
    line-height: 1.6;
    font-size: 15px;
  }
}
/* Navbar and header styles */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e5e7eb;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
/* BLOG-POST PAGE */
.post-image {
  position: relative;
  transform: translate(0);
  padding-top: 100%;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #d5dce3;
}
.post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}
.post__info {
  margin-left: 40px;
}
@media only screen and (max-width: 1024px) {
  .post__info {
    margin-left: 0;
  }
}

.post-categories {
  display: flex;
}

.post-categories .post-categories__category {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px 4px 0;
  font-size: 12px;
  line-height: 10px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #1495a7 0%, #003687 167%);
}
.post__title {
  margin: 20px 0;
  font-size: 58px;
  line-height: 1.2;
}
@media only screen and (max-width: 576px) {
  .post__title {
    font-size: 32px;
  }
}

.post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post__meta .post__author-image {
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: 8px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #d5dce3;
}
.post__meta .post__author-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  user-select: none;
}
.post__meta .post__meta-bottom {
  display: flex;
  flex-direction: column;
}
.post__meta .post__author {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.post__meta .post__date {
  font-size: 12px;
  line-height: 14px;
}
.post {
  max-width: 780px;
  margin: 0 auto 60px;
}
