@import url("home.css");
@import url("awards.css");
@import url("portfolio.css");
@import url("press.css");
@import url("highlights.css");
@import url("investor.css");
@import url("minutes.css");
@import url("headerfooter.css");
@import url("arrows.css");
@import url("aos.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
 --white: #ffffff;
 --black: #000000;
 --titlegreen: #0c532f;
 --bggreen: #021c09;
 --navgreen:#0a7707;
 --yellow: #f7b403;
 --bggrey: #eaeaea;
 --darkgrey: #bababa;
 --almostblack: #062300;
 --dategrey: #959595;
 
 
 --fs-0: 8px; /*8px*/
 --fs-1: 12px; /*12px*/
 --fs-11: 14px; /*12px*/
 --fs-2: 16px; /*16px*/
 --fs-3: 18px; /*18px*/
 --fs-4: 20px; /*20px*/
 --fs-5: 24px; /*24px*/
 --fs-6: 32px; /*32px*/
 --fs-7: 50px; /*50px*/
 --fs-8: 60px; /*60px*/
}



p,h1,h2,h3,h4,h5,h6, label{
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5{
	font-weight:700;
}

.boldtext{
	font-weight:600;
}


body{
	font-family: "Poppins", sans-serif;
  	font-weight: 400;
  	font-style: normal;
    font-size: var(--fs-11);
    background-color: var(--white) !important;
    color: var(--black);
	overflow-x: hidden!important;
}

.container{
        width: 95% !important;
}

.container-narrow{
	width: 95% !important;
}

.bgwhite{
	background-color: var(--white);
}


.greensection{
	text-align: center;
	color: var(--titlegreen);
	padding-top: 20px;
}

.greentitle{
	text-align: center;
	color: var(--titlegreen);
	padding-bottom: 40px;
}

p.largespace{
  line-height: 32px;   /* within paragraph */
  margin-bottom: 30px; /* between paragraphs */
}

.greencol{
	background-color: var(--titlegreen);
	color: var(--white);
}


.corpleft{
	border-left: 6px solid var(--titlegreen);
}

.pdfobject-container { height: 1000px; border: none; }

.greenlink a:link, .greenlink a:active, .greenlink a:focus, .greenlink a:visited, .greenlink a:hover{
	color: var(--navgreen);
	text-decoration: none;
}	

/* click to copy text */

  .copy-click {
    position: relative; /* Essential for absolute positioning of ::before */
    cursor: pointer;
    text-decoration: underline;
}

.copy-click::before {
    content: attr(data-tooltip-text); /* Gets text from data attribute */
    position: absolute;
    bottom: 100%; /* Positions it above the span */
    left: 50%;
    transform: translateX(-50%); /* Centers the tooltip horizontally */
    background-color: #28a745;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap; /* Prevents text wrapping */
    opacity: 0; /* Hidden by default */
    visibility: hidden; /* Also hidden by default for better transition */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade-in/out */
    z-index: 10; /* Ensures it appears above other content */

    /* 👇 THIS IS THE CRUCIAL LINE LIKELY MISSING 👇 */
    display: inline-block; /* Makes the pseudo-element renderable with layout properties */
}

.copy-click:hover::before {
    opacity: 1; /* Makes it visible on hover */
    visibility: visible; /* Makes it visible on hover */
}

/* ... rest of your CSS for .copied state ... */
.copy-click.copied::before {
    content: attr(data-tooltip-text-copied);
    background-color: #28a745;
}


@media (min-width: 1200px) {

.container{
        width: 95% !important;
}

.container-narrow{
	width:800px !important;
}

#overviewbg{
	background-image: url("../img/about_us.png");
	background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}


#reitstructure{
	background-image: url("../img/topright_circle.jpg");
    background-repeat: no-repeat;
	background-size: 700px 480px;
	background-position: right 0px top 0px;
	margin-top:0px;
}

}


