@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

:root {
  --primary-black: #000000;
  --white-color: #fff;

  --bg-black: #000000;
  --gray-bar: #777777;
  --ghost-text: #1a1a1a; /* Dark gray for background labels */

  /* font-weight-variables */
  /* font-weight-variables */

  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;

  /* Mr.Black Mission Page font size variables start*/
  --font-size-202: 12.625rem; /*202px */
  --font-size-200: 12.5rem; /* 200px */
  --font-size-154: 9.625rem; /*154px */
  --font-size-150: 9.375rem; /*150px */
  --font-size-136: 8.5rem; /*136px */
  --font-size-80: 5rem; /* 80px */
  --font-size-72: 4.5rem; /* 72px */
  --font-size-42: 2.625rem; /*42px */
  --font-size-44: 2.75rem; /*44px */
   --font-size-32: 2rem; /*32px */
  --font-size-30:1.875rem; /*30px */
  --font-size-24: 1.5rem; /*24px */
  --font-size-22: 1.375rem; /*22px */
  --font-size-18: 1.125rem; /*18px */
  --font-size-16: 1rem; /*16px */
}

body {
  background-color: var(--bg-black);
  color: #ffffff;
  margin: 0;
  overflow-x: hidden;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
}

/* font-size custom classes css start */

.font-size-202 {
  font-size: var(--font-202);
}

.font-size-200 {
  font-size: var(--font-200);
}

.font-size-154 {
  font-size: var(--font-154);
}

.font-seize-150 {
  font-size: var(--font-150);
}

.font-size-136 {
  font-size: var(--font-136);
}

.font-size-80 {
  font-size: var(--font-80);
}

.font-size-44 {
  font-size: var(--font-44);
}

.font-size-32 {
  font-size: var(--font-32);
}

.font-size-24 {
  font-size: var(--font-24);
}

.font-size-22 {
  font-size: var(--font-22);
}

.font-size-18 {
  font-size: var(--font-18);
}

/* font weight custom classes css start */
/* font weight custom classes css start */

.font-100 {
  font-weight: var(--fw-100);
}

.font-200 {
  font-weight: var(--fw-200);
}

.font-300 {
  font-weight: var(--fw-300);
}

.font-400 {
  font-weight: var(--fw-400);
}

.font-500 {
  font-weight: var(--fw-500);
}

.font-600 {
  font-weight: var(--fw-600);
}

.font-700 {
  font-weight: var(--fw-700);
}

.font-800 {
  font-weight: var(--fw-800);
}

.font-900 {
  font-weight: var(--fw-900);
}

/* font weight custom classes css end */

/* style css start */

/* style css end */

/* Typography */
h1,
h2,
.oswald {
  text-transform: uppercase;
}

/* Navigation */
.navbar-dark {
  background: rgba(0, 0, 0, 0.4); /* transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  padding: 32px 0;
}

.nav-link {
  font-size: var(--font-size-18);
  letter-spacing: 1px;
  color: var(--white-color) !important;
  font-weight: var(--fw-300) !important;
}
.nav-link:hover {
  color: #fff !important;
}

/* Hero Section */
.hero {
  padding-bottom: 0rem;
  padding-top: 10rem;
}

.hero-name {
  font-size: var(--font-size-154);
  line-height: 0.75;
  font-weight: bolder;
  margin-bottom: 0.625rem;
}

.hero-bg {
  height: calc(100vh + 80rem);
  width: 100%;
  background:url(../images/bg1.png) no-repeat;
  background-size: contain;
  background-position: center center;
  overflow: hidden;
}

.hero-border {
  border-left: 2px solid #fff;
  padding-left: 2rem;
  margin-left: 3rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh + 60rem);
}
.hero-sub {
  font-size: var(--font-size-44);
  font-weight: bold;
  letter-spacing: 0.125rem;
  line-height: 2.5rem;
}

.hero-announcement p {
  max-width: 100%;
  font-size: var(--font-size-44);
  line-height: 1.28;
  font-weight: 500;
  margin: 0;
}

.hero-announcement strong {
  font-size: var(--font-size-72);
  display: block;
  font-weight: 500;
  line-height: 1.25;
}

.hero-bg-two {
  height: calc(100vh - -100rem);
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9)),
    url(../images/bg2.jpg) no-repeat;
  background-size: cover;
  background-position: center 0%;
  position: relative;
  padding: 4rem 0;
}

.hero-name-transparent {
  font-size: var(--font-size-150);
  line-height: 0.85;
  font-weight: var(--fw-900);
  margin-bottom: 0.625rem;
  opacity: 0.35 !important;
  margin-bottom: 1.625rem;
}

.hero-paragraph {
  margin-top: -4rem;
  font-size: var(--font-size-32);
  padding-left: 2rem;
  font-weight: 300;
}

.bottom > .hero-name-transparent {
  font-size: var(--font-size-150);
}

/* Gray Action Bars */
.action-bar {
  background-color: var(--gray-bar);
  text-align: center;
  padding: 0.625rem 0rem;
  cursor: pointer;
  text-decoration: underline;
}

.action-bar h1 {
  font-size: var(--font-size-24);
  font-weight: 600;
  letter-spacing: 0.063rem;
  text-transform: capitalize;
}

/* Platform List */
.platform-list {
  list-style: none;
  padding: 0;
  margin-top: -3.8rem;
  margin-left: 3rem;
  position: relative;
  z-index: 2;
  font-weight: 300;
}
.platform-list li {
  margin-bottom: 0.938rem;
  font-size: var(--font-size-32);
  display: flex;
  align-items: center;
}
.platform-list li::before {
  content: "•";
  color: #fff;
  margin-right: 0.938rem;
  font-size: 1.5rem;
}




/* Footer Vote */
.vote-footer {
 padding: 3.75rem 0rem;
}
.vote-text-outline {
  font-size: var(--font-size-200);
  line-height: 0.85;
  font-weight: var(--fw-900);
  margin-bottom: 0.625rem;
  opacity: 0.2 !important;
}
.vote-text-solid {
  font-size: var(--font-size-150);
  line-height: 0.85;
  font-weight: var(--fw-900);
  margin-top: -3.5rem;
}

.tracking-widest {
  font-size: var(--font-size-44);
  line-height: 0.85;
  font-weight: var(--fw-900);
  margin-left: 0.375rem;
}

/* Email Signup */
.signup-bg {
  background-color: #ffffff;
  color: #000;
  padding: 2.5rem 0rem;
}

.signup-bg .signup-text {
  color: #666666;
  font-size: var(--font-size-22);
}

.form-control {
  border-radius: 0;
  border: 0.063rem solid #ddd;
  font-size: var(--font-size-22);
}

.btn-subscribe,
.btn-subscribe:hover {
  background-color: #777777;
  color: #fff;
  border-radius: 0;
  font-weight: 700;
  border: none;
  font-size: var(--font-size-22);
}

.notes-text {
  font-size: var(--font-size-16);
  color: var(--bg-black);
  font-family: "Times New Roman", Times, serif;
}

.notes-text .link-btn {
  color: var(--bg-black);
}

.extra-bold-text {
  font-size: var(--font-size-150);
  line-height: 0.75;
  font-weight: bold;
 
}

.extra-bold-text.opacity {
  opacity: 0.2 !important;
}

.wide-border-bottom {
  width: 100%;
  height: 1rem;
  background: #ffffff;
  margin: 5rem 0 0 0;
}

.quote,
.bio {
  font-size: var(--font-size-32);
  line-height: 1.8;
  font-weight: var(--fw-600);
  margin-left: 0.375rem;
  margin-bottom: 32px;
}

.highlight {
  font-size: var(--font-size-42);
  font-weight: var(--fw-600);
  
}

.copy {
  font-size: var(--font-size-24);
  line-height: 1.8;
  font-weight: var(--fw-300);
}

.copy strong{
   font-size: var(--font-size-30);
   font-weight: 500;
}

/* plateform css start */

.key-platform-wrapper{
  position: relative;
  z-index: 1;
}

.platform-footer{
    margin-top: -30rem;
}

.element:not(:last-child) {margin-bottom: 3rem;}

.element h2{
  font-size: var(--font-size-30);
  font-weight: 600;
  text-transform: capitalize;
}

.element p {
  font-size: var(--font-size-24);
  line-height: 1.8;
  font-weight: var(--fw-300);
  margin: 0;
}



.full-blank-bg {
  height: calc(100vh + 100rem);
  width: 100%;
  background:url(../images/bg2.jpg) no-repeat;
  background-size: cover;
  background-position: center 0%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
/* plateform css end */




.biography-wrapper p:not(:last-child){
  margin-bottom: 3rem;
}


/*Media Page Css start*/

.florida-governor-wrapper{

}

.florida-governor-wrapper .date-wrapper  h1,.florida-governor-wrapper .date-wrapper  h2,.date-wrapper .date{
  font-weight: 500;
  text-transform: capitalize;
}

.florida-governor-wrapper .date-wrapper  h1{
      font-size: var(--font-size-80);
    
}

.florida-governor-wrapper .date-wrapper  h2{
   font-size: var(--font-size-44);
   
}

.florida-governor-wrapper .date-wrapper span{ display: block;}


.date-wrapper {
    border: 1px solid rgba(255, 255, 255, 1);
    display: inline-block;
      position: relative;
   
}

.date-wrapper .date{
  font-size: var(--font-size-24);
    position: absolute;
    top: -16px;
    background: #000000;
}


.florida-governor-wrapper  .hero-announcement h3{
  font-size: var(--font-size-32);
}
.florida-governor-wrapper  .hero-announcement span{
  display: block;
}


.florida-governor-wrapper  .hero-announcement p{
 font-size: var(--font-size-24);
 font-weight:400 ;
}

.florida-governor-wrapper img{
  max-width: 100%;
}
.border-left{
  border-left:2px solid #fff;
    padding-left: 2rem;
    margin-left: 3rem;
    margin-top: 2rem;
}


 
/*Media Page Css end*/

@media (max-width: 1199px) {
  :root {
    --font-size-200: 9.375rem;
    --font-size-154: 7.5rem;
    --font-size-150: 6.25rem;
  }
}

@media (max-width: 991px) {
  .hero-paragraph {
    margin-top: 0;
    padding-left: 0;
  }
  .platform-list {
    margin-left: 0;
  }
  .vote-text-solid {
    margin: 0;
  }

  .container {
    max-width: 90%;
  }

  :root {
    --font-size-200: 6.25rem;
    --font-size-154: 5.5rem;
    --font-size-150: 5rem;
  }
}

@media (max-width: 767px) {
  .platform-list {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-154: 3.5rem;
    --font-size-150: 3rem;
    --font-size-32: 1.375rem;
    --font-size-24:1.375rem;
    --font-size-44: 2rem;
    --font-size-72: 3rem;
    --font-size-22: 1rem;
    --font-size-80: 3rem;
  }

  .hero-border {
    margin-left: 1rem;
  }

  .hero-bg {
    height:100vh;
  }

  .hero-bg-two{
    height: auto;
  }


  .hero-border {
    height:80vh;
  }

  .navbar-dark {
    padding: 1rem 0;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-bg-two {
    background-size: cover;
  }
}
