.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6,
.blog-content img {
    margin-bottom: 30px !important;
    color: var(--black-color);
    font-family: 'Times New Roman';
}

/* Regular Times New Roman */
@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/times-new-roman/TimesNewRoman-Regular.eot');
    src: local('Times New Roman Regular'), local('TimesNewRoman-Regular'),
         url('../fonts/times-new-roman/TimesNewRoman-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/times-new-roman/TimesNewRoman-Regular.woff2') format('woff2'),
         url('../fonts/times-new-roman/TimesNewRoman-Regular.woff') format('woff'),
         url('../fonts/times-new-roman/TimesNewRoman-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Italic Times New Roman */
@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/times-new-roman/TimesNewRoman-Italic.eot');
    src: local('Times New Roman Italic'), local('TimesNewRoman-Italic'),
         url('../fonts/times-new-roman/TimesNewRoman-Italic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/times-new-roman/TimesNewRoman-Italic.woff2') format('woff2'),
         url('../fonts/times-new-roman/TimesNewRoman-Italic.woff') format('woff'),
         url('../fonts/times-new-roman/TimesNewRoman-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Bold Times New Roman */
@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/times-new-roman/TimesNewRoman-Bold.eot');
    src: local('Times New Roman Bold'), local('TimesNewRoman-Bold'),
         url('../fonts/times-new-roman/TimesNewRoman-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/times-new-roman/TimesNewRoman-Bold.woff2') format('woff2'),
         url('../fonts/times-new-roman/TimesNewRoman-Bold.woff') format('woff'),
         url('../fonts/times-new-roman/TimesNewRoman-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.blog-intro,
.blog-intro h1,
.blog-intro .h1,
.blog-intro h2,
.blog-intro .h2,
.blog-intro h3,
.blog-intro .h3,
.blog-intro h4,
.blog-intro .h4,
.blog-intro h5,
.blog-intro .h5,
.blog-intro h6,
.blog-intro .h6,
.blog-intro p,
.blog-intro ul,
.blog-intro li,
.blog-intro a {
    font-family: 'Times New Roman' !important;
}

  

/* Links */

.link {
    color: var(--black-color);
    transition: all 0.3s
}

.breadcrumb a:hover,
.link:hover,
.title-wrap:hover,
.table-list li a:hover,
.breadcrumb .active-link,
.active-link {
    color: var(--theme-primary) !important;
}

/* Blog Top */

.blog-wrapper {
    background-color: var(--theme-secondary);
    padding: 50px 50px;
    text-align: center;
}

.blog-wrapper .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    color: var(--black-color);
}

.breadcrumb i {
    font-size: 18px;
}

.breadcrumb a {
    color: var(--text-grey) !important;
    transition: all 0.3s
}

.blog-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.blog-img {
    width: 100%;
    max-width: 90%;
    margin-inline: auto;
}

.blog-img img,
.blog-content img {
    width: 100%;
    object-fit: cover;
}

.blog-content {
    color: var(--text-grey) !important;
}

/* Table */

.table-content {
    background: #DFF3FC;
    padding: 20px 20px;
    position: sticky;
    top: 180px;
}

.table-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.table-list li a {
    color: var(--black-color);
    transition: all 0.3s;
}

/* Form Block */

.sticky-block {
    position: sticky;
    top: 180px;
}

.blog-form .iti__country-list {
    width: 300px !important;
}

.iti.iti--allow-dropdown {
    width: 100% !important;
}

.blog-form {
    padding: 15px;
    background-color: var(--theme-secondary);
}

.blog-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-blk {
    width: 100%;
}

.input-blk input, .input-blk textarea {
    width: 100%;
    border: 1px solid #D4D6D8;
    background-color: var(--white-color);
    padding: 14px 20px;
    border-radius: 10px;
}

.input-blk textarea {
    width: 100%;
    border: 1px solid #D4D6D8;
    background-color: var(--white-color);
    padding: 14px 20px;
    border-radius: 10px;
    resize: none;
}

.input-blk input:focus, 
.input-blk textarea:focus {
    outline: none;
    box-shadow: unset;
}

/* Latest Blog */

.blog-resource-block {
    background-color: var(--white-color);
    border-radius: var(--radius-20);
    transition: all 0.3s;
    padding: 25px 25px;
    width: 100%;
    height: 100%;
}

.blog-resource-block:hover {
    transform: translateY(-4px);
}

.blog-resource-image {
    width: 100%;
    height: 250px;
}

.blog-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-resource-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-resource-block .read-btn {
    color: var(--text-black);
    padding: 0 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.blog-resource-block .read-btn:hover {
    color: var(--theme-primary);
}

.blog-resource-block .read-btn:hover svg path {
    fill: var(--theme-primary);
}


/* Author Block */

.author-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px;
    margin: 0 0 30px;
}

.author-wrapper .share-link {
    justify-content: flex-start;
}

.post-author {
    width: 100%;
    max-width: 70px;
    height: 70px;
    border-radius: 50%;
}

.post-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {

    body {
        font-size: 17px;
    }

    .author-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-cta,
    .blog-wrapper {
        padding: 40px 20px;
    }

    .sticky-wrapper,
    .author-wrapper {
        padding: 20px;
    }
}
