/*
Theme Name: TCP Theme
Theme URI: https://www.theclarkpartnership.com/
Author: Ben Lattimore
Author URI: http://benlattimore.com
Text Domain: tcp_theme

*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  font-size: 24px
}

body,
html {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  min-height: 100%;
}


body.content-page {
  overflow: auto !important;
}

body,
button,
input,
select,
optgroup,
textarea {
  background: #fff;
	color: #000;
  font-family: 'NHaasGroteskTXPro-75Bd', 'Helvetica', sans-serif;
	font-size: 1rem;
	line-height: 1.1666;
}

body.home {
  background: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h1 {
  font-size: 82px;
  line-height: 1.1;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
  font-weight: normal;
}

h2 {
  font-size: 48px;
  line-height: 1.08;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
  font-weight: normal;
}

h3 {
  font-size: 36px;
  line-height: 1.1666;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
  font-weight: normal;
}

h4 {
  font-size: 30px;
  line-height: 1.2;
}

h5 {
  font-size: 24px;
  line-height: 1.1666;
}

h6,
.small-copy {
  font-size: 16px;
  line-height: 1.25;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

.fires-modal {
  border-bottom: 2px solid #4d43dc;
  cursor: pointer;
  transition: border 0.4s ease;
}

.fires-modal:hover {
  border-bottom: 2px solid #fff;
  color: #fff;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #000;
	border: 0;
	height: 1px;
	margin-bottom: 28px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 2px solid;
	border-color: #fff;
	border-radius: 25px;
	background: 0;
	color: #3efeca;
	font-size: 0.67rem;
	line-height: 1;
	padding: 0.9rem 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.24em;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  width: 175px;
  outline: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #3efeca;
	background: #3efeca;
  color: #fff;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #3efeca;
	background: #3efeca;
  color: #fff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

a.invisible-a {
  border-bottom: 0 !important;
}

a:hover,
a:focus,
a:active {
	color: #505050;
}

a:hover,
a:active {
	outline: 0;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Embed Containers
--------------------------------------------------------------*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
## Table Containers
--------------------------------------------------------------*/
.table-container {
  height: 100%;
  width: 100%;
  display: table;
}

.table-cell {
  height: 100%;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

/*--------------------------------------------------------------
## Containers
--------------------------------------------------------------*/
.container {
  margin: 0 7.2%;
}

@media (min-width: 1024px) {
  .container {
    margin: 0 40px;
  }
}

/*--------------------------------------------------------------
## Top Section
--------------------------------------------------------------*/
#top-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8000;
  height: 110px;
}

body.change-svg #top-section {
  background: black;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}

#top-section.reverse-background,
body.content-page #top-section {
  background: white !important;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 50%, rgba(255,255,255,0)) !important;
}
/*--------------------------------------------------------------
## Nav Toggle
--------------------------------------------------------------*/
#nav-toggle {
  top: 32px;
  right: 7.2%;
  position: fixed;
  height: 18px;
  width: 32px;
  background: 0;
  border: 0;
  cursor: pointer;
  z-index: 9000;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.4s ease;
	outline: none;
	padding: 0;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  height: 1px;
  width: 32px;
  background: #fff;
  position: absolute;
  display: block;
  content: '';
}

body.content-page #nav-toggle span,
body.content-page #nav-toggle span:before,
body.content-page #nav-toggle span:after {
  background: #000;
}

#nav-toggle span:before {
  top: 7px;
}

#nav-toggle span:after {
  bottom: 7px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 0.4s ease;
  display: block;
}

#nav-toggle.active span {
  background-color: transparent !important;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
  background: #000;
}

#nav-toggle.active span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

body.change-svg #nav-toggle.active span,
body.change-svg #nav-toggle.active span:after,
body.change-svg #nav-toggle.active span:before {
  background: #000;
}

@media (min-width: 1024px) {
  #nav-toggle {
    top: 40px;
		right: 40px;
  }

}


/*--------------------------------------------------------------
## Main Logo
--------------------------------------------------------------*/
#main-logo {
  position: fixed;
  left: 7.2%;
  top: 32px;
  z-index: 9000;
}

#main-logo svg {
  width: 230px;
  height: auto;
  display: block;
  height: 20px;
}

#main-logo path,
#main-logo polygon,
#main-logo rect {
  fill: #fff;
  transition: all 0.4s ease;
}

#main-logo.reverse-logo path,
#main-logo.reverse-logo polygon,
#main-logo.reverse-logo rect
#main-logo.reverse-logo g.text-part-logo path,
#main-logo.reverse-logo g.text-part-logo polygon,
#main-logo.reverse-logo g.text-part-logo rect,
body.content-page #main-logo path,
body.content-page #main-logo polygon,
body.content-page #main-logo rect  {
  fill: #000 !important;
  fill-opacity: 1 !important;
}

body.change-svg #main-logo g.text-part-logo path,
body.change-svg #main-logo g.text-part-logo polygon,
body.change-svg #main-logo g.text-part-logo rect {
  fill-opacity: 0;
}


@media (min-width: 1024px) {
  #main-logo {
    top: 40px;
    left: 40px;
  }

  #main-logo svg {
    width: 320px;
    height: 28px;
  }
}

/*--------------------------------------------------------------
## Modal Section - General
--------------------------------------------------------------*/
#modal-section {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 7000;
  overflow-y: scroll;
  padding-bottom: 30px;
  -webkit-overflow-scrolling: touch;
}

#modal-section ul {
  margin: 145px 0 100px;
  padding: 0;
  list-style: none;
}

#modal-section ul#menu-small-menu {
  margin: 0;
}

#modal-section li > span,
#modal-section span.modal-copy-subtitle {
  cursor: pointer;
  font-size: 48px;
  margin-left: 7.2%;
  line-height: 1.08;
  font-weight: normal;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
}

#modal-section span.modal-copy-subtitle {
  margin-left: 0;
  cursor: initial;
}

#modal-section li > div {
  padding-bottom: 100px;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.2s;
}

#modal-section li > div.active-modal-info {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

#modal-section li div :first-child {
  margin-top: 0;
}

#modal-section li div :last-child {
  margin-bottom: 0;
}

.modal-contact-info p:first-child {
  margin-top: 0;
}

.modal-contact-info p,
.modal-contact-info li {
  font-size: 18px;
}

.modal-contact-info p a:hover {
  color: #000;
}

.contact-email {
  border-bottom: 2px solid #4d43dc;
  transition: border 0.4s ease;
}

.contact-email:hover {
  border-bottom: 2px solid #000;
}

.modal-contact-info p:last-child {
  font-size: 10px;
}

.modal-contact-info p:last-child span {
  display: block;
}

@media (max-width: 768px) {
  #modal-section li div p {
    font-size: 16px;
    line-height: 1.25;
  }
}

@media (min-width: 1024px) {
  #modal-section ul {
    margin: 187px 0 120px;
  }

  .modal-contact-info ul {
    margin: 1rem 0 0 !important;
  }

  #modal-section li > span,
  #modal-section span.modal-copy-subtitle {
    margin-left: 40px;
    font-size: 82px;
    line-height: 1.1;
    transition: color 0.4s ease;
  }

  #modal-section span.modal-copy-subtitle {
    margin-left: 0;
  }

  .modal-contact-info {
    position: relative;
    width: 400px;
    z-index: -1;
  }

  .modal-contact-info p,
  .modal-contact-info li  {
    font-size: 28px;
    margin-bottom: 0;
  }

  .modal-contact-info p:nth-child(2n),
  .modal-contact-info li {
    font-size: 14px;
    margin-top: 2em;
  }

  .modal-contact-info li {
    margin-top: 0;
  }
  /*
  .modal-contact-info p:last-child {
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .modal-contact-info p:last-child span {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 40px;
  }

  .modal-contact-info p:last-child span:first-of-type {
    right: 410px;
  }
  */
  #modal-section li > div.active-modal-info {
    position: relative;
  }

  #modal-section li > div div.container.modal-copy-section {
    width: 70%;
  }

  #modal-section li > div {
    padding-bottom: 120px;
  }

  #modal-section li > div div.modal-copy-section p span.floating-content {
    position: absolute;
    top: 0;
    right: 40px;
    padding-left: 20px;
    width: 20%;
  }
}

@media (min-width: 1280px) {
  #modal-section li > span:hover {
    color: #505050;
    cursor: pointer;
  }
}

@media (min-height: 900px) {
  .modal-contact-info {
    position: absolute;
    bottom: 30px;
    width: 100%;
  }

  .modal-contact-info.unfixed-footer {
    position: relative;
  }
}

/*--------------------------------------------------------------
## Modal Section - Clients
--------------------------------------------------------------*/
.client-box {
  margin-bottom: 50px;
  margin-top: 50px;
}

.client-meta {
  height: 55px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #000;
}

.client-meta svg {
  height: 40px;
  width: auto;
  margin-right: 15px;
}

.client-meta h4 {
  height: 40px;
  font-weight: normal !important;
}

.client-meta h4 span {
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 62px;
  line-height: 1;
}

#modal-section li div.client-logo {
  margin-top: 18px;
  margin-bottom: 40px;
}

.client-logo img {
  height: auto;
  width: 120px;
  display: block;
}

.full-client-list {
  -webkit-columns: 100px 2;
  -moz-columns: 100px 2;
  columns: 100px 2;
}

.full-client-list li {
  font-size: 16px;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  #modal-section li > div#clients-section.active-modal-info div.container {
    width: calc(100% - 80px);
  }

  .client-box {
    margin-bottom: 120px;
    margin-top: 60px;
  }

  .client-meta {
    height: 80px;
  }

  .client-meta svg {
    height: 65px;
    width: 70px;
  }

  .client-meta h4 {
    height: 65px;
    font-size: 48px;
  }

  .client-meta h4 span {
    font-size: 18px;
    left: 94px;
  }

  #modal-section li div.client-logo,
  #modal-section li div.client-quote {
    width: 30%;
    float: right;
    margin-top: 60px;
  }

  #modal-section li div.client-quote {
    width: 70%;
    float: left;
    padding-right: 20px;
  }

  #modal-section li div.client-logo img {
    width: 60%;
    height: auto;
    margin: 0 auto;
  }

  #clients-section hr {
    margin-bottom: 60px;
  }

  .full-client-list {
    -webkit-columns: 200px 4;
    -moz-columns: 200px 4;
    columns: 200px 4;
  }

  .full-client-list li {
    font-size: 30px;
  }

}

@media (min-width: 1280px) {
  #modal-section li > div#clients-section.active-modal-info div.container {
    width: calc(100% - 80px);
  }
}

/*--------------------------------------------------------------
## Modal Section - People V1
--------------------------------------------------------------*/
#modal-section li > div#people-section {
  margin-top: 0;
}

.people-block {
  padding-top: 35px;
  transition: all 0.4s ease;
  margin-top: 15px;
}

.person-meta {
  height: 55px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #000;
  transition: border 0.4s ease;
  cursor: pointer;
}

.person-meta h4 {
}

.person-meta h4 span {
  line-height: 1;
  margin-top: 14px;
  display: block;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
  font-weight: normal;
}

.person-meta h4 span.job-title {
  font-size: 12px;
  position: absolute;
  top: 0;
  line-height: 1;
  height: 12px;
  margin-top: 0;
  font-family: 'NHaasGroteskTXPro-75Bd', 'Helvetica', sans-serif;
}

.person-meta h4 svg {
  height: 24px;
  width: auto;
  float: right;
  position: relative;
  bottom: 26px;
  transition: all 0.4s ease;
}

.people-block.live-person {
  background: #000;
  color: #fff;
}

.people-block.live-person .person-meta {
  border-bottom: 1px solid #fff;
}

.people-block.live-person svg {
  transform: rotate(45deg);
}

.people-block.live-person svg line {
  stroke: #fff;
}

.person-content {
  margin-top: 25px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.2s;
  width: 100%;
  padding-bottom: 50px;
  color: #fff;
}

.person-content.active-person-content {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.person-content img.profile-pic {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 45px;
}

.floating-profile-pic {
  position: absolute;
  width: 250px;
  height: auto;
  display: block;
  top: 0;
  z-index: 3000;
  left: 25%;
  display: none;
  opacity: 0;
}

.person-social-media {
  margin-top: 3em;
}

.person-social-media a {
  margin-right: 1.5em;
  border-bottom: 2px solid #4d43dc;
  transition: border 0.4s ease;
}

.person-social-media a:hover {
  border-bottom: 2px solid #fff;
  color: #fff;
}

@media (min-width: 1024px) {
  #modal-section li > div#people-section.active-modal-info div.container {
    width: calc(100% - 80px);
  }

  .people-block {
    padding-top: 45px;
  }

  .person-meta {
    height: 95px;
  }

  .person-meta h4 span {
    font-size: 48px;
    margin-top: 24px;
  }

  .person-meta h4 span.job-title {
    font-size: 18px;
  }

  .person-meta h4 svg {
    height: 36px;
    width: 36px;
    bottom: 38px;
  }

  .person-content {
    margin-top: 60px;
    padding-bottom: 60px;
  }

  .person-content .profile-pic {
    width: 35%;
    display: inline-block;
    height: 700px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .person-content .person-text {
    width: 60%;
    float: right;
    display: inline-block;
  }
}

@media (min-width: 1280px) {
  #modal-section li > div#people-section.active-modal-info div.container {
    width: calc(100% - 80px);
  }

  .floating-profile-pic {
    display: block;
  }
  /*
  .people-block:hover .floating-profile-pic {
    opacity: 1;
  }
  */
  .people-block.live-person .floating-profile-pic {
    opacity: 0 !important;
  }

}

/*--------------------------------------------------------------
## Modal Section - People V2
--------------------------------------------------------------*/
.people-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  position: relative;
}

.people-flex > div {
  -webkit-box-flex: 0 0 48%;
      -webkit-flex: 0 0 48%;
         -moz-flex: 0 0 48%;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
              margin-bottom: 50px;
              cursor: pointer;
}

.person-profile-picture {
  height: 200px;
  width: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.person-meta-info h4 {
  margin: 10px 0 0 !important;
  font-size: 20px;
}

.person-meta-info h4 span {
  font-size: 14px;
}

.person-full-description {
  position: absolute;
  padding-top: 40px;
  background: #000;
  top: 20px;
  width: 116.6%;
  left: -8.3%;
  display: none;
  z-index: 8000;
}

.person-description-name {
  font-size: 30px !important;
  line-height: 0.75 !important;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.person-description-name span {
  font-size: 18px;
}

.person-full-description svg {
  position: absolute;
  top: 100px;
  right: 40px;
  z-index: 8200;
  width: 30px;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.person-full-description svg:hover {
  transform: rotate(90deg);
}

.person-load-first,
.person-load-second {
  opacity: 0;
}

.person-load-first {
  transition: opacity 0.8s ease;
  transition-delay: 0.4s;
}

.person-load-second {
  transition: opacity 0.8s ease;
  transition-delay: 0.8s;
}

.live-person-content .person-load-first,
.live-person-content .person-load-second {
  opacity: 1;
}

@media (max-width: 767px) {
  .person-full-description {
    top: 0;
  }

}

@media (max-width: 1023px) {
  .person-full-description svg {
    right: 7.2%;
    top: 65px;
    width: 20px;
    height: auto;
  }
}

@media (min-width: 768px) {
  .person-profile-picture {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .people-flex {
    justify-content: flex-start;
  }

  .people-flex > div {
    -webkit-box-flex: 0 0 25%;
        -webkit-flex: 0 0 25%;
           -moz-flex: 0 0 25%;
            -ms-flex: 0 0 25%;
                flex: 0 0 25%;
                padding-right: 2%;
  }

  .person-full-description {
    left: -40px;
    width: calc(100% + 80px);
  }

  .person-description-name {
    font-size: 48px !important;
    line-height: 0.75 !important;
  }

  .person-description-name span {
    font-size: 24px !important;
  }

}

/*--------------------------------------------------------------
## Modal Section - News
--------------------------------------------------------------*/
.news-block {
  transition: all 0.4s ease;
  padding-bottom: 25px;
  cursor: pointer;
}

.news-block.live-news {
  background: #000;
  color: #fff;
}

.news-text {
  position: relative;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  transition: border 0.4s ease;
  padding-top: 25px;
}

.news-block.live-news .news-text {
  border-bottom: 1px solid #fff;
}

.news-text > span {
  font-size: 12px;
  line-height: 1;
}

.news-text svg {
  height: 24px;
  width: auto;
  position: absolute;
  top: 49px;
  right: 0;
  transition: all 0.4s ease;
  z-index: 6000;
}

.news-block.live-news .news-text svg {
  transform: rotate(45deg);
}

.news-block.live-news .news-text svg line {
  stroke: #fff;
}

.news-logo {
  position: relative;
  padding-top: 15px;
  height: 50px;
}

.news-logo img {
  height: auto;
  width: 120px;
  display: block;
}

.news-logo img.white-logo {
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-block.live-news .news-logo img.dark-logo {
  display: none;
}

.news-block.live-news .news-logo img.white-logo {
  opacity: 1;
}

#modal-section li .news-text > p,
#modal-section li .news-text .dropdown-news p {
  font-size: 21px;
  margin: 0;
  width: 80%;
}

.dropdown-news {
  margin-top: 21px;
  display: none;
}

.dropdown-news a {
  border-bottom: 2px solid #4d43dc;
  transition: border 0.4s
}

.dropdown-news a:hover {
  border-color: #fff;
  color: #fff;
}

@media (min-width: 1024px) {
  #modal-section li > div#news-section.active-modal-info div.container {
    width: calc(100% - 80px);
  }

  .news-block {
    position: relative;
    padding-bottom: 35px;
  }

  .news-text svg {
    display: none;
  }

  #modal-section li .news-text > p,
  #modal-section li .news-text .dropdown-news p{
    width: 70%;
    font-size: 36px;
  }

  .dropdown-news {
    margin-top: 36px;
  }

  .news-text > span {
    font-size: 18px;
  }

  .news-logo {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 30%;
    height: auto;
  }

  .news-logo img {
    width: 180px;
    height: auto;
    float: right;
  }

  .news-logo img.white-logo {
    left: auto;
    right: 0;
    bottom: 50px;
    top: auto;
  }

  .news-block.live-news .news-logo img.white-logo {
    right: 0;
  }
}

@media (min-width: 1280px) {
  #modal-section li > div#news-section.active-modal-info div.container {
    width: calc(100% - 80px);
  }

  .news-block:hover {
    background: #000;
    color: #fff;
  }

  .news-block:hover .news-text {
    border-bottom: 1px solid #fff;
  }

  .news-block:hover .news-logo img.white-logo {
    opacity: 1;
  }

  .news-logo {
    top: auto;
    bottom: 50px;
  }

  .news-logo img.white-logo {
    bottom: 0;
    right: -180px;
  }

}

@media (min-width: 1900px) {
  .news-logo {
    top: auto;
    bottom: 60px;
  }

  .news-logo img {
    width: 30%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# Toggle Overlay
--------------------------------------------------------------*/
#toggle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 1250;
  display: none;
}

#toggle-overlay.show-overlay {
  display: block;
}

/*--------------------------------------------------------------
# Main Section - Background Carousel
--------------------------------------------------------------*/
#background-carousel {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: opacity 2s ease;
  opacity: 0;
}

#background-carousel .slick-list,
#background-carousel .slick-track {
  height: 100%;
}

#background-carousel .slide {
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*--------------------------------------------------------------
# Main Section - Main Content Section
--------------------------------------------------------------*/
#main-content-section {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1500;
}

#main-content-section.fixed-in-place {
  position: fixed;
  z-index: 4000;
}

#main-content-section h1 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 40px;
  margin-top: 0;
  line-height: 1;
  cursor: pointer;
}

#main-content-section h1 span {
  display: block;
  transition: opacity 1.6s ease-in-out;
  opacity: 0;
}

#main-content-section h1 span:first-of-type {
  transition: all 1.6s ease;
}

#main-content-section.fixed-in-place h1 span:first-of-type {
  color: #4d43dc;
  font-size: 24px;
  margin-bottom: 0;
}

#main-content-section.fixed-in-place h1 {
  font-size: 24px;
  margin-bottom: 0;
  padding-top: 28px;
  cursor: default;
}

#main-content-section h1 span:nth-of-type(2) {
  transition-delay: 0.2s;
}

#main-content-section h1 span:nth-of-type(3) {
  transition-delay: 0.6s;
}

#main-content-section.fixed-in-place h1 span.hidden-spans {
  transition: opacity 0.4s ease;
  opacity: 0 !important;
}

#main-content-section svg {
  display: block;
  width: 30px;
  height: 16px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.6s ease 1.6s;
  cursor: pointer;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
}

#main-content-section.fixed-in-place svg {
  display: none;
}

.bounce {
 animation: bounce 2s infinite;
 -webkit-animation: bounce 2s infinite;
 -moz-animation: bounce 2s infinite;
 -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
 40% {-webkit-transform: translateY(-10px);}
 60% {-webkit-transform: translateY(-5px);}
}

@-moz-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
 40% {-moz-transform: translateY(-10px);}
 60% {-moz-transform: translateY(-5px);}
}

@-o-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
 40% {-o-transform: translateY(-10px);}
 60% {-o-transform: translateY(-5px);}
}
@keyframes bounce {
 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
 40% {transform: translateY(-10px);}
 60% {transform: translateY(-5px);}
}

@media (min-width: 1024px) {
  #main-content-section h1 {
    font-size: 70px;
    text-align: center;
    margin-bottom: 60px;
  }

  #main-content-section h1 span {
    display: inline-block;
  }

  #main-content-section h1 span:first-of-type {
    float: left;
  }

  #main-content-section h1 span:last-of-type {
    float: right;
  }

  #main-content-section svg {
    width: 40px;
  }
}

@media (min-width: 1280px) {
  #main-content-section h1 {
    font-size: 90px;
  }
}

@media (min-width: 1440px) {
  #main-content-section h1 {
    font-size: 100px;
  }
}

@media (min-width: 1600px) {
  #main-content-section h1 {
    font-size: 110px;
  }
}

@media (min-width: 1700px) {
  #main-content-section h1 {
    font-size: 120px;
  }
}

@media (min-width: 1900px) {
  #main-content-section h1 {
    font-size: 135px;
  }
}

@media (min-width: 2100px) {
  #main-content-section h1 {
    font-size: 150px;
  }
}

@media (min-width: 2300px) {
  #main-content-section h1 {
    font-size: 200px;
  }
}

@media (min-height: 900px) {
  #main-content-section.fixed-in-place h1 span:first-of-type {
    font-size: 36px;
  }

  #main-content-section.fixed-in-place h1 {
    font-size: 36px !important;
    margin-bottom: 0;
    padding-top: 38px;
  }
}

/*--------------------------------------------------------------
# Main Section - Ticker Section
--------------------------------------------------------------*/
#ticker-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1500;
  transition: opacity 0.4s ease;
  background: #000;
}

body.admin-bar #ticker-wrap {
  bottom: 32px;
}

#ticker-wrap.hide-ticker {
  opacity: 0;
}

@keyframes markets-bar-marquee {
    0% {
        left: 0
    }
    100% {
        left: -50%
    }
}

.markets-bar {
    width: 100%;
    height: 48px;
    margin-left: 0;
    padding-bottom: 3px;
    padding-top: 8px;
}
.markets-bar .markets-bar-marquee {
    overflow: hidden;
    white-space: nowrap;
}
.markets-bar .markets-bar-collection {
    display: table-cell;
    position: relative;
    animation: markets-bar-marquee 200s linear infinite running;
}

.markets-bar .markets-bar-item {
    display: inline-block;
    vertical-align: top;
    line-height: 1rem;
    padding-left: 1em;
}
.markets-bar .markets-bar-item:after {
  content: "|";

}
.markets-bar .markets-bar-item__link {
    display: inline-block;
}
.markets-bar .markets-bar-item__link:hover {
    color: #fff;
}
.markets-bar .markets-bar-item__headline {
    padding-right: 1em;
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.4s ease;
}

.markets-bar .markets-bar-item__headline:hover {
  color: #fff;
}

.markets-bar .markets-bar-ad .ad-v2[data-position=scrollbar] .bb-ads__rendered iframe {
    width: 100%
}
.markets-bar .markets-bar-story {
    height: 30px;
}
.markets-bar .markets-bar-title {
    float: left;
    white-space: nowrap;
    display: none;
}
.markets-bar .markets-bar-title span {
    font-size: 16px;
    color: #fff;
    padding-right: 1em;
}
.markets-bar .markets-bar-title:after {
    content: "";
    display: inline-block;
    height: 16px;
    border-right: 1px solid rgba(255, 255, 255, .35);
    vertical-align: middle
}

@media (min-width: 768px) {
  .markets-bar .markets-bar-title {
    display: block;
  }

  .markets-bar {
      height: 48px;
      margin-left: 7.2%;
      padding-bottom: 3px;
      padding-top: 8px;
  }
}

@media (min-width: 1024px) {
  .markets-bar {
    margin-left: 40px;
  }

}






.ticker-carousel div {
  height: 60px;
  width: 1000px;
  font-size: 12px;
  color: white;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  color: #fff;
  padding: 0 30px;
}

.ticker-carousel div:hover {
  opacity: 1;
  cursor: pointer;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-wrap {
  position: absolute;
  bottom: 30px;
  width: 85.6%;
  overflow: hidden;
  height: 30px;
  padding-left: 85.6%;
  z-index: 1500;
  margin-left: 7.2%;
  transition: opacity 0.4s ease;
}

.ticker-wrap.hide-ticker {
  opacity: 0;
}

.ticker {
  display: inline-block;
  height: 12px;
  line-height: 12px;
  white-space: nowrap;
  padding-right: 100%;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
 -webkit-animation-name: ticker;
         animation-name: ticker;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}

.ticker__item {
  display: inline-block;
  padding: 0;
  font-size: 12px;
  color: white;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.ticker__item::after {
  content: "|";
  padding: 0 0.5em 0 0.7em;
}

.fixed__ticker__item {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 12px;
  color: white;
}

@media (min-width: 768px) {
  .ticker-wrap {
    bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .ticker-wrap {
    width: calc(100% - 80px);
    padding-left: calc(100% - 80px);
    margin-left: 40px;
  }
}

@media (min-width: 1280px) {
  .ticker-wrap {
    height: 28px;
  }

  .ticker {
    height: 14px;
    line-height: 14px;
  }

  .ticker__item {
    cursor: pointer;
  }

  .ticker__item:hover {
    opacity: 1;
  }

  .fixed__ticker__item {
    top: 10px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Scrolling Section - General
--------------------------------------------------------------*/
#scrolling-section {
  position: relative;
  top: 100%;
  color: #fff;
}

#scrolling-section .spacer {
  height: 500px;
}

.scrolling-content {
  width: 100%;
  position: relative;
}

.scrolling-content div p {
  font-size: 24px;
  color: #000;
  transition: color 0.8s ease;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
}

.scrolling-content > div :first-child {
  margin-top: 0;
}

.scrolling-content  div.make-visible p {
  color: #fff;
}

.scrolling-content > div.scrollmagic-pin-spacer {
  opacity: 1;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.delayed-appear {
  opacity: 0;
  /*
  transition: opacity 1s ease 4s;
  */
  transition: opacity 0.8s ease;
}

/*
.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-5 {
  opacity: 0.05;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-10 {
  opacity: 0.1;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-25 {
  opacity: 0.25;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-35 {
  opacity: 0.35;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-40 {
  opacity: 0.4;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-5 {
  transition-delay: 2.75s;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-10 {
  transition-delay: 2.25s;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-25 {
  transition-delay: 1.5s;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-35 {
  transition-delay: 0.75s;
}

.scrolling-content > div.scrollmagic-pin-spacer div div p span.opacity-40 {
  opacity: 0.4;
}

.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text p span {
  opacity: 1;
}

*/



.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-1 p span.load-in-1st,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-2 p span.load-in-2nd,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-2 p span.opacity-35,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-2 p span.opacity-25,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-3 p span.opacity-10,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-3 p span.load-in-3rd,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-3 p span.opacity-5,
.scrolling-content > div.scrollmagic-pin-spacer div div.load-in-more-text-4 p span.delayed-appear {
  opacity: 1;
}

.scrollable-images,
.scrollable-images-2,
.scrollable-images-3 {
  width: 100%;
  position: absolute;
  display: none;
  top: 400px;
}

.scrollable-images-2,
.scrollable-images-3 {
  top: 0;
  position: relative;
}

.scrollable-images img,
.scrollable-images-2 img,
.scrollable-images-3 img {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
  width: 245px;
  height: auto;
}

.scrollable-images img.portrait-image,
.scrollable-images-2 img.portrait-image,
.scrollable-images-3 img.portrait-image {
  width: 170px;
  height: auto;
}

.scrollable-images.visible-images img,
.scrollable-images-2.visible-images img,
.scrollable-images-3.visible-images img {
  opacity: 1;
}

.scrollable-images img:nth-child(1),
.scrollable-images-2 img:nth-child(1),
.scrollable-images-3 img:nth-child(1) {
  top: 0;
  left: -150px;
}

.scrollable-images-2 img:nth-child(1) {
  top: 100px;
}

.scrollable-images-3 img:nth-child(1) {
  top: 175px;
  left: -200px;
}

.scrollable-images img:nth-child(2),
.scrollable-images-2 img:nth-child(2),
.scrollable-images-3 img:nth-child(2) {
  top: 100px;
  left: 50px;
}

.scrollable-images-2 img:nth-child(2) {
  top: 0;
  z-index: -1;
}

.scrollable-images-3 img:nth-child(2) {
  top: 0;
  left: auto;
  right: 250px;
}

.scrollable-images img:nth-child(3),
.scrollable-images-2 img:nth-child(3),
.scrollable-images-3 img:nth-child(3) {
  top: 150px;
  right: 100px;
}

.scrollable-images-2 img:nth-child(3) {
  top: 0;
  right: 400px;
  z-index: -1;
}

.scrollable-images-3 img:nth-child(3) {
  top: 125px;
  right: 50px;
}

.scrollable-images img:nth-child(4),
.scrollable-images-2 img:nth-child(4),
.scrollable-images-3 img:nth-child(4) {
  top: 550px;
  right: 50px;
}

.scrollable-images-2 img:nth-child(4) {
  top: 100px;
  right: 0;
}

.scrollable-images-3 img:nth-child(4) {
  top: 625px;
  right: 0;
}

.scrollable-images img:nth-child(5),
.scrollable-images-2 img:nth-child(5),
.scrollable-images-3 img:nth-child(5) {
  top: 650px;
  left: 0;
  right: 0;
  margin: auto;
}

.scrollable-images-2 img:nth-child(5) {
  top: 500px;
  right: 100px;
  left: auto;
  margin: 0;
}

.scrollable-images-3 img:nth-child(5) {
  top: 550px;
  left: 200px;
  right: auto;
  margin: 0;
  z-index: -1;
}

.scrollable-images img:nth-child(6),
.scrollable-images-2 img:nth-child(6),
.scrollable-images-3 img:nth-child(6) {
  top: 500px;
  left: -100px;
  right: auto;
}

.scrollable-images-2 img:nth-child(6) {
  top: 650px;
  left: 50px;
}

.scrollable-images-3 img:nth-child(6) {
  top: 625px;
}

.scrollable-5 {
  padding-bottom: 400px;
}

@media (max-width: 1023px) {
  .scrollable-2,
  .scrollable-5,
  .scrollable-6 {
    position: relative;
    z-index: 5000;
    background: #000;
    padding-top: 20px;
    padding-bottom: 200px;
  }
}

@media (min-width: 1024px) {
  .scrolling-content {
    width: 70%;
    float: right;
    padding-right: 100px;
    z-index: 5000;
  }

  .scrollable-images,
  .scrollable-images-2,
  .scrollable-images-3 {
    display: block;
  }

  .scrollable-1,
  .scrollable-3,
  .scrollable-4 {
    padding-top: 0;
  }

  .scrollable-2,
  .scrollable-5,
  .scrollable-6 {
    padding-top: 170px;
  }

  .scrolling-content div :last-child {
    margin-bottom: 0;
  }

  .scrollable-2,
  .scrollable-6 {
    padding-bottom: 2000px;
  }

}

@media (min-width: 1280px) {
  .scrolling-content {
    padding-bottom: 6000px;
  }
}

@media (min-width: 1900px) {
  .scrollable-images img,
  .scrollable-images-2 img,
  .scrollable-images-3 img {
    width: 330px;
    height: auto;
  }

  .scrollable-images img.portrait-image,
  .scrollable-images-2 img.portrait-image,
  .scrollable-images-3 img.portrait-image {
    width: 230px;
    height: auto;
  }

  .scrollable-images-3 img:nth-child(5) {
    left: 500px;
  }
}

@media (min-height: 900px) {
  .scrolling-content div p {
    font-size: 36px;
  }

  .scrollable-2,
  .scrollable-5,
  .scrollable-6 {
    padding-top: 40px;
  }
}
/*--------------------------------------------------------------
# Scrolling Section - Scroll Buttons
--------------------------------------------------------------*/
#scroll-buttons {
  position: fixed;
  right: 7.2%;
  top: calc(50% - 35px);
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#scroll-buttons.fade-in-buttons {
  opacity: 1;
}

#scroll-buttons > div {
  width: 6px;
  height: 6px;
  background: none;
  border: 1px solid #4d43dc;
  margin-bottom: 20px;
  transition: background 0.4s ease;
}

#scroll-buttons > div:last-of-type {
  margin-bottom: 0;
}

#scroll-buttons > div.live-button {
  background: #4d43dc;
}

@media (min-width: 1024px) {
  #scroll-buttons {
    right: 40px;
  }
}

/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/
#four-oh-four {
  color: #fff;
  text-align: center;
  margin-top: 150px;
}

#four-oh-four h1 {
  font-size: 120px;
  color: #4d43dc;
}

#four-oh-four a {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  #four-oh-four {
    margin-top: 250px;
  }
}

/*--------------------------------------------------------------
## Page Template
--------------------------------------------------------------*/
.left-container {
  padding: 145px 7.2%;
}

h1.ind-page-title {
  font-size: 48px;
  line-height: 1.08;
  font-weight: normal;
  font-family: 'NHaasGroteskDSPro-75Bd', 'Helvetica', sans-serif;
  margin-bottom: 0.5em;
}

.left-container a {
  border-bottom: 2px solid #4d43dc;
  transition: border-color 0.4s ease;
}

.left-container a:hover {
  border-color: #000;
}

.page-content-modal-contact-info {
  padding-bottom: 145px;
  position: static !important;
}

.page-content-modal-contact-info ul {
  padding-left: 0;
  list-style: none;
}

.left-container ul {
  padding-left: 60px;
}

.left-container p,
.left-container li {
  font-size: 18px;
}

@media (min-width: 1024px) {
  .left-container {
    padding: 187px 40px;
    padding-right: 0;
    width: 71%;
  }

  h1.ind-page-title {
    font-size: 82px;
    line-height: 1.1;
  }
}

/*--------------------------------------------------------------
## Cookie Consent
--------------------------------------------------------------*/
#catapult-cookie-bar {
  font-size: 16px;
  padding-left: 40px !important;
}

div.x_close span {
  background: #fff;
}
/*--------------------------------------------------------------
## my editing
--------------------------------------------------------------*/
.typing-effect {
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #000;
  display: inline-block;
  animation: blink-caret 0.5s step-end infinite;
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}

.grand-title {
  font-size: 36px; /* Larger text for a grand title */
  font-weight: bold; /* Bold text */
  color: black; /* Text color, change it as needed */
  text-transform: uppercase; /* Uppercase letters for emphasis */
  position: relative; /* To position the underline */
  display: inline-block; /* Required for animation */
  padding-bottom: 10px; /* Extra space for the underline effect */
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.grand-title::after {
  content: ''; /* Creates the underline */
  position: absolute;
  bottom: 0; /* Positions underline at the bottom of the text */
  left: 0;
  width: 0; /* Starts with no underline width */
  height: 4px; /* Height of the underline */
  background-color: #4d43dc; /* Underline color */
  border-radius: 2px; /* Rounded corners for a nice shape */
  transition: width 0.4s ease; /* Animation for the underline */
}

.grand-title:hover {
  color: #4d43dc; /* Change text color on hover */
}

.grand-title:hover::after {
  width: 100%; /* Expands the underline to the full width of the text */
}
/* Base styles for the title */
.animated-title {
  font-size: 40px; /* Larger text */
  font-weight: bold; /* Bold font */
  color: #333; /* Initial text color */
  text-transform: uppercase; /* Uppercase letters */
  display: inline-block; /* Necessary for animation */
  opacity: 0; /* Start as invisible */
  transform: scale(0.5); /* Start with scaled-down text */
  animation: fadeInScale 2s ease-out forwards, colorChange 2s ease-in-out 2s; /* Apply animations */
}

/* Keyframes for fadeIn and scaling effect */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Keyframes for color change effect */
@keyframes colorChange {
  0% {
    color: #333;
  }
  50% {
    color: #4d43dc; /* Change to a purple color halfway */
  }
  100% {
    color: #4d43dc; /* Change to a tomato color */
  }
}
