/* Reset css */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
}
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
ol,
ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: var(--siteblue);
}
a,
a:hover {
    text-decoration: none;
    transition: 0.3s all;
}
a:focus,
button:focus {
    outline: none;
    box-shadow: none;
}
a:focus-visible,
button:focus-visible {
    outline: none;
    outline-offset: 4px;
}
body {
    -webkit-font-smoothing: antialiased;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* Custom css */
/* Typo */
:root {
    --fs56: clamp(1.875rem, 1.3931rem + 2.4096vw, 3.5rem);
    --fs19: clamp(0.9375rem, 0.763rem + 0.4854vw, 1.1875rem);
    --fs18: clamp(0.875rem, 0.7005rem + 0.4854vw, 1.125rem);
    --fs43: clamp(1.5rem, 1.1478rem + 1.7609vw, 2.6875rem);
    --fs40: clamp(1.375rem, 1.0414rem + 1.6682vw, 2.5rem);
    --fs11: 0.688rem;
    --fs12: 0.75rem;
    --fs13: 0.813rem;
    --fs14: 0.875rem;
    --fs15: clamp(0.8125rem, 0.7754rem + 0.1854vw, 0.9375rem);
    --fs16: 1rem;
    --fs20: clamp(1.0625rem, 1.0069rem + 0.278vw, 1.25rem);
    --fs21: clamp(1.0625rem, 0.9884rem + 0.3707vw, 1.3125rem);
    --fs24: clamp(1.125rem, 1.0138rem + 0.5561vw, 1.5rem);

    --textcl: #30383f;
    --headcl: #28334a;
    --lightgray: #f0eeed;
    --siteblue: #006680;
    --sitered: #D52B1E;
    --bordercl: #bdbdbd;

    --bitter: 'Bitter';
    --poppins: 'Poppins';
}
h1,
h2,
h3,
h4 {
    font-weight: 500;
    margin: 0;
    color: var(--headcl);
}
h1 {
    font-size: var(--fs56);
}
h2 {
    font-size: var(--fs43);
    margin-bottom: 30px;
}
p {
    font-size: var(--fs18);
    line-height: 1.6;
    color: var(--textcl);
}
p a {
    color: var(--siteblue);
    text-decoration: underline;
}
.site-btn {
    padding: 8px 33px;
    font-size: var(--fs18);
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: var(--headcl);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--headcl);
    letter-spacing: 0.098em;
    height: 46px;
    gap: 10px;
}
.site-btn svg,
.site-btn img {
    display: block;
    max-width: 16px;
    max-height: 16px;
    transition: 0.3s all;
}
.site-btn:hover {
    background: var(--siteblue);
    border-color: var(--siteblue);
    color: #fff;
}
.site-btn:hover svg,
.site-btn:hover img {
    transform: translateX(-5px);
}
.site-btn:hover span ~ svg,
.site-btn:hover span ~ img {
    transform: translateX(5px);
}
.site-btn:hover svg path,
.site-btn:hover img path {
    fill: #fff;
}
.site-btn.outline {
    background: transparent;
    color: var(--headcl);
}
.site-btn.outline:hover{
    background: var(--headcl);
    color: #fff;
}
.lg-btn {
    height: auto;
}

/* Container */
.container,
.container-xl {
    padding-left: 30px;
    padding-right: 30px;
}

/* Header */
header .navbar {
    padding: 0;
    background: #fff;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.12);
}
header .navbar-brand {
    padding: 1rem 0;
    position: relative;
    z-index: 5;
}
header .navbar-brand img {
    display: block;
    max-width: 125px;
    max-height: 60px;
}
header .navbar-nav{
    align-items: center;
}
header .navbar-nav .nav-item {
    margin: 0 22px;    
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
header .navbar-nav .nav-item:last-of-type{
    margin-right: 0;
}
header .navbar .navbar-nav .nav-link {
    padding: 0;
    font-size: var(--fs18);
    position: relative;
    line-height: 1;
    color: var(--headcl);
    display: flex;
    align-items: center;
}
header .navbar-nav .nav-item .nav-link svg{
    margin: 0;
    margin-left: 10px;
    transition: 0.3s all;
}
header .navbar-nav .nav-item .nav-link:hover{
	color: var(--siteblue);
	font-weight: 600;
}
header .navbar-nav .nav-item .nav-link:hover svg{
    transform: translateX(4px);
}
header .navbar-nav .nav-item .dropdown-menu {
    padding: 15px 0;
    border: 0;
    min-width: 300px;
    margin: 0;
    border-radius: 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
}
header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: var(--fs16);
    padding: 10px 20px;
}
header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    color: #fff;
    background: var(--sitered);
}


/* Home Page */
.page-banner {
    background: var(--siteblue);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    width: 410px;
    height: 406px;
    background: url(../images/banner-side-bg.svg) no-repeat;
    background-size: contain;
    background-position: center;
    right: -90px;
    bottom: -80px;
    transform: rotate(-30deg);
    opacity: 0.2;
}
.page-banner .container {
    position: relative;
    z-index: 1;
}
.page-banner h1 {
    color: #fff;
    line-height: 1.293;
}
.page-subtitle {
    color: #fff;
    font-size: var(--fs16);
    margin: 0;
    margin-top: 20px;
}

.home-bep-contents{
    padding: 115px 0;
}
.bep-row{
    margin-left: -20px;
    margin-right: -20px;
    row-gap: 90px;
}
.bep-row > *{
    padding-left: 20px;
    padding-right: 20px;
}
.patient-content-card{
    display: flex;
    flex-direction: column;
    position: relative;
}
.patient-content-card figure{
    position: relative;
    margin-bottom: 25px;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--headcl);
}
.patient-content-card figure > img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: 0.5s all;   
}
.patient-content-card .pc-flag{
    width: 143px;
    height: 143px;
    position: absolute;
    right: 28px;
    bottom: 26px;
    overflow: hidden;
    border-radius: 15px;
}
.patient-content-card .pc-flag img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.patient-content-card .patient-card-body{
    display: flex;
    flex-direction: column;
}
.patient-card-body h4 {
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-family: var(--bitter);
}
.patient-card-body h2{
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-family: var(--bitter);font-size: 1.5rem;
}
.patient-card-body p{
    color: var(--headcl);
    line-height: 1.417;
}
.patient-card-body a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs18);
    color: var(--headcl);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.0538em;
    margin-top: 30px;
}
.patient-card-body a span{
    text-decoration: underline;
    text-underline-offset: 4px;
}
.patient-card-body a svg{
    flex: 0 0 auto;
    transition: 0.3s all;
    max-width: 14px;
    max-height: 14px;
}
.patient-card-body a:hover svg{
    transform: translateX(5px);
}
.patient-card-body a:hover svg path{
    fill: var(--siteblue);
}
.patient-card-body a:hover span{
    color: var(--siteblue);
}
.patient-content-card:has(.patient-card-body a:hover) figure > img{
    transform: scale(1.05) rotate(-2deg);
}

/* Inner pages */
.bepc-inner-contents{
    padding: 124px 0;
}
.bepc-terms-content h5{
    font-size: var(--fs18);
    color: var(--headcl);
    font-weight: 600;
    margin-bottom: 30px;
}
.tcontent,
.bepc-terms-content p{
    color: var(--headcl);
    margin-bottom: 26px;
}
.bepc-terms-content ul li a,
.bepc-terms-content p a{
    color: inherit;
    text-decoration: none;
}
.bepc-terms-content ul li a:hover,
.bepc-terms-content p a:hover{
    text-decoration: underline;
}
.bepc-terms-content p:last-child{
    margin-bottom: 0;
}
.bepc-terms-content ul{    
    padding-left: 19px;
}
.bepc-terms-content ul li{
    color: var(--headcl);
    font-size: var(--fs18);
}
.bepc-terms-content ul li > span{
    font-weight: 500;   
}
.bepc-terms-content ul.list-unstyled{
    margin: 22px 0;
}
.bepc-terms-content ul.list-unstyled li{
    list-style: disc;
}
.bepc-terms-content ul.list-unstyled li+li{
    margin-top: 10px;
}
.bepc-terms-content ul.list-numberd li{
    list-style: decimal;
    padding-left: 20px;
}
.bepc-terms-content ul.list-numberd li+li{
    margin-top: 25px;
}
.bepc-terms-content ol{
    margin-top: 25px;
    padding-left: 19px;
}
.bepc-terms-content ol.ol-numbered li{
    list-style: decimal;
    padding-left: 20px;
}
.bepc-terms-content ol.ol-numbered li+li{
    margin-top: 25px;
}
.bepc-terms-content ol.ol-alphabet li{
    list-style: upper-alpha;
    padding-left: 20px;
}
.bepc-terms-content ol.ol-alphabet li+li{
    margin-top: 25px;
}   

/* Detail Page */
.breadcrumb-section {
    margin-bottom: 37px;
}
.backlink {
    display: inline-block;
    font-size: var(--fs14);
    color: var(--headcl); 
    margin-bottom: 35px;
    font-weight: 500;
    transition: 0.3s all;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.backlink span{
    text-decoration: underline;
    text-underline-offset: 2px;
}
.backlink:hover {
    color: var(--siteblue);
}
.breadcrumb-section .breadcrumbs {
    margin-bottom: 0;
    color: var(--headcl);
    font-size: var(--fs14);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb-section .breadcrumbs a {
    color: var(--headcl);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.breadcrumb-section .breadcrumbs a:hover {
    color: var(--siteblue);
    text-decoration: underline;
}
/* .breadcrumb-section .breadcrumb-current {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
} */
.bepc-detail-section {
    padding: 60px 0 115px;
}
.bepc-detail-wrapper h1 {
    font-weight: 500;
    margin-bottom: 20px;
}
.bepc-meta-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 37px;
    font-size: var(--fs24);
    color: var(--siteblue);
    font-weight: 500; text-transform:uppercase;
}
.bepc-meta-badge span+span:before {
    content: '•';
    margin: 0;
    margin-right: 8px;
    color: var(--siteblue);
}
.bepc-intro {
    font-size: var(--fs18);
    color: var(--headcl);
    margin-bottom: 37px;
    line-height: 1.417;
}

.bepc-media-player {
    display: block;
    margin-bottom: 37px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--bordercl);
    background: var(--lightgray);
}
.bepc-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    background: var(--lightgray);
}
.bepc-media-player .play-btn{
    position: absolute;
    inset: 0;
    margin: auto;
    width: 65px;
    height: 65px;
    z-index: 2;
    border: 1px solid var(--bordercl);
    background: var(--headcl);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    padding: 0;
    padding-left: 4px;
}
.bepc-media-player .play-btn img{
    display: block;
    max-width: 40%;
    max-height: 50%;
}
.bepc-media-player .play-btn:hover{
    background: var(--sitered);
    transform: scale(1.05);
}
.bepc-media-player figure{
    width: 100%;
    overflow: hidden;
	height: 550px;
}
.bepc-media-player figure img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.bepc-content-text p {
    line-height: 1.4341;
    color: var(--headcl);
    margin-bottom: 25px;
}
.bepc-content-text p:last-child {
    margin-bottom: 0;
}
.bepc-actions{
    margin-top: 37px;
}
.bepc-actions .site-btn{
    border-radius: 8px;
    border-color: var(--siteblue);
}
.zoompointer{
	cursor: zoom-in;
}


/* 404 & 505 */
.error-section{
    padding: 74px 0 105px;
}
.error-section h1{
    margin-bottom: 20px;
}


/* Footer */
footer {
    background: var(--lightgray);
    padding: 0;
    position: relative;
    border-top: 6px solid var(--headcl);
}
.footer-disclaimer{
    padding: 37px 0;
    border-bottom: 1px solid var(--bordercl);
}
.footer-disclaimer p{
    font-size: var(--fs15);
    color: var(--headcl);
    line-height: 1.341;
    letter-spacing: 0.009em;
}
.footer-bottom-content{
    padding: 57px 0;
}
.footer-bottom-content-inner{
    display: flex;
    justify-content: space-between;
}
.footer-left-wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-nav-links{
    display: flex;
	max-width:597px;
	width:100%;
	justify-content: space-between;
    gap: 30px;
}
.footer-nav-links .footer-nav:last-child{
min-width:210px;
}
.footer-logo{
    margin-bottom: 30px;
}
.footer-logo img {
    display: block;
    width: 100%;
    max-width: 273px;
}
.footer-social{
    display: flex;
    gap: 11px;
}
.footer-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 7px;
    padding: 6px;
}
.footer-social a img,
.footer-social a svg{
    display: block;
    max-width: 100%;
    max-height: 100%;
    transition: 0.3s all;
}
.footer-social a:hover{
    background: var(--siteblue);
}
.footer-social a:hover img,
.footer-social a:hover svg{
    filter: brightness(0) invert(1);
}
.footer-nav{
    display: flex;
    flex-direction: column;
}
.footer-nav h5,.footer-nav div.titles{
    font-size: var(--fs14);
    text-transform: uppercase;
    color: var(--subgray);
    --subgray: #686868;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.1138em;
}
.foot-links li + li {
    margin-top: 10px;
}
.foot-links li a {
    font-size: var(--fs18);
    color: var(--textcl);
    line-height: 1.44;
    display: inline;
}
.foot-links li a svg{
    flex: 0 0 auto;
    transition: 0.3s all;
    max-width: 14px;
    max-height: 14px;
	display: inline-block;
    margin-left: 9px;
    vertical-align: middle;
}
.foot-links li a:hover {
    color: var(--siteblue);
	font-weight:600;
	/*text-shadow: 0.03em 0 0 currentColor, -0.03em 0 0 currentColor;*/
}
.foot-links li a:hover svg{
/*     transform: translateX(4px); */
}
.footer-bottom {
    border-top: 1px solid #bdbdbd;
    padding: 9px 0;
}
.footer-bottom .foot-links {
    display: flex;
    align-items: center;
    gap: 45px;
}
.footer-bottom .foot-links li + li {
    margin-top: 0;
}
.footer-bottom .foot-links li a{
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.footer-bottom.blue-bg {
    background: var(--headcl);
}
.footer-bottom.blue-bg p {
    color: #fff;
    font-size: var(--fs16);
    line-height: 1.5;
    letter-spacing: 0.012em;
}
.backto-top {
    position: fixed;
    right: 0;
    bottom: 50px;
    border: 0;
    border-radius: 20px 0 0 20px;
    background: #fff;
    width: 190px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    font-size: var(--fs18);
    color: var(--textcl);
    z-index: 99;
}
.backto-top svg {
    display: block;
    max-width: 13px;
    margin-left: 10px;
}
.backto-top:hover {
    background: var(--headcl);
    color: #fff;
}
.backto-top:hover svg path {
    fill: #fff;
}
/* Leave Site Modal */
.leave-site-modal .modal-dialog{
    max-width: 100%;
    max-width: 1380px;
    padding: 0 30px;
}
.leave-site-modal .modal-content{
    border-radius: 18px;
    border: 0;
}
.leave-site-modal .modal-body{
    padding: 75px;
}
.leave-site-modal .modal-body h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: var(--fs40);
    word-break: break-word;
}
.leave-site-modal .modal-body h2 span{
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
    color: var(--siteblue);
    display: block;
}
.leave-site-modal .modal-body p{
    margin-bottom: 30px;
    font-size: var(--fs19);
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.leave-site-modal .modal-body p:last-child{
    margin-bottom: 0;
}
.leave-site-modal .modal-body .consent-box{
    margin-top: 40px;
}
.leave-site-modal .modal-body .consent-box h4{
    margin-bottom: 40px;
    text-align: center;
}
.leave-site-modal .modal-body .consent-box .consent-btns{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-flow: row wrap;
}
.consent-btns .site-btn.outline{
    padding: 8px 20px;
}
.zoomicon {
	position: absolute;
    top: 50%;
    left: 50%;
    width:100px;
    height:100px;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
}

/* Redponsive */
@media (min-width: 992px) {
    header .navbar-nav .nav-item.dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transform-origin: top;
        transition: 0.5s all;
        top: 100%;
        left: -20px;
    }
    header .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    header .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
        color: var(--textcl);
        background: transparent;
    }
    header .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
        color: #fff;
        background: var(--sitered);
    }
}
@media (min-width: 1400px) {
    .container-xl {
        max-width: 1710px;
    }
    .container {
        max-width: 1382px;
    }
}

/* max-width */
@media (max-width: 1399px) {
    
}

@media (max-width: 1199px) {   
    .page-banner::before{
        max-width: 280px;
        max-height: 280px;
        right: -110px;
        bottom: -50px;
    }
    .footer-nav-links{
		max-width:497px;
    }
    .backto-top{
        width: 160px;
        height: 56px;
        font-size: var(--fs16);
    }
    .backto-top svg{
        margin-left: 8px;
    }
    
    .patient-content-card figure{
        height: 180px;
        border-radius: 26px;
    }
    .patient-content-card .pc-flag{
        height: 100px;
        width: 100px;
        right: 20px;
        bottom: 20px;
    }
    .bep-row{
        row-gap: 70px;
    }


    /* Detail Page */
    .bepc-detail-section{
        padding: 50px 0 80px;
    }
	.zoomicon {
		width: 70px;
		height: 70px;
	}
	.bepc-media-player figure{
		height: 400px;
	}
}

@media (max-width: 991px) {
	.patient-card-body h2 {
    font-size: calc(1.275rem + .3vw);
} 
	.zoomicon { 
    width:65px;
		height:65px;}
    .navbar-toggler {
        width: 28px;
        height: 18px;
        padding: 0;
        border: 0;
        position: relative;
        z-index: 999;
        box-shadow: none;
    }
    .navbar-toggler span {
        width: 100%;
        height: 2px;
        background: var(--headcl);
        display: block;
        transition: 0.3s all;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        border-radius: 12px;
    }
    .navbar-toggler span:first-child {
        margin-top: 0;
    }
    .navbar-toggler span:last-child {
        margin-bottom: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler.collapsed {
        background: transparent;
    }
    .navbar-toggler.collapsed span {
        width: 100%;
    }
    .navbar-toggler:not(.collapsed) {
        border-right: 0;
    }
    .navbar-toggler:not(.collapsed) span:first-child {
        margin-top: 9px;
        transform: rotate(45deg);
        transition-delay: 0s, 0.2s;
        margin-top: 8px;
    }
    .navbar-toggler:not(.collapsed) span:last-child {
        margin-bottom: 9px;
        transform: rotate(-45deg);
        transition-delay: 0s, 0.2s;
        margin-bottom: 8px;
    }
    .navbar-toggler:not(.collapsed) span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler span:first-child,
    .navbar-toggler span:last-child {
        transition-property: margin, -webkit-transform;
        transition-duration: 0.2s;
        transition-delay: 0.2s, 0s;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -110%;
        height: 100% !important;
        display: block !important;
        background: #fff;
        width: 100%;
        padding: 100px 30px 30px;
        transition: 0.5s all;
    }
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        right: 0;
    }
    .container,
    .container-xl {
        max-width: 100%;
    }
    
    .footer-bottom-content-inner{
        flex-direction: column;
        gap: 30px;
    }
    .footer-logo img{
        max-width: 200px;
    }
    .footer-nav-links{
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }
    header .navbar-nav{
        flex-flow: row wrap;
        gap: 5px;
    }
    header .navbar-nav .nav-item{
        height: auto;
        width: 100%;
        margin: 0 auto;
    }

    .page-banner {
        padding: 80px 0;
        min-height: auto;
    }
    .home-bep-contents{
        padding: 80px 0;
    }
    .bepc-inner-contents{
        padding: 80px 0;
    }

    /* Detail Page */
    .bepc-detail-section{
        padding: 50px 0;
    }
    .bepc-media-player .play-btn{
        width: 50px;
        height: 50px;
    }
    .leave-site-modal .modal-body{
        padding: 50px;
    }
    .leave-site-modal .modal-body h2{
        margin-bottom: 30px;
    }
    .leave-site-modal .modal-body p{
        margin-bottom: 20px;
    }
    .leave-site-modal .modal-body .consent-box{
        margin-top: 30px;
    }
    .leave-site-modal .modal-body .consent-box h4{
        margin-bottom: 30px;
    }

}

@media (max-width: 767px) {
    .footer-bottom-content {
        padding: 40px 0;
    }
    .footer-bottom .foot-links{
        gap: 30px;
    }
    .footer-bottom.blue-bg p{
        font-size: var(--fs13);
    }
    .footer-logo img {
        max-width: 160px;
    }
    .hero-section{
        padding: 50px 0 40px;
    }
    .home-contents{
        padding: 50px 0;
    }
    .backto-top svg {
        margin-left: 2px;
        width: 17px;
        max-width: none;
        height: 11px;
    }
    .backto-top{
        width: 56px;
    }
    .backto-top span{
        display: none;
    }

    .patient-content-card figure {
        height: 250px;
        border-radius: 30px;
    }
    .page-banner {
        padding: 70px 0;
        min-height: auto;
    }
    .bepc-inner-contents{
        padding: 70px 0;
    }

    /* Detail Page */
    .bepc-detail-section{
        padding: 40px 0;
    }
    .bepc-meta-badge{
        font-size: var(--fs16);
        margin-bottom: 25px;
    }
    .bepc-intro{
        margin-bottom: 25px;
    }
    .bepc-media-player{
        margin-bottom: 25px;
        border-radius: 20px;
    }
    .bepc-video{
        border-radius: 20px;
    }
    .bepc-media-player {
        margin-bottom: 25px;
        border-radius: 20px;
    }
    .bepc-media-player .bepc-image {
        border-radius: 20px;
    }
    .event-location-date {
        gap: 20px;
        margin-bottom: 25px;
    }
    .event-location-item,
    .event-date-item {
        font-size: var(--fs16);
    }
    .event-location-item img, .event-date-item img{
        max-width: 18px;
        max-height: 18px;
    }

    /* 404 & 505 */
    .error-section h4{
        font-size: var(--fs16);
    }
    .leave-site-modal .modal-dialog{
        padding: 0 20px;
        margin: 30px 0;
    }
    .leave-site-modal .modal-body {
        padding: 40px 30px;
    }

    .leave-site-modal .modal-body .consent-box h4{
        font-size: var(--fs21);
    }
    .bepc-terms-content ul.list-numberd li,
    .bepc-terms-content ol.ol-alphabet li{
        padding-left: 10px;
    }
    .bepc-terms-content ol,
    .bepc-terms-content ul{
        padding-left: 17px;
    }
	
	.zoomicon {
		width: 50px;
		height: 50px;
	}
	.bepc-media-player figure{
		height: 340px;
	}
}

@media (max-width: 575px) {
    .footer-bottom .foot-links li{
        line-height: 1.3;
    }
    .footer-bottom .foot-links{
        flex-direction: column;
        gap: 10px;
    }
    .page-banner::before {
        max-width: 200px;
        max-height: 200px;
        right: -90px;
    }
    .patient-content-card figure {
        height: 160px;
        border-radius: 26px;
    }
    .home-bep-contents{
        padding: 50px 0;
    }
    .bepc-inner-contents{
        padding: 50px 0;
    }
    .patient-content-card .pc-flag {
        height: 80px;
        width: 80px;
    }
    .leave-site-modal .modal-body .consent-box .consent-btns{
        gap: 15px;
    }
    .consent-btns .site-btn{
        padding: 8px 20px;
        letter-spacing: 0.02em;
    }

    .bepc-terms-content h5{
        margin-bottom: 20px;
    }
	.tcontent,
    .bepc-terms-content p{
        margin-bottom: 20px;
    }
    .bepc-terms-content ol,
    .bepc-terms-content ul.list-numberd li+li{
        margin-top: 20px;
    }
    .bepc-terms-content ol,
    .bepc-terms-content ul{
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    header .navbar-nav.out-nav {
        gap: 10px;
        margin-right: 14px;
    }
    .leave-site-modal .modal-body {
        padding: 30px 20px;
    }
}
@media (max-width: 580px) {
	.footer-left-wrap {order:2}
	.footer-nav-links {display:block}
	.footer-bottom .foot-links {align-items:flex-start}
	.footer-nav::after {
        content: "";
        display: block;
        height: 1px;
        background-color: #bdbdbd;
        margin-inline: -30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}