/* Read More */

.tvf-blog-internal {
    text-align: center;
    font-weight: 700;
    margin: 30px 0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    border: 2px solid #0070BA;
}

.tvf-blog-internal2 {
    text-align: left;
    font-weight: 700;
    margin: 30px 0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    border: 2px solid #0070BA;
}

.tvf-blog-internal3 {
    text-align: left;
    font-weight: 700;
    margin: 30px 0;
}

.hover-underline {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Read More */

/* Blog Call To Action & Highlights */

.tvf-box-cta2 {
		box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 30px 0;
    padding: 40px 30px;
    border-radius: 20px;
}

.tvf-box-cta {
    box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px;
    margin: 30px 0;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #0070BA;
}

.tvf-box-cta #title {
    font-size: 22px !important;
    font-weight: 700 !important;
}

.tvf-cta-btn {
		font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    border: 2px;
    min-height: 50px;
    width: 30%;
    margin: auto;
    background-color: #0070BA;
    color: #ffff;
}

.tvf-cta-btn:hover {
		font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    border: 2px;
    min-height: 50px;
    width: 30%;
    margin: auto;
    color: #494141;
    background-color: #FFC200;
}

@media only screen and (max-width: 768px) {
  .tvf-cta-btn {
			min-height: 45px;
			width: 100%;
			margin-top: 10px;
		}
}

/* Blog Call To Action & Highlights */