<!--CustomCSS.css-->
@charset "UTF-8";

* {
    font-family: 'Poppins';
}

:root {
  scroll-behavior: auto;
}

html {
    scroll-behavior: smooth;
    direction: ltr;
    width: 100%;
    width: -webkit-fill-available;
    /*overflow-x: hidden;*/
    box-shadow: none !important;
    box-sizing: border-box;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto;
  height: auto;
  margin: 0px;
  background: black; 
  font-family: 'Poppins', sans-serif;

}

a.screen-reader-text.skip-link {
    display: none;
    visibility: hidden;
}

h1 {
  margin: 0.8em 0 0.8em;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

h2 {
  margin: 0.4em 0 0.4em;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

h3, h4, h5, h6 {
  margin: 0.4em 0 0.4em;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }  /* ~32px to 44px */
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); } /* ~28px to 36px */
h3 { font-size: clamp(1.45rem, 3vw, 1.8rem) }  /* ~24px to 32px */
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); } /* ~20px to 28px */
h5 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); } /* ~18px to 24px */
h6 { font-size: clamp(1rem, 2vw, 1.25rem); } /* ~16px to 20px */

p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); /* ~15px to 17px */
  line-height: 1.6;
}

.MYPageContent { 
  background: black; 
}
*, *::before, *::after {
    box-sizing: border-box;
}
.site-content {
    display: block !important;
    height: 100vh;
    position: relative;
    z-index: 0;
}

.ArticleTag {
	/*overflow-x: hidden;*/
    box-sizing: border-box;
   
}

.MySections {
    overflow-x: hidden;
}
a:hover, a:active, a:focus { color: white; }
img { height: auto; }

/* Buttons used on Site */
/*
.FillButton1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #ad9420;
    border: none;
    padding: 8px 32px;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    border-bottom: 2px solid #ad9420;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.4s ease;
    text-decoration: none;
    width: auto;
    height: auto;
    margin: 0px 5px;
}

.FillButton1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ad9420;
    z-index: 0;
    transition: height 0.4s ease;
}

.FillButton1:hover::before {
    height: 100%;
}

.FillButton1Span {
    position: relative;
}

.FillButton1SVG {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.FillButton1:hover svg {
    transform: translateX(3px);
}


.FillButton2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    bottom: 0px;
    background: transparent;
    color: #ad9420;
    border: none;
    padding: 8px 32px;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #ad9420;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.4s ease;
    text-decoration: none;
    width: auto;
    height: auto;
    margin: 0px 5px;
    margin-top: auto;
}

.FillButton2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ad9420;
    z-index: 0;
    transition: height 0.4s ease;
}

.FillButton2:hover::before {
    height: 100%;
}

.FillButton2Span {
    position: relative;
}

.FillButton2SVG {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.FillButton2:hover svg {
    transform: translateX(3px);
}

.FillButton3A {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    color: white;
    text-decoration: none;
    width: 185px;
    height: 40px;
    background: linear-gradient(360deg, #584b09 0%, #645c0fd4 100%);
}

.FillButton3A::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ffd71e47;
    z-index: -1;
    transition: height 0.4s ease;
}

.FillButton3A:hover::before {
    height: 100%;
}

.FillButton3S {
}

.FillButton3SVG {
    margin-left: 5px;
    transform: rotate(0deg);
    transition: 0.3s;
}

.FillButton3A:hover .FillButton3SVG {
    transform: rotate(45deg);
    transition: 0.3s;
}
*/