/*
Theme Name: mitu NGL Sites Main Theme
Theme URI:
Author: Jorge Delbouis / Sergio Manzur
Author URI: https://nglmitu.com/
Description: Main theme to be used on all mitu NGL sites
Version: 1.0
*/

/* -------------------------------------- GLOBAL STYLES -------------------------------------- */
html, body{
    height: 100%;
}
html {
    font-size:62.5%; /*10px = 1 rem*/
    box-sizing: border-box;
    font-family: var(--primary-font);
}
*, *:before, *:after{
    box-sizing: inherit;
    -moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
body {
    max-width: 180rem;
    margin: 0 auto;
    padding:0;
    font-size: 1.3rem;
    line-height: 2rem;
    background-color:#ffffff;  
}
a {
    text-decoration: none;
    cursor: pointer;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
p{
    text-align: left;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
hr{
    border:1px solid lightgray;
}
footer.site-footer a{
    color:var(--footer-font-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
body.home header.site-header a{
    color:var(--alt-header-font-color);
}

header.site-header a{
    color:var(--header-font-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
body.logged-in .site-header{
	z-index:0 !important;
}

main {
    background-color: white;
    position: relative;
    z-index: 0;
}
h1,h2,h3,h4,h5,h6{
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
h2.wp-block-heading{
    font-size: 2.5rem;
    line-height: 4.3rem;
}
.unclickable{
    pointer-events: none;
    cursor:default;
}
body.wearemitu hr.wp-block-separator{
    border: 0.5px solid lightgrey;
    width: 50%;
}
.center{
    text-align: center;
}
@media (max-width: 1245px){
    h2.wp-block-heading{
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
    }
@font-face{
    font-family: 'MontserratVF';
    font-weight: 1 1000;
    src: url("https://fierce-production.s3.us-west-2.amazonaws.com/fonts/Montserrat-VariableFont_wght.ttf");
}
button.icon{
    color:white;
}
/* -------------------------------------- MAIN HEADER -------------------------------------- */
body.home .site-header{
    background-color:var(--alt-header-bg-color);
    color:var(--alt-header-font-color);
    position: fixed;
    top:0;
    z-index: 30;
    border-bottom:1px solid lightgray;
    margin-bottom:4rem;
    width:100%;
    max-width: 180rem;
}

.site-header{
    background-color:var(--header-bg-color);
    color:var(--header-font-color);
    position: fixed;
    top:0;
    z-index: 30;
    width: 100%;
    max-width: 180rem;
}
body.admin-bar .site-header{
    top:32px;
}
div.header-grid{
    position: relative;
    height: 7rem;
}
body.home img.custom-logo{
    max-width: 11rem;
}
img.custom-logo,body.home img.custom-logo{
    max-width: 9.2rem;
    width: 100%;
    height: auto;
}
@media (max-width: 1245px){
body.home div.main-wrapper{
    padding-top:2rem;
}
body.home div.navigation{
    background: rgba(255,255,255,0.90);  
}
div.navigation{
    display:flex;
    position: relative;
    overflow:hidden;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    padding: 4rem;
    line-height: 3.9rem;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    height: 100vh;
    transform: translateY(-100%);
}
div.navigation.active{
    display: flex;
    transform: translateY(-100%);
    animation: slideFromTop 0.3s forwards;
    z-index: 0;
}
div.navigation.inactive{
    animation: slideFromBottom 0.3s forwards; 
    z-index: 0;
    display: none;
}

@keyframes slideFromTop {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  @keyframes slideFromBottom {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }
  a.icon{
    text-decoration: none;
    color:var(--header-font-color);
}
div.logo i{
    font-size: 2rem;
    position: absolute;
    left:2rem;
    top: calc(3.5rem - 1rem);
}

}
div.logo{
    text-align: center;
    padding:2rem 0;
    height: auto;
    position: relative;
    z-index: 10;
}

i.fa-solid.fa-magnifying-glass{
    font-size: 2rem;
    position: absolute;
    right: 2rem;
    top:calc(3.5rem - 1rem);
    z-index: 10;
}
@media (min-width: 1245px){
    body.home div.main-wrapper{
        padding-top:4rem;
    }
   /* body.home div.site-header{
        margin-bottom:10rem;
    }*/
    body.home img.custom-logo{
        max-width: 15rem;
    }
    body.home i.fa-solid.fa-magnifying-glass{
        top:18rem;
    }
    body.home div.header-grid{
        display:grid;
        grid-template-columns: auto;
        grid-template-rows: 100%;
        place-items: center;
        border-bottom:1px solid lightgray;
        height: 15.9rem;
    }
    div.header-grid{
        display:grid;
        grid-template-columns: 15rem calc(100% - 15rem);
        grid-template-rows: 100%;
        place-items: center;
    }
    body.home div.navigation{
    display:flex;
    width:100%;
    justify-content: center;
    padding:2rem 0;
    border-bottom:1px solid lightgray;
    background-color:#ffffff;
    border-top:1px solid lightgray;
    }
    div.navigation{
        display: block;
    }
    nav.menu-main-menu-container ul{
        display: flex;
    }
    nav.menu-main-menu-container ul li.menu-item{
        margin-right:1.5rem;
        font-size: 1.1rem;
        letter-spacing: 0.12rem;
        position: relative;
        z-index: 101;
    }
    body.wearemitu nav.menu-main-menu-container ul li.menu-item{
        font-size: 1.3rem;
        margin-right: 3rem;
    }
    body.wearemitu li.dropdown{
        list-style-type:disclosure-closed;
    }
    body.wearemitu li.dropdown:hover{
        list-style-type:disclosure-open;
    }
    nav.menu-main-menu-container ul li.menu-item::before{
        content: '';
        position: absolute;
        top: 50%;
        left: -5px; 
        width: 0px; 
        height: 20px; 
        background-color: transparent; 
        transition: width 0.3s ease-in-out;
        z-index:-1;
    }
    nav.menu-main-menu-container ul li.menu-item.wam-nav::before{
        left:0px;
    }
    body.fierce nav.menu-main-menu-container ul li.menu-item:hover::before{
        width: calc(100% + 10px);
        background-color: #E43273;
    }
    body.wearemitu nav.menu-main-menu-container ul li.menu-item:hover::before{
        width: calc(100% + 10px);
        background-color: #8B00F3;
    }
    body.home nav.menu-main-menu-container ul li.menu-item:hover::before{
        width: calc(100% + 10px);
    }
    body.home.fierce nav.menu-main-menu-container ul li.menu-item:hover::before{
        background-color:#FFD6E7;
    }
    body.home.wearemitu nav.menu-main-menu-container ul li.menu-item:hover::before{
        background-color:#E0D6FF;
    }
    body.home.wearemitu nav.menu-main-menu-container ul li.menu-item.wam-nav:hover::before{
        width: 100%;
        background-color:#E0D6FF;
    }
    body.category.fierce ul li.current-menu-item::before,
    body.fierce nav.menu-main-menu-container ul li.menu-item.current-post-parent::before{
        width: calc(100% + 10px);
        background-color:#E43273;
    }
    body.category.wearemitu ul li.current-menu-item::before,
    body.wearemitu nav.menu-main-menu-container ul li.menu-item.current-post-parent::before,
    body.wearemitu nav.menu-main-menu-container ul li.menu-item.current-post-ancestor::before,
    body.wearemitu nav.menu-main-menu-container ul li.menu-item.current-menu-parent::before{
        width: 100%;
        background-color:#8B00F3;
        left:0px;
    }
    body.category.wearemitu nav.menu-main-menu-container ul li.menu-item:hover::before,
    body.single.wearemitu nav.menu-main-menu-container ul li.menu-item:hover::before,
    body.search.wearemitu nav.menu-main-menu-container ul li.menu-item:hover::before{
        width: 100%;
        left:0px;
        background-color: #8B00F3;
    }
    div.logo i{
        display: none;
    }
    body.wearemitu div.navigation ul.sub-menu{
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
        margin-top: 1rem;
        border: 1px solid lightgrey;
        padding: 1rem 2rem;
        display:none;
        position: absolute;
        width: 18.7rem;
        background-color: white;
        left:-3rem;
    }
    body.wearemitu div.navigation li.dropdown:hover ul.sub-menu{
        display:flex;
    }
    div.navigation li.dropdown:hover ul.sub-menu li a{
        color:black;
    }
    body.wearemitu div.navigation li.dropdown:hover ul.sub-menu li.menu-item::before{
        content: none;
    }
    body.wearemitu div.navigation li.dropdown:hover ul.sub-menu li.menu-item:hover a{
       border-bottom:2px solid #E0D6FF;
    }
   
}
@media (max-width: 1245px){
    ul.sub-menu{
        display:none;

    }
    nav.menu-main-menu-container{
        width:70%;
    }
  li.dropdown.active ul.sub-menu{
    display: block;
    padding-left:1.5rem;
  }
  body.home.wearemitu i.fa-solid.fa-bars, body.home.wearemitu i.fa-solid.fa-magnifying-glass{
    color:white;
}
li.dropdown{
	list-style-type:disclosure-closed;
}
li.dropdown.active{
	list-style-type:disclosure-open;
}
}
@media (min-width: 1400px){
    nav.menu-main-menu-container ul li.menu-item{
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
    }
}

.wp-block-image {
    display: flex;
    justify-content: center;
    text-align: center;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}
/* -------------------------------------- SEARCH -------------------------------------- */
div.site-search.active{
    display: block;
}
div.site-search.inactive{
    display: none;
}
body.home div.site-search{
    top:228px;
}
div.site-search{
    background-color: #ffffff;
    width: 100%;
    height: 70px;
    position: absolute;
    max-width: 1800px;
    top: 70px;
    z-index: 20;
    padding:0 2rem;
    box-shadow: 0 .5rem .5rem lightgrey;
}
form.search-form{
    margin:1rem 0;
}
input.search-field,input.search-field:focus{
    -webkit-appearnce: none; 
    appearance: none;
    width: 100%;
    margin: 0 auto;
    display: block;
    height: 50px;
    font-size: 1.6rem;
    padding: 0 2rem;
    border: 1px solid lightgrey;
    border-radius: 0%;
    background-color:#ffffff;  
}
input.search-field:focus {
    outline: none !important;
    border:1px solid lightgrey;
  }
ul#search-results{
    width:100%;
    margin:0 auto;
    height: 4rem;
    vertical-align: top;
}
ul#search-results li{
    font-size:1.6rem;
    padding:1rem 2rem;
    background-color:rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
ul#search-results li a{
    text-decoration: none;
    color:#ffffff;
}
@media (min-width: 1245px){
    body.home.admin-bar div.site-search{
        top:232px;
    }
    body.admin-bar div.site-search{
        top:102px;
    }
    div.site-search{
        padding: 0;
    }
input.search-field{
    max-width: 50%;
}
form.search-form{
  padding:0;
}
ul#search-results{
    max-width: 50%;
}
}
@media (max-width: 1245px){
    body.home.admin-bar div.site-search{
        top:119px;
    }
    body.admin-bar body.home div.site-search{
        top:117px;
    }
    div.site-search{
        top:70px;
    }
    body.home div.site-search{
        top:71px;
    }
    body.home.admin-bar div.site-search{
        top:119px;
    }
}

/* -------------------------------------- ALTERNATE HEADER -------------------------------------- */
p.affirmation{
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.2rem;
}
div.daily-affirmation p.title{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.7rem;
    margin:0;
    background-color: #E1FFA3;
    padding:0 2rem;
    display:inline;
}
div.daily-affirmation p.affirmation{
    margin: 1rem 0;
}
div.daily-affirmation p.title span.title-1{
    font-family: var(--secondary-font);
    font-style: italic;
}
div.daily-affirmation.mobile{
    margin-bottom:1rem;
}
@media (min-width: 1245px){
div.daily-affirmation.mobile{
    display:none;
}
div.daily-affirmation.desktop{
    position: absolute;
    top: 2rem;
    z-index: 100;
    right: 3rem;
    width: 41rem;
    padding: 1rem;
}
}
@media (max-width: 1245px){
    div.daily-affirmation.desktop{
        display:none;
    }
    div.daily-affirmation.mobile{
    background-color: #E1FFA3;
    padding: 2rem 6rem;
    }
    div.daily-affirmation.mobile p.title,div.daily-affirmation.mobile p.affirmation{
        text-align: center;
        display: block;
    }
    
}
/* -------------------------------------- FOOTER -------------------------------------- */
footer.site-footer{
    height: auto;
    background-color:var(--footer-bg-color);
    color:var(--footer-font-color);
    padding:2rem;
}
div.footer-container{
    display: grid;
    grid-template-columns: 100%;
}
div.col-1, div.col-2, div.col-3{
    display: flex;
    flex-direction: column;
    padding:2rem;
}
div.col-2{
    justify-content: center;
    align-items: flex-start;
}
div.col-3{
    justify-content: center;
}
div.footer-logo img.custom-logo{
    max-width: 14rem;
    margin-bottom:3rem;
}
div.footer-text p{
    font-size: 1.6rem;
    line-height: 2.5rem;
    font-weight: 300;
}
li.footer-link a{
    font-size: 2rem;
    line-height: 3.5rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}
@media (max-width: 1245px){
    li.footer-link a{
        font-size: 1.2rem;
        line-height:3rem;
    }
}
div.footer-nav-wrapper span.footer-menu-nav{
    font-size: 2rem;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    line-height: 4rem;
}
i.fa-instagram, i.fa-facebook, i.fa-tiktok, i.fa-twitter, i.fa-youtube, i.fa-envelope, i.fa-x-twitter{
    font-size: 3.5rem;
    margin-right: 2rem;
}
i.fa-circle-play{
    font-size: 3.7rem;
}
div.social-share-buttons i.fa-instagram,div.social-share-buttons i.fa-facebook,div.social-share-buttons i.fa-twitter,div.social-share-buttons i.fa-youtube,div.social-share-buttons i.fa-envelope,div.social-share-buttons i.fa-x-twitter{
    color:rgb(78, 125, 191)
}
body.archive.tax-show div.social-share-buttons i.fa-facebook,
body.archive.tax-show div.social-share-buttons i.fa-x-twitter,
body.archive.tax-show div.social-share-buttons i.fa-envelope,
body.archive.tax-show i.fa-circle-play{
    color:white;
}
@media (min-width: 1245px){
   
    div.footer-container{
        grid-template-columns: minmax(0,60rem) 1fr minmax(31.8rem,1fr);
    }
    div.footer-logo img.custom-logo{
        max-width: 20rem;
    }
    body.fierce div.footer-text p{
        font-size:2rem;
        line-height: 3rem;
    }
    body.wearemitu div.footer-text p{
        font-size:1.7rem;
        line-height: 3rem;
    }
    footer.site-footer{
        padding:4rem;
        position: relative;
        z-index: -1;
    }
    div.col-1, div.col-2, div.col-3{
        padding:1rem;
    }
    div.col-2{
        align-items: center;
    }
    div.col-1, div.col-2, div.col-3{
        padding:2rem;
    }
    div.main-wrapper{
        position: relative;
        z-index: 0;
        margin-top:7rem;
    }
}
@media (max-width: 1245px){
    div.footer-text p{
        font-size: 1.2rem;
        line-height: 2rem;
    }
    div.footer-logo img.custom-logo{
        margin-bottom:1rem;
    }
    div.footer-nav-wrapper span.footer-menu-nav{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
    }
   nav.footer-menu ul li.page_item a{
        font-weight: 100;
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.3rem;
    }
    div.col-3 span.sign-up{
        font-size: 1.2rem;
        font-weight: 700;
    }
    div.main-wrapper{
       position: relative;
       z-index: 0;
       margin-top:7rem;
    }
}
/* -------------------------------------- MAIN CONTENT -------------------------------------- */
div.main-wrapper{
    background-color:#ffffff;
}

@media (max-width: 1244px){

    div.logo {
        padding: 2rem 0;
        height: 67px;
    }

}

.social-share-buttons {
  display: flex;
  justify-content: center;
  margin-bottom:6rem;
}

div.article-container .social-share-buttons img {
    width: 4rem;
    margin-right: 2rem;
}

.social-share-buttons img {
    width: 4rem;
    margin-right: 2rem;
}

.footer-share {
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-top: 6rem;
}

.recommended-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommended-post {
    width: 23%; /* Adjust as needed */
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .recommended-post {
        width: 100%;
    }
}

/* ---------------------------------------------CUSTOM BLOCKS CSS------------------------------------------------ */

/* CATEGORY-SELECTOR BLOCK */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.post-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.post-card a {
    text-decoration: none;
    color: #333;
}

/*.post-card a:hover {
    text-decoration: underline;
}*/

.post-card h2 {
    margin-top: 10px;
    font-size: 18px;
}

/* CATEGORY-SELECTOR BLOCK ENDS */

/* STYLES FOR STANDARD PAGES */

ul#search-results li{
	color:#ffffff;
}
body.page-template-default section.article-header{
	border-bottom:1px solid lightgray;
	margin-bottom:3rem;
	text-align:center;
}
body.page-template-default h1.post-title{
	font-family: var(--secondary-font);
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    padding-bottom: 2rem;
	font-size:5rem;
	position:relative;
	z-index:10;
	display:inline-block;
}
body.wearemitu.page-template-default h1.post-title{
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 900;
}
body.page-template-default h1.post-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: calc(100% + 60px);
    height: 25px;
    background-color: #E1FFA3;
    z-index: -1;
}

@media (max-width: 1245px){
h1.category-title{
font-size:2.5rem;
	}
	body.page-template-default h1.post-title{
		font-size:2rem;
	}
	} 
body.page-template-default h1.post-title::before {
	top:25%;
	height:20px;
}
#div-gpt-ad-topleader > div {
    margin-top: 40px;
}
.error-message {
    font-size: 25px;
    font-weight: 300;
    line-height: 30px
}
nav.menu-company-menu-container{
    background-color:#F8F5F3;
    position: relative;
    z-index: -1;
}

nav.menu-company-menu-container ul.company-sites{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray;
    margin:2rem 0;
}
nav.menu-company-menu-container ul.company-sites li{
    letter-spacing: 0.3rem;
    width: auto;
    padding:0 2rem;
    line-height: 5rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    z-index: 10;;
}

nav.menu-company-menu-container ul.company-sites li a{
    text-decoration: none;
    color:#000000;
    text-transform: uppercase;
}
nav.menu-company-menu-container ul.company-sites li:not(:last-child){
    border-right: 1px solid black;
}
@media screen and (min-width: 1245px){
    nav.menu-company-menu-container ul.company-sites li{
        font-size: 1.2rem;
    }
    nav.menu-company-menu-container ul.company-sites li.site-link::before{
        content: '';
        position: absolute;
        top: 50%;
        width: 0px;
        height: 20px;
        background-color: transparent;
        transition: width 0.3s ease-in-out;
        z-index: -1;
    }
    nav.menu-company-menu-container ul.company-sites li.site-link:hover::before{ 
        width: calc(100% - 3.5rem);
        display: inline-flex;
    }
    body.wearemitu nav.menu-company-menu-container ul.company-sites li.site-link:hover::before{
        width: calc(100% - 4.3rem);
    }
    body.fierce nav.menu-company-menu-container ul.company-sites li.site-link:hover::before{
        background-color: #E1FFA3;
    }
    body.wearemitu nav.menu-company-menu-container ul.company-sites li.site-link:hover::before{
        background-color: #E0D6FF;
    }
}
@media screen and (min-width: 1400px){
    nav.menu-company-menu-container ul.company-sites li{
        font-size: 1.4rem;
    }
    .card {
        grid-template-rows:30rem 19rem;
    }
}
@media screen and (max-width: 1245px) {
    nav.menu-company-menu-container ul.company-sites {
        flex-direction: column;
        height: auto;
        border: none;
    }

    nav.menu-company-menu-container ul.company-sites li:not(:last-child) {
        border-right: none;
    }
    nav.menu-company-menu-container ul.company-sites li:first-child{
        border-top:1px solid lightgray;
    }

    nav.menu-company-menu-container ul.company-sites li {
        border-bottom: 1px solid lightgray;
        width: 100%;
        font-size: 1.3rem;
        letter-spacing: 0.2rem;
    }

    /*article.card:nth-child(1) {
        border-top: 1px solid lightgray;
    }*/
    div.footer-share h4{
        font-size: 1rem;
    }
    .footer-share {
        margin-top: 3rem;
    }
    nav.menu-company-menu-container{
        margin-top:5rem;
        position: relative;
         z-index: -1;
    }
}
div.footer-share h4{
    font-weight: 300;
}

.home div.social-share-buttons i.fa-twitter,div.social-share-buttons i.fa-x-twitter {
    color: black;
}
.home div.social-share-buttons i.fa-facebook{
    color:black;
}

.page .leaderboard-ad {
    margin-top: 70px;
}


/* BOTTOM STICKY AD */
#bottom-ad {
    position: sticky;
    margin: auto;
    text-align: center;
    bottom: 0px;
    z-index: 99999;
    background-color: hsla(0,0%,100%,.8);
    border-top: 2px solid hsla(0,0%,88.2%,.8);
}

#bottom-ad-close{
    position: absolute;
    width: 20px;
    height: 18px;
    top: 0px;
    right: 10%;
    cursor: pointer;
    z-index: 220;
    background-image: url("https://d1wzz8hm4h01xw.cloudfront.net/wp-content/uploads/2021/04/12142822/106830.png");
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {

    #bottom-ad-close {
        right: 1%;
    }

}

.copyright p {
    font-size: 9px;
}

/* menu */

#menu-main-menu-desktop {
    display: flex;
}

li.menu-item {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-right: 10px;
    margin-bottom:1rem;
}

#wcPlayer {
    height: auto;
}

/* admin menu fixes */

.ab-sub-wrapper, .ab-item, .screen-reader-shortcut {
    display: none;
}

#wp-admin-bar-wpseo-menu, #wp-admin-bar-imagify, #wp-admin-bar-wp-rocket {
    display: block;
}

/* advertise with us page */

@media only screen and (min-width:1245px){
    #mission div.container {
        width:50%;
          margin:0 auto 4.8rem auto;
      }
      #mission div.container p{
          font-size:1.8rem;
          line-height:3.1rem;
          text-align:center;
          margin-top:4rem;
          margin-bottom:4rem;
      }
      div.ad-button{
          font-family: Lato;
          font-size: 13px;
          border: 1px solid #D5D8E0;
          width: 248px;
          padding: 20px;
          margin: 0 auto;
      }
      #market, #team {
          background-color: #1C2029;
          padding: 20px 0 20px 0;
          margin-bottom:4.8rem;
      }
      #market div.main-section, #team div.main-section, #influence div.main-section {
          color: white;
          font-size:1.3rem;
          text-transform:uppercase;
          letter-spacing:2.36px;
          margin-bottom:4rem;
          margin-top:4rem;
      }
      #influence div.main-section{
          color:black;
      }
      #market h1, #team h1, #influence h1, #clients h1, #connect h1 {
          margin-bottom: 48px;
          color:white;
          font-size: 3.5rem;
          margin: 0px;
          line-height: 4rem;
          font-weight:900;
      }
      #influence h1, #clients h1, #connect h1{
          color:black;
				margin-bottom:4rem;
      }
      #market p{
          color:white;
          text-align:center;
          font-size:1.8rem;
          line-height:3.1rem;
          margin-top:4rem;
      }
	#connect{
		margin-top:4rem;
	}
      #influence div.image-grid {
          margin-top: 48px;
          margin-bottom: 48px;
          display: grid;
          grid-column-gap: 20px;
          grid-template-columns: 1fr 1fr 1fr 1fr;
      }
      #influence div.image-grid div.grid-item span {
          font-family: var(--font-family-primary);
          font-size: 1.7rem;
          line-height: 2.3rem;
          display: block;
          margin-top: 20px;
      }
      .mobile{
        display: none;
      }
	 form.wpcf7-form {
    max-width: 696px;
    margin:0 auto;
    }
	label.float {
		float:left;
		max-width:274px;
		display:block;
	}
	label.no-float{
		float:none;
		clear:both;
		display:block;
	}
	form.wpcf7-form label{
        margin-left:16px;
	}
	form.wpcf7-form span{
		display:block;
	}
	.gray{color:#9CA1AD;font-size:15px}

.email-form-field{
	padding-left:20px;
	height:40px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea, 
.wpcf7 select{
    background-color: #f5f5f5;
    color:black;
	border: 1px solid #D5D8E0;
    height: 45px;
    width: 100%;
	max-width: 100%;
    border-radius: 0px;
    font-family: var(--font-family-primary);
}
.wpcf7 textarea {
    height: 150px;
}
select.wpcf7-select{
      color:gray;
    background-image: url(https://d1wzz8hm4h01xw.cloudfront.net/wp-content/uploads/2019/07/11092823/arrow.svg);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    font-family: var(--font-family-primary);
}

.wpcf7 label {
	font-weight:600;
    font-family: var(--font-family-primary);
    color:#3C3F47;
	}
.wpcf7 input[type="submit"]{
	padding:10px;
	width:207px;
    height: 54px;
	color:#ffffff;
	font-weight:300;
	border:none;
	margin: 0 auto;
    display: block;
    border-radius:0px;
	background-color:#3C3F47;
    font-family: var(--font-family-primary);
    text-transform: uppercase;
    font-size:13px;
    letter-spacing: 0.7px;
	}
input.wpcf7-submit:hover{
	background-color:rgba(22,24,31,1.0);
	cursor:pointer;
}
.email-form-field{
	height:30px;}
.no-pad {
    margin-bottom: 10px !important;
}
	div.wpcf7 label{
		line-height:1.5rem
	}
}
@media only screen and (max-width:1245px){
	div.ad-hero img{
    max-width: 100%;
    width: 100% !important;
    height: auto;
}
#influence{
    background-color:white;
}
hr.divider{
    width:100%;
    max-width: 280px;
    border-top:1px solid #D5D8E0; 
}
#mission{
    margin-bottom:64px;
}

#mission div.container p{
    font-size: 16px;
    padding:10px;
    line-height: 24px;
	text-align:center;
	word-break:auto-phrase;
}

	body.page-template-page-advertise div.container{
		padding:2rem;
	}

#market{
    background-color: #1C2029;
    
}
#market .main-section{
    color:white;
	text-transform:uppercase;
}
#market h1{
    font-size: 19px;
    padding:10px;
	color:white;
	font-weight:900;
}
#market p{
    padding:0 20px;
	font-size:1.5rem;
	text-align:center;
	word-break:auto-phrase;
	color:white;
}
#market,#brand-solutions,#team{
    padding-top:48px;
    padding-bottom:48px;
}
#influence{
    padding-top:48px;
    padding-bottom:48px;
}
	#influence .main-section{
		text-transform:uppercase;
	}

#influence div.image-grid{
    display:grid;
    grid-template-columns: 1fr;
}
#influence h1, #clients h1, #connect h1{
    font-size: 19px;
    padding:10px;
	font-weight:900;
}
#influence div.carousel-item img{
    width:90% !important;
    max-width:100%;
    height: auto;
    margin:0 auto;
}
#influence span.owl-next-arrow::before{
    color:black;
    bottom:-10px;
    right:50%;
    margin-right: -34px;
    top:unset;
}
#influence span.owl-prev-arrow::before{
    color:black;
    bottom:-10px;
    left:50%;
    margin-left:-34px;
    top:unset;
}
#influence div.owl-carousel span{
    width: 90%;
    display: block;
    text-align: center;
    margin: 0 auto 2rem auto;
    font-size: 15px;
    line-height: 23px;
    margin-top:20px;
	word-break:auto-phrase;
}
	#influence div.carousel-item img{
		max-width:50%;
	}
	div.owl-carousel{
		display:flex;
		flex-direction:column;
	}
#brand-solutions h1{
    font-size: 19px;
    padding:10px;
}
    #brand-solutions p{
    padding:0 20px;
    font-size:16px;
    }
    #team h1{
    font-size: 19px;
        padding: 10px;
    }
    #brand-solutions div.mobile img{
       width: 100%;
    height: auto;
    border: 1px solid #D5D8E0;
} 
    div.team-grid{
            display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;

}
    #team span.position,#team span.name{
        display: block;
    }
    #team{
        background-size: cover;
        background-position: center;
        background-color:#1C2029;
    }
    #team span.position{
        font-family: Lato;
        font-weight: 300;
        font-size: 11px;
        letter-spacing: 2px;
        padding-bottom:5px;
        text-transform: uppercase;
    }
    #team span.name{
        font-size:19px;
    }
    #team .main-section{
        color:white;
    }
    #clients div.mobile img{
        width: 100%;
        height: auto;
    }
    #clients h1,#connect h1{
    font-size: 19px;
    padding:10px;
}
    form.wpcf7-form{
        text-align: left;
    }
    
    div.ad-button{   
    font-family: Lato;
    font-size: 13px;
    border: 1px solid #D5D8E0;
    width: 100% !important;
    padding: 20px;
    margin: 0 auto;
    }
	.desktop{
		display:none;
	}
	 form.wpcf7-form {
    max-width: 696px;
    margin:0 auto;
    }

	label.no-float{
		float:none;
		clear:both;
		display:block;
	}
	form.wpcf7-form label{
      /*  margin-left:16px;*/
	}
	form.wpcf7-form span{
		display:block;
	}
	.gray{color:#9CA1AD;font-size:15px;}

.email-form-field{
	padding-left:20px;
	height:40px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea, 
.wpcf7 select{
    background-color: #f5f5f5;
    color:black;
	border: 1px solid #D5D8E0;
    height: 45px;
    width: 100%;
	max-width: 100%;
    border-radius: 0px;
    font-family: var(--font-family-primary);
}
.wpcf7 textarea {
    height: 150px;
}
select.wpcf7-select{
      color:gray;
    background-image: url(https://d1wzz8hm4h01xw.cloudfront.net/wp-content/uploads/2019/07/11092823/arrow.svg);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    font-family: var(--font-family-primary);
}

.wpcf7 label {
	font-weight:600;
    font-family: var(--font-family-primary);
    color:#3C3F47;
	}
.wpcf7 input[type="submit"]{
	padding:10px;
	width:207px;
    height: 54px;
	color:#ffffff;
	font-weight:300;
	border:none;
	margin: 0 auto;
    display: block;
    border-radius:0px;
	background-color:#3C3F47;
    font-family: var(--font-family-primary);
    text-transform: uppercase;
    font-size:13px;
    letter-spacing: 0.7px;
	}
input.wpcf7-submit:hover{
	background-color:rgba(22,24,31,1.0);
	cursor:pointer;
}
.email-form-field{
	height:30px;}
.no-pad {
    margin-bottom: 10px !important;
}
	div.wpcf7 label{
		line-height:1rem;
	}

}

/* hide google recaptcha badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Sponsored Hubs */
span.sponsor-logo img{
    display:block;
    margin:0 auto;
    max-width: 25rem;
}
body.page-template-page-hubs section.hub-container div.post-info a{
    text-decoration: none;
    color:black;
    font-family: var(--primary-font);
    font-weight: 900;
}
body.page-template-page-hubs section.hub-container div.post-info a:hover{
    text-decoration: underline;
}
h1.hub-articles-title{
    text-align: center;
    margin-top:2rem;
}
@media only screen and (min-width:1245px ){
   p.hub-blurb{ 
    font-size: 1.6rem;
    line-height: 3rem;
    padding: 0 6rem 6rem 6rem;
   }

   body.page-template-page-hubs section.hub-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
    max-width: 99rem;
    margin: 0 auto;
    margin-top:3rem;
    margin-bottom: 3rem;
   }

}
@media only screen and (max-width:1245px){
    p.hub-blurb{
        padding:0 3rem 3rem 3rem;
    }
    section.hub-container{
        padding:2rem;
        display:flex;
        flex-direction:column;
        padding: 2rem;
        flex-wrap: wrap;
        flex-flow: wrap;
        align-items: center;
        justify-content: center;
        column-gap: 2rem;
    }
    article.category-walmart-mentorship-program{
        margin-bottom:2rem;
    }
    div.cat-hero-wrapper img.mobile{
        width:100%;
    }
}

/* Contact Form */

form.wpcf7-form span{
    margin-top:1rem;
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-color:#dc3232;
}
@media only screen and (max-width:1245px){
    body.page-template-page-advertise span.gray{
        line-height: 20px;
    }
}

section.lp-main-content{
    max-width: 60rem;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#mc4wp-form-1{
    border: 1px solid lightgrey;
    padding: 2rem;
}
div.sub-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:2rem;
}
div.sub-form input, div.sub-form select{
    width:70%;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding:1rem;
    border:1px solid lightgrey;
    color:black;
}
div.sub-form input.sub-button{
    background-color:#8B00F3;
    color:white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5rem;
}
.mc4wp-alert.mc4wp-error p,.mc4wp-alert.mc4wp-success p{
    text-align: center;
}
div.sub-form div.survey{
    margin-top:2rem;
    border-top:1px solid lightgrey;
    width: 70%;
    padding-top:2rem;
}
div.sub-form div.survey select{
    width:100%;
}
div.sub-form div.survey label.question{
    font-size: 1.6rem;
    padding:1rem;
   display:block;
    color:black;   
}
div.sub-form div.survey label.options{
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding:1rem;
    display:inline-flex;
}
div.sub-form div.survey label.options span{
    margin-left:1rem;
}