* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'PT Root UI';
    font-style: normal;
    font-weight: 300;
    src: url('/rescue/fonts/PTRootUI-Light.woff2') format('woff2'),
    url('/rescue/fonts/PTRootUI-Light.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'PT Root UI';
    font-style: normal;
    font-weight: 400;
    src: url('/rescue/fonts/PTRootUI-Regular.woff2') format('woff2'),
    url('/rescue/fonts/PTRootUI-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'PT Root UI';
    font-style: normal;
    font-weight: 500;
    src: url('/rescue/fonts/PTRootUI-Medium.woff2') format('woff2'),
    url('/rescue/fonts/PTRootUI-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'PT Root UI';
    font-style: normal;
    font-weight: 700;
    src: url('/rescue/fonts/PTRootUI-Bold.woff2') format('woff2'),
    url('/rescue/fonts/PTRootUI-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    font-weight: 300;
    font-style: normal;
    src: url('/rescue/fonts/Oswald-Light.woff2') format('woff2'),
    url('/rescue/fonts/Oswald-Light.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    font-weight: 400;
    font-style: normal;
    src: url('/rescue/fonts/Oswald-Regular.woff2') format('woff2'),
    url('/rescue/fonts/Oswald-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    font-weight: 500;
    font-style: normal;
    src: url('/rescue/fonts/Oswald-Medium.woff2') format('woff2'),
    url('/rescue/fonts/Oswald-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    font-weight: 600;
    font-style: normal;
    src: url('/rescue/fonts/Oswald-SemiBold.woff2') format('woff2'),
    url('/rescue/fonts/Oswald-SemiBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    font-weight: 700;
    font-style: normal;
    src: url('/rescue/fonts/Oswald-Bold.woff2') format('woff2'),
    url('/rescue/fonts/Oswald-Bold.woff') format('woff');
    font-display: swap;
}

body {
    font-family: 'PT Root UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #004B92;
    font-size: 18px;
    line-height: 1.4;
    background-color: #F2F6FA;
}

img {
    display: block;
}

h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -0.5px;
}

h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

.container {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

header {
    padding: 20px 0;
    z-index: 3;
    position: relative;
    background-color: #004B92;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {

}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a, nav span.current {
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    font-family: 'Oswald', sans-serif;
    padding-bottom: 3px;
}

nav a:hover, nav span.current  {
    border-bottom: 2px solid white;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.about {
    padding: 50px 0;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 24px;
}

.video-section {
    padding: 50px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}

.section-header:after {
    content: '';
    display: block;
    border-top: 1px solid #CFE0FF;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
}

.view-all {
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #004B92;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:after {
    content: '〉';
    color: #004B92;
    font-size: 13px;
    font-weight: 700;
}

.view-all:hover {
    opacity: 0.7;
}

.carousel-container {
    position: relative;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.video-card {
    flex: 0 0 calc(33.333% - 14px);
    position: relative;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.video-duration {
    align-self: flex-end;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #2D5F8D;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-title {
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-nav:hover {
    background: #f0f0f0;
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

.carousel-nav::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.carousel-nav.prev::before {
    border-right: 12px solid #2D5F8D;
    margin-right: 2px;
}

.carousel-nav.next::before {
    border-left: 12px solid #2D5F8D;
    margin-left: 2px;
}

.interview-section {
    padding: 50px 0 80px;
}

.interview-grid {
    display: flex;
    gap: 24px;
}

.star-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    font-size: 24px;
    margin: 0 64px;
    color: #004B92;
}

.star-divider .star {
    display: inline-block;
    background-color: #F2F6FA;
    padding: 0 30px;
    z-index: 1;
}

.star-divider:after {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 1px solid #004B92;
}

.top-star-divider {
    display: none;
}

.info-section {
    padding: 80px 0;
}

.info-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 50px;
}

.info-grid-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.btn-primary {
    display: inline-block;
    background: #D52A1D;
    color: white;
    padding: 12px 24px 14px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background 0.3s;
    font-family: 'Oswald', sans-serif;
}

.btn-primary:hover {
    background: #AE1A0F;
}

.view-all-materials {
    text-align: center;
}

.view-all-interview {
    display: none;
}

.view-all-video {
    display: none;
}

footer {
    background-color: #556E9D;
    background-image: url("/rescue/imgs/footer.svg");
    background-position: top right;
        background-size: cover;
    padding: 50px 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info {
    font-size: 14px;
    line-height: 16px;
    opacity: 0.5;
    max-width: 460px;
    padding: 10px 0 20px;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-nav a, .footer-nav span.current {
    color: white;
    text-decoration: none;
    font-family: 'PT Root UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: none;
    font-size: 18px;
    line-height: 24px;
}

.footer-copyright {
    padding: 20px 0 0;
    font-size: 14px;
    line-height: 16px;
    border-top: 1px solid #556E9D;
}

.mobile-menu-btn {
    display: none;
    background-color: none;
    border: none;
    color: white;
    font-size: 0px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background-image: url("/rescue/imgs/icon-button.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.mobile-menu-btn.close {
    background-image: url("/rescue/imgs/icon-close.svg");
}

.mainpage header {
    height: 532px;
    background-size: cover;
    background-image: url("/rescue/imgs/header.svg");
    background-position: center top;
}

.mainpage h1 {
    font-size: 78px;
    line-height: 84px;
}

.category .info-section {
    padding: 20px 0 80px;
}

.category-title {
    margin: 40px 0;
}

.breadcrumbs {
    font-size: 14px;
    line-height: 18px;
    margin-top: 16px;
    color: #556E9D;
}

.breadcrumbs a {
    color: #556E9D;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
}

.pagination-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #222;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 28px;
    transition: background 0.3s;
}

.pagination-link.current {
    color: #004B92;
}

.pagination-link:hover {
    background: #DDEBF8;
}

.pagination-arrow {
    font-size: 30px;
    padding-bottom: 6px;
}

.single {
    background-color: #fff;
}

.single h1 {
    margin-bottom: 64px;
}

.single h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    margin: 40px 0 24px;
}

.single h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 40px 0 24px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.single h4 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin: 40px 0 24px;
    font-family: 'Oswald', sans-serif;
  
}

.single-materials {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 40px 64px 80px;
}

.single-container {
    max-width: 860px;
    margin: 0 auto;
}

.single-container p, .single-container ul {
    color: #222;
    margin: 16px 0;
}

.single-container ul {
    list-style: none;
}

.single-container ul li {
    margin: 8px 0;
}

.single-container ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #004B92;
    margin: 0 16px 0;
    position: relative;
    top: -2px;
}

.single-container ul li ul {
    padding-left: 36px;
}

.single-container ul li ul li:before {
    content: '—';
    width: unset;
    height: unset;
    background-color: unset;
    margin-right: 10px;
}

.single-container img {
    margin: 40px 0;
    width: 100%;
    height: auto;
}

.single-container a {
    color: #004B92;
}

.single-container a:hover {
    color: #1D6CB7;
}

.single-container .description {
    color: #004B92;
    font-size: 32px;
    line-height: 40px;
    font-family: 'Oswald', sans-serif;
    margin: 64px 0;
}

.single-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
}

.faq {
    background-color: #F2F6FA;
    border-left: 4px solid #004B92;
    padding: 40px;
    margin: 24px 0;
}

.faq h4 {
    margin: 0 0 24px;
}

.faq h4:before {
    content: url("/rescue/imgs/icon-faq.svg");
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    top: 6px;
    margin-right: 15px;
}

.faq {
    background-color: #F2F6FA;
    border-left: 4px solid #004B92;
    padding: 40px;
    margin: 24px 0;
}

.caption {
    margin: -30px 0 40px !important;
    color: #556E9D !important;
    font-size: 16px;
    line-height: 22px;
}

.quote {
    position: relative;
    background-color: #F2F6FA;
    padding: 40px 40px 40px 100px;
    margin: 24px 0;
}

.quote p {
    font-size: 32px;
    line-height: 40px;
    color: #004B92;
    font-family: 'Oswald', sans-serif;
    margin-top: 0;
}

.quote:before {
    content: url("/rescue/imgs/icon-quote.svg");
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40px;
    left: 40px;
}

.quote-author {
    font-size: 18px;
    line-height: 24px;
    color: #222;
}

.toc {
    max-width: 320px;
}

.toc-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Oswald', sans-serif;
    display: block;
}

.toc ul {
    list-style: none;
}

.toc a {
    color: #004B92;
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    display: block;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.toc a:hover {
    background-color: #F2F6FA;
}

.single2 .category-header:before {
    content: '';
    display: block;
    width: 100%;
    height: 650px;
    position: relative;
    top: 0;
    z-index: -1;
    position: absolute;
    background-color: #004B92;
}

.single2 h1 {
    color: #fff;
    text-align: center;
}

.single2 .breadcrumbs {
    color: #fff !important;
    opacity: 0.5;
}

.single2 .breadcrumbs a {
    color: #fff !important;
}

.post-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
}

.post-info span {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-right: 16px;
}

.post-info span::after {
    content: url(/rescue/imgs/icon-line.svg);
    margin-left: 16px;
}

.post-info span:last-child {
    margin-right: 0;
}

.post-info span:last-child::after {
    content: none;
}

.post-video {
    background-color: #fff;
    color: #004B92;
    text-decoration: underline;
    padding: 6px 12px 8px;
    border-radius: 32px;
}

.post-video::before {
    content: '';
    margin-right: 8px;
    background-image: url(/rescue/imgs/icon-video.svg);
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
}

.post-video a:hover {
    text-decoration: none;
}

.post01 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: white;
    width: 50%;
    display: flex;
    justify-content: center;
    max-height: 584px;
}

.post01-image {
    width: 100%;
    height: auto;
}

.post01 img {
    width: 100%;
    transition: 300ms;
}

.post01-text {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.post01-title {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 48px;
}

.post01-buttons {
    display: flex;
    justify-content: space-between;
}

.post01-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.post01-link {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post01-link:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.post01-link:after {
    content: '〉';
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.post01:hover {
    box-shadow: 0px 16px 24px 0px rgba(16, 60, 118, 0.1);
}

.post01:hover img {
    transform: scale(1.05);
}

.post01:hover  .post01-link {
    opacity: 0.8;
}

.post02 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: white;
    width: 100%;
    display: flex;
    justify-content: center;
    max-height: 280px;
}

.post02-image {
    width: 100%;
    height: auto;
}

.post02 img {
    width: 100%;
    transition: 300ms;
}

.post02-text {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 300ms;
}

.post02-title {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 28px;
}

.post02-time {
    font-size: 14px;
    margin-bottom: 16px;
    color: #fff;
    background-color: #222;
    padding: 2px 8px;
    opacity: 0.5;
    position: absolute;
    top: 24px;
    right: 24px;
    border-radius: 10px;;
}

.post02-buttons {
    display: flex;
    justify-content: space-between;
}

.post02-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.post02-link {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post02-link:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.post02-link:after {
    content: '〉';
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.post02:hover {
    box-shadow: 0px 16px 24px 0px rgba(16, 60, 118, 0.1);
}

.post02:hover img {
    transform: scale(1.05);
}

.post02:hover  .post02-link {
    opacity: 0.8;
}

.post03 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: white;
    display: flex;
}

.post03-image {
    width: 340px;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: none;
    position: relative;
}

.post03-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.post03 img {
    width: 100%;
    height: auto;
    transition: 300ms;
}

.post03-text {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.post03-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-right: auto;
    color: white;
}

.post03-title {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 24px;
    margin: 24px 0 16px;
}

.post03-excerpt {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
}

.post03-link {
    color: #004B92;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.post03-link:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.post03-link:after {
    content: '〉';
    color: #004B92;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.post03:hover .post03-title {
    color: #1D6CB7;
}

.post03:hover .post03-link {
    color: #1D6CB7;
}

.post03:hover .post03-link:after {
    color: #1D6CB7;
}

.post03:hover img {
    transform: scale(1.05);
}

.post03:hover .post03-image:after {
    background: linear-gradient(0deg, rgba(0, 75, 146, 0.7) 0%, rgba(0, 75, 146, 0) 70%);
}

.post05 {
    width: 32%;
    position: relative;
    background: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.post05-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Oswald', sans-serif;
}

.post05 p {
    color: #556E9D;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}

.post05-link {
    color: #004B92;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    margin-left: auto;
}

.post05-link:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.post05-link:after {
    content: '〉';
    color: #004B92;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.post05-link:hover {
    color: #1D6CB7;
}

.post05:hover {
    box-shadow: 0px 16px 24px 0px rgba(16, 60, 118, 0.1);
}

.post05:hover .post05-title {
    color: #1D6CB7;
}

.post05:hover  .post05-link {
    color: #1D6CB7;
}

.category-video .post02 {
    width: 32%;
}

.category-video .post02-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
}

.category-video .post02-title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.category-video .post02:hover .post02-text {
    background: linear-gradient(0deg, rgba(0, 75, 146, 0.7) 0%, rgba(0, 75, 146, 0) 70%);
}

.category-video .post02:hover .post02-text:after {
    content: url(/rescue/imgs/icon-play.svg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-infographic .category-header .category-title {
    max-width: 1024px;
    margin: 40px auto;
}

.category-infographic .info-section .container {
    max-width: 1024px;
}

.category-infographic .post02 {
    max-width: 500px;
    min-height: 330px;
}

.category-infographic .post02-title {
    text-align: center;
}

.category-infographic .post02:hover .post02-text {
    background: linear-gradient(0deg, rgba(0, 75, 146, 0.7) 0%, rgba(0, 75, 146, 0) 70%);
}

.category-interview .category-header .category-title {
    max-width: 1024px;
    margin: 40px auto;
}

.category-interview .info-section .container {
    max-width: 1024px;
}

.category-interview .post01 {
    width: 100%;
    max-height: 580px;
}

.category-interview .post01:hover .post01-text {
    background: linear-gradient(0deg, rgba(0, 75, 146, 0.7) 0%, rgba(0, 75, 146, 0) 70%);
}

.category-interview .post02 {
    max-width: 500px;
    min-height: 330px;
}

.category-interview .post02:hover .post02-text {
    background: linear-gradient(0deg, rgba(0, 75, 146, 0.7) 0%, rgba(0, 75, 146, 0) 70%);
}

.perelink-section {
    background-color: #F2F6FA;
    padding: 64px 0 80px;
}

.perelink-title {
    display: block;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 40px;
}

.perelink-grid {
    display: flex;
    gap: 24px;
}

.perelink-grid .post01 {
    width: 66%;
}

.perelink-grid-inner {
    width: 33%;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.interview-section .post01 title {
    
}

.interview-section .post03 {
    width: 25%;
    flex-direction: column;
}

.video-section .post02 {
    max-width: 500px;
    min-height: 0;
    max-height: none;
}

.video-section .post02 > div:first-child {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-section .post02 > div:first-child img {
    height: 100%;
    object-fit: cover;
}

.video-section .post02-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
}

.itc-slider-item {
    padding-right: 24px;

}

.itc-slider-item .post02-text {
    margin-right: 24px;
}

.itc-slider .post02-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
}

.itc-slider .post02-title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.itc-slider .post02:hover .post02-text {
    background: linear-gradient(0deg, rgba(0, 75, 146, 0.7) 0%, rgba(0, 75, 146, 0) 70%);
}

.itc-slider .post02:hover .post02-text:after {
    content: url(/rescue/imgs/icon-play.svg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itc-slider .post02:hover img {
    transform: scale(1);
}

.itc-slider-btn {
    background: rgb(0 0 0 / 0%);
    opacity: 0.5;
    width: 80px;
    height: 100%;
    padding: 0;
}

.itc-slider-btn:hover {
    background: rgb(0 0 0 / 0%);
    opacity: 1;
}

.itc-slider-btn:focus {
    background: rgb(0 0 0 / 0%);
}

.itc-slider-btn-prev::before {
    background-image: url(/rescue/imgs/icon-arrow.svg);
    width: 80px;
    height: 80px;
    transform: rotate(180deg);
    background-size: auto;
    box-shadow: 0 16px 24px 0 rgba(16, 60, 118, 0.1);
}

.itc-slider-btn-next::before {
    background-image: url(/rescue/imgs/icon-arrow.svg);
    width: 80px;
    height: 80px;
    background-size: auto;
    box-shadow: 0 16px 24px 0 rgba(16, 60, 118, 0.1);
}

@media (max-width: 1370px) {
    .container {
        max-width: 930px;
    }

    .interview-section .interview-grid {
        flex-wrap: wrap;
    }

    .interview-section .post01 {
        width: 100%;
    }

    .interview-section .post03 {
        width: 100%;
        flex-direction: row;
    }

    .post05 {
        width: 48.5%;
    }

    .footer-info {
        max-width: 400px;
    }

    .footer-nav a, .footer-nav span.current {
        font-size: 16px;
    }

    .category-interview .info-section .container {
        max-width: 930px;
    }

    .category-interview .post02 {
        max-width: 48.5%;
        min-height: 290px;
    }

    .perelink-grid {
        flex-wrap: wrap;
    }

    .perelink-grid-inner {
        width: 100%;
        flex-direction: row;
    }

    .perelink-grid .post01 {
        width: 100%;
    }

    .toc {
        max-width: 280px;
    }

    .single .single-container {
        max-width: 580px;
        margin: 0;
    }

    .single2 .single-container {
        max-width: 860px;
        margin: 0 auto;
    }

    .single404 .single-container {
        max-width: 860px;
        margin: 0 auto;
    }

    .category-video .post02 {
        width: 48.5%;
    }

    .category-infographic .info-section .container {
        max-width: 930px;
    }

    .category-infographic .post02 {
        max-width: 48.5%;
        min-height: 290px;
    }

    .header-content {
        max-width: 90%;
    }

    footer .container {
        max-width: 90%;
        /*display: flex;*/
        /*flex-direction: column;*/
        /*justify-content: center;*/
        /*align-items: center;*/
    }
}

 @media (max-width: 1023px) {
     .mainpage header {
         background-image: url(/rescue/imgs/header_tablet.svg);
     }

     .container {
         max-width: 630px;
     }

     .category .info-section {
         padding: 0 0 80px;
     }

     .category-interview .info-section .container {
         max-width: 630px;
     }

     .info-grid-inner {
         flex-wrap: wrap;
         gap: 24px;
     }

     .category-interview .post02 {
         max-width: 100%;
         min-height: 360px;
     }

     .post03-image {
         width: 240px;
     }

     .post03-tag {
         padding: 0 10px;
         font-size: 12px;
     }

     .post03-title {
         font-size: 18px;
         line-height: 22px;
         margin: 12px 0;
     }

     .post03-excerpt {
         font-size: 14px;
         line-height: 18px;
         margin-bottom: 12px;
         display: -webkit-box;
         -webkit-line-clamp: 3;
         -webkit-box-orient: vertical;
         overflow: hidden;
         text-overflow: ellipsis;
         max-height: calc(18px * 3);
     }

     .mainpage h1 {
         font-size: 62px;
         line-height: 72px;
     }

     .post05 {
         width: 100%;
     }

     .mobile-menu-btn {
         display: block;
         z-index: 11;
     }

     nav {
         display: none;
     }

     nav.active {
         display: block;
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         background: #2D5F8D;
         padding: 20px;
         z-index: 10;
     }

     nav.active ul {
         flex-direction: column;
         gap: 15px;
     }

     .single h1 {
         font-size: 46px;
         line-height: 56px;
     }

     .single-container .description {
         font-size: 24px;
         line-height: 34px;
         margin: 40px 0;
     }

     .single-container p, .single-container ul {
         font-size: 16px;
         line-height: 22px;
     }

     .single h2 {
         font-size: 34px;
         line-height: 44px;
     }

     .single h3 {
         font-size: 28px;
         line-height: 34px;
     }

     .single h4 {
         font-size: 24px;
         line-height: 34px;
     }

     .perelink-grid-inner {
         flex-wrap: wrap;
     }

     .post02 {
         min-height: 360px;
     }

     .toc {
         display: none;
     }

     .single-materials {
         justify-content: center;
         padding: 40px 0 80px;
     }

     .single .single-container {
         max-width: 630px;
     }

     .category-video .post02 {
         width: 48%;
         min-height: auto;
     }

     .category-infographic .info-section .container {
         max-width: 630px;
     }

     .category-infographic .post02 {
         max-width: 100%;
         max-height: 400px;
     }

     .header-content {
         max-width: 90%;
     }
 }

@media (max-width: 767px) {
    .mainpage header {
        height: 435px;
        background-image: url(/rescue/imgs/header_mobile.svg);
    }

    .container {
        max-width: 390px;
    }

    h1 {
        font-size: 48px;
        line-height: 52px;
    }

    h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .mainpage h1 {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 90px;
    }

    .about p {
        font-size: 16px;
        line-height: 22px;
    }

    .section-title {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 28px;
        line-height: 32px;
    }

    .view-all {
        display: none;
    }

    .video-section {
        padding: 50px 0 20px;
    }

    .video-section .post02 {
        max-width: 100%;
    }

    .itc-slider-item {
        padding-right: 0;
    }

    .itc-slider-item .post02-text {
        margin-right: 0;
    }

    .star-divider {
        margin: 0 24px;
    }

    .top-star-divider {
        display: flex;
    }

    .interview-section {
        padding: 50px 0;
    }

    .interview-section .post03 {
        flex-direction: column;
    }

    .post01-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .post03-image {
        width: 100%;
        max-height: 260px;
    }

    .info-section {
        padding: 50px 0;
    }

    .view-all-interview {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin-top: 20px;
    }

    .view-all-video {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin-top: 20px;
    }

    .view-all-materials {
        margin-top: -30px;
    }

    .view-all-interview .btn-primary {
        width: 100%;
    }

    .view-all-video .btn-primary {
        width: 100%;
    }

    .view-all-materials .btn-primary {
        width: 100%;
    }

    .category-interview .info-section .container {
        max-width: 390px;
    }

    .post03 {
        flex-direction: column;
    }

    .post01-text {
        padding: 16px;
    }

    .post01-title {
        margin-bottom: 10px;
    }

    .post01-link {
        font-size: 12px;
    }

    .post01-tag {
        padding: 2px 10px;
        font-size: 12px;
        line-height: 12px;
    }

    .category-interview .post02 {
        min-height: 260px;
        max-height: 260px;
    }

    .post02-text {
        padding: 16px;
    }

    .post02-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .post02-link {
        font-size: 12px;
    }

    .post02-tag {
        padding: 2px 10px;
        font-size: 12px;
        line-height: 12px;
    }

    .post03-link {
        font-size: 12px;
    }

    .single .single-container {
        max-width: 390px;
    }

    .single h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .post-info {
        flex-wrap: wrap;
    }

    .post-info span {
        font-size: 16px;
        line-height: 22px;
    }

    .post-date:after {
        display: none;
    }

    .post-video {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }

    .single-container img {
        margin: 32px 0;
    }

    .single-container .description {
        font-size: 20px;
        line-height: 24px;
        margin: 32px 0;
    }

    .single h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .single h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .single h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .perelink-section {
        padding: 40px 0;
    }

    .perelink-title {
        font-size: 28px;
        line-height: 32px;
    }

    .post02 {
        min-height: 260px;
        max-height: 260px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-content {
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .single2 .category-header:before {
        height: 500px;
    }

    .single h1 {
        margin-bottom: 40px;
    }

    .category-video .post02 {
        width: 100%;
    }

    .category-infographic .info-section .container {
        max-width: 390px;
    }

    .faq {
        padding: 20px;
    }

    .faq h4 {
        margin: 0 0 10px;
    }

    .faq h4:before {
        display: block;
        margin-bottom: 10px;
        top: 0;
    }

    .quote {
        padding: 55px 20px 20px 20px;
    }

    .quote:before {
        top: 10px;
        left: 20px;
    }

    .category-infographic .post02 {
        min-height: 260px;
        max-height: 260px;
    }

    .header-content {
        max-width: 90%;
    }

    footer .container {
        max-width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 419px) {
    .container {
        max-width: 100%;
        padding: 0 5%;
    }

    .logo img {
        width: 200px;
    }

    .post01-title {
        font-size: 20px;
        line-height: 24px;
    }

    .category-interview .post02 {
        min-height: 230px;
        max-height: 230px;
    }

    .single-materials {
        padding: 30px 0 50px;
    }

    .single .single-container {
        max-width: 100%;
        padding: 0 5%;
    }

    .post02 {
        min-height: 230px;
        max-height: 230px;
    }

    .category-infographic .post02 {
        min-height: 190px;
    }
}