html, body, pre, code, kbd, samp, input, button, select, option, textarea {
  font-family: var(--font-roboto);
  font-weight: var(--font-regular);
  font-size: 15px;
  color: var(--color-white);
}

p {
  line-height: 145%;
  margin: 0px 0 20px 0;
}
p a {
  color: var(--color-black);
  text-decoration: underline;
}
p a:hover {
  color: var(--color-white);
}
strong {
  font-weight: var(--font-bold);
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: var(--color-white);
}
button, a, input[type="button"], .btn {
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: var(--font-regular);
  font-size: 100%;
  line-height: 130%;
}
body {
  background-color: var(--color-dark-1);
  padding-top: 80px;
}
/*
body::-webkit-scrollbar {
  background-color: var(--color-theme-2);
  width: 0.5rem;
  border-radius: 0.2rem;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-theme-1);
  border-radius: 0.2rem;
}
*/
.is-hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.fig-img {
  position: relative;
}
.fig-img img {
  width: 100%;
  height: auto;
  max-width: inherit;
}
.section-wrapper {
  padding: 80px 0px;
}
.section-wrapper.is-same-bg {
  padding-top: 0px;
}
.bg-white {
  background-color: var(--color-white);
}
h1.section-headline {
  font-weight: var(--font-light);
  font-size: 300%;
  margin: 0px 0 20px 0;
  position: relative;
  line-height: 100%;
}


h2.section-headline {
  font-weight: var(--font-light);
  font-size: 220%;
  margin: 0px 0 20px 0;
  position: relative;
  line-height: 100%;
}


.section-headline span {
  font-size: 50%;
  font-weight: var(--font-semibold);
}
.section-headline strong {
  font-weight: var(--font-bold);
}

.content-block{
	padding-bottom: 50px;
}
.content-block:last-child{
	padding-bottom: 0px;
}

.flex-el {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.header-wrapper {
  position: fixed;
  transform: translate3d(0, 0, 0);
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-dark-1);
  z-index: 1000;
  transition: 0.2s transform ease-in;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.header-wrapper .container {
  height: 100%;
  width: 90%;	
}
.header-wrapper .header-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
/*  width: 120px;*/
  width: 140px;
  left: 0;	
}
.header-wrapper .header-logo svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.logo-text svg{
	display: none;
}

.logo-text img{
	width: 100%;
	height: auto;
}

.header-wrapper.is-up {
  /*	 transform: translate3d(0,-100%,0);*/
}
.header-wrapper .header-nav {
  left: 140px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}




.header-wrapper .header-nav .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-weight: var(--fomt-medium);
  font-weight: var(--font-medium);	
}
.header-wrapper .header-nav .menu > li {
  padding: 20px 15px;
  position: relative;
  margin-left: 10px;	
}

.header-wrapper .header-nav .menu > li > a{
	position: relative;
}

.header-wrapper .header-nav .menu > li.menu-item-has-children > a::after {
    content: '▼';
    vertical-align: middle;
    font-size: 12px;
    margin-left: 5px;
    font-family: system-ui;
}
.header-wrapper .header-nav .menu > li.menu-item-has-children:hover > a::after  {
	 content: '▲';
}

.header-wrapper .header-nav .menu > li.current-menu-item > a, 
.header-wrapper .header-nav .menu > li.current-menu-parent > a 

{
  color: var(--color-theme-1);
}
.header-wrapper .header-nav .menu > li > a:hover {
  color: var(--color-theme-1);
}

/*class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-633"*/



.header-wrapper .sub-menu {
    position: absolute;
    top: 55px;
    left: 0px;
    width: 230px;
    background: #ffff;
    border-radius: 6px;
    color: var(--color-black);
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s ease-in;
	padding: 15px 0px;
	transform: translateY(-10px);
}


.header-wrapper .sub-menu::after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
	pointer-events: none;
}

.header-wrapper .header-nav .menu > li:hover .sub-menu{
	opacity: 1;
	transform: translateY(0px);
	pointer-events: inherit;
}

.header-wrapper .sub-menu li a{
	color: var(--color-dark-2);
	padding: 7px 25px;
	display: block;
}
.header-wrapper .sub-menu li a:hover,
.header-wrapper .sub-menu li.current-menu-item a
{
	color: var(--color-theme-1);
}







.social-media {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	justify-content: flex-start
}
.header-wrapper .social-media {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  	
}
.social-media li {
  margin-left: 15px;
	width: 28px;
	text-align: center;
}
.social-media li a {
  display: inline-block;
}
.social-media li a svg {
  width: 80%;
  vertical-align: middle;
}
.sub-banner-wrapper {
  position: relative;
  height: 200px;
  display: block;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.brand-logo {
  position: absolute;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.banner-wrapper {
  position: relative;
  padding-bottom: 47%;
  height: 0;
  overflow: hidden;
}
.banner-wrapper .banner-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.banner-wrapper::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: linear-gradient(rgba(41, 41, 41, 0.25) 0%, #1a1a1a 100%);
  pointer-events: none;
  z-index: 99;
}
.banner-wrapper .container {
  height: 100%;
  z-index: 99;
}
.banner-wrapper .banner-caption {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 2;
}
.footer-wrapper {
  background-color: var(--color-dark-2);
  padding: 70px 0px 30px 0;
  font-size: 90%;
  font-family: var(--font-poppins);
}
.footer-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: var(--font-lato);
}
.footer-wrapper h3 {
  font-size: 115%;
  font-weight: var(--font-semibold);
  margin: 0 0 20px 0;
}
.footer-top ul > li {
  margin-bottom: 8px;
}
.footer-top ul > li > a {
  display: inline-block;
  padding: 2px 0px;
}
.footer-top ul > li > a:hover, .footer-top ul > li.current-menu-item > a, .footer-wrapper h3 a:hover, .footer-wrapper h3 a.is-active, .footer-top ul > li > a.is-active {
  color: var(--color-theme-1);
}
.footer-bottom {
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
/*  width: 120px;*/
  width: 140px;
  display: block;
}

.footer-logo img{
	width: 100%;
	height: auto;
}

.footer-logo svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
	display: none;
}
.legal-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-poppins);
  font-weight: var(--font-medium);
}
.legal-nav ul li {
  padding: 0px 5px;
}
.legal-nav ul li a {
  text-decoration: underline;
  display: inline-block;
}
.legal-nav ul li a.is-active,
.legal-nav ul li a:hover {
  color: var(--color-theme-1);
}
.brands-wrapper {
  padding: 40px 0px 0px 0px;
}
.our-brands {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0 0 0;
  margin: 0px 0px;
}
.our-brands li {
  width: 25%;
  padding: 4px;
}
.our-brands li a {
  display: block;
  padding-top: 100%;
  height: 0px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.our-brands li a .thumb-bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0px;
	z-index: 1;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	filter: grayscale(100);
	opacity: 0.6;
	transition: 0.3s ease-in;
}
.our-brands li a:hover .thumb-bg{
	filter: grayscale(0);
	opacity: 0.8;
}


.our-brands li a span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;	
}
.about-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about-container .is-left {
  width: 50%
}
.about-container .is-right {
  width: 50%
}
.about-container .section-bottom {
  padding-top: 10px;
}
.btn {
  background-color: var(--color-white);
  color: var(--color-dark-1);
  height: 46px;
  border-radius: 25px;
  overflow: hidden;
  line-height: 46px;
  padding: 0px 30px;
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: var(--font-medium);
}
.btn.btn-theme {
  background-color: var(--color-theme-1);
}
.leadership-wrapper {
  padding: 50px 0px;
  margin: 30px 0px 60px 0;
  background: rgb(88, 33, 130);
  background: -moz-linear-gradient(90deg, rgba(88, 33, 130, 1) 0%, rgba(254, 191, 44, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(88, 33, 130, 1) 0%, rgba(254, 191, 44, 1) 100%);
  background: linear-gradient(90deg, rgba(88, 33, 130, 1) 0%, rgba(254, 191, 44, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#582182", endColorstr="#febf2c", GradientType=1);
}
.leadership-container {
  position: relative;
}
.leadership-container .is-left {
  width: 35%
}
.leadership-container .is-right {
  width: 55%;
  position: absolute;
  right: 0;
  top: -10px;
}
.leadership-container .leaders {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.leadership-container .lead-col {
  width: 25%;
  position: relative;
}
.leadership-container .lead-col:nth-child(1) {
  margin-top: 0px;
}
.leadership-container .lead-col:nth-child(2) {
  margin-top: -80px;
}
.leadership-container .lead-col:nth-child(3) {
  margin-top: 0px;
}
.leadership-container .lead-col:nth-child(4) {
  margin-top: -80px;
}
.leadership-container .single-lead {
  position: relative;
  padding: 8px;
}
.leadership-container .single-lead figure {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 0px;
  padding-top: 130%;
}
.leadership-container .single-lead .fig-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.leadership-container .single-lead .fig-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.leadership-container .single-lead .fig-img::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background: linear-gradient(rgba(0, 0, 0, 0) 35%, #000 100%);
}
.leadership-container .single-lead figcaption {
  position: absolute;
  text-transform: uppercase;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  font-weight: var(--font-bold);
  font-size: 75%;
  z-index: 99;
}
.content p a{
	color: var(--color-theme-1);
	text-decoration: none;
}
.content p a:hover{
	text-decoration: underline;
}
.content h2{
	font-weight: var(--font-semibold);
    font-size: 150%;
    margin: 0px 0 10px 0;
    position: relative;
    line-height: 100%;
	padding-top: 10px;
}

figure.is-right{
	float: right;
	width: 45%;
}
figure.is-right img{
	width: 100%;
}

.content-type-2, .content-type-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0px -10px;
}


.content-type-2 .single-item {
    width: 50%;
    padding: 0px 10px;
    margin-top: 0px;
}


.content-type-3 .single-item {
    width: 33.333%;
    padding: 0px 10px;
    margin-top: 30px;
}





.content-type-3 .single-item a {
    display: block;
    height: 100%;
}
.content-type-3 .single-item a:hover{
	color: var(--color-theme-1);
}
.content-type-3 .single-item figure {
    overflow: hidden;
    height: 100%;
    transition: 0.2s all ease-in;
}
.content-type-3 .single-item .post-img {
	border-radius: 10px;
	overflow: hidden;
    position: relative;
    padding-bottom: 56%;
    height: 0;
}
.content-type-3 .single-item figcaption {
    padding: 25px 10px;
    position: relative;
    z-index: 1;
}
.content-type-3 .single-item .post-des {
    font-size: 105%;
}
.content-type-3 .single-item .post-des p:last-child {
    margin-bottom: 15px;
}
.all-leaders{
	padding-top: 40px; 
}
.all-leaders .single-lead{
	margin: 0 0 50px 0;
}
.all-leaders .single-lead figure{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.all-leaders .single-lead .fig-img{
	width: 150px;
	height: 195px;
	position: relative;
    border-radius: 15px;
    overflow: hidden;

} 
.all-leaders .single-lead .fig-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    background: linear-gradient(rgba(0, 0, 0, 0) 35%, #000 100%);
}


.all-leaders .single-lead .fig-img img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
} 
.all-leaders .single-lead figcaption{
	width: calc(100% - 190px);
	position: relative;
	padding-bottom: 45px;
}

.all-leaders .single-lead figcaption h3 {
    font-size: 160%;
    font-weight: var(--font-semibold);
    margin: 0 0 5px 0;
}
.all-leaders .single-lead figcaption h4{
	 font-size: 100%;
    font-weight: var(--font-semibold);
	text-transform: uppercase;
    margin: 0 0 10px 0;
}

.all-leaders .single-lead figcaption .des{
	
}

.all-leaders .single-lead figcaption .des p:last-child{
	margin: 0 0 0 0;
	
}
.all-leaders .single-lead .social-icons{
	position: absolute;
	bottom: 2px;
	left: 0;
	display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.all-leaders .single-lead .social-icons a{
	width: 26px;
	height: 26px;
	border-radius: 100%;
	overflow: hidden;
	margin-right: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	font-size: 0px;
	text-indent: -200px;
}
.all-leaders .single-lead .social-icons a:hover{
	opacity: 0.8;
}

.all-leaders .single-lead .social-icons a.is-twitter{
	background-image: url(../images/ico-twitter.svg);
	
}


.qt-pub {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    margin-top: 40px;
    display: flex;
    margin-bottom: 40px;
}

.qt-pub img {
    height: 45px;
    mix-blend-mode: luminosity;
    border-radius: 5px;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    width: auto;
	opacity: 0.8;
}




