/*!
Theme Name: challenge
Theme URI: http://underscores.me/
Author: Chris Butler
Author URI: https://chrisbutlerdigital.com
Description: A WordPress theme for the Women\'s Challenge
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: womenschallenge
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

challenge is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */


/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}



/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}





/* Forms
	 ========================================================================== */


/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}



/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/



/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

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

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

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

.post,
.page {
	margin: 0 0 1.5em;
}

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

.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;
}

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

.widget select {
	max-width: 100%;
}

/* 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 logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* 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;
	display: grid;
	grid-gap: 1.5em;
}

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

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.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;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

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

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

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



/* Theme Specific Styles */


.post, .page {
	margin: 0;
}

:root {
    --light-black: #454545;
    --red: #ef7b54;
    --dark-grey: #939393;
    --yellow-finish: #F6CD61;
    --dark-black: #232323;
}


h3 {
	font-size: 2rem;
	
}


body {
    background-color: #f1f1e8;
	font-size: 16px;
    color: #fff;
}

#gallery h3 {
	text-align: center;
    color: var(--light-black);
}

.container h1,
.container h3, .container h4 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: var(--light-black);
    
}

.head-jumbo {
    background-color: #232323;
    background-image: url(/wp-content/themes/womenschallenge/assets/images/WC_splash.jpg);
    background-size: cover!important;
    background-position: center center!important;
    background-repeat: no-repeat!important;
    height: 100vh;
    border-radius: 0;
    margin-bottom: 0px;
    position: relative;
    text-align: center;
}

.top-jumbo, .gal-images {
    background-color: #f1f1e8;
    color: var(--light-black);
}

.title-head p {
    text-align: center;
    text-transform: capitalize;
    font-size: 3rem;
}

.title-head h1 {
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    color: #fff;
    opacity: 1;
    letter-spacing: .5rem;
    text-shadow: 1px 1px 5px #000000;
}

.container h3 {
	text-align: left;
	font-size: 3rem;
	padding: 1.5rem 0rem;
}
.container #gallery {
	background-color: #f1f1e8!important;
	
}

.container {
	background-color: #f1f1e8;
	
}
.title-head {
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 95%;
    max-width: 800px
}
p .fa-angle-double-down {
    text-align: center;
    color: #232323;
}
#gallery p {
    text-align: center;
}
.fa-angle-double-down {
    color: #F6CD61;
    cursor: pointer;
}
.btn-default {
    color: #222;
    background-color: transparent;
    border-color: #999!important;
    border-radius: 3px;
}
.box-bg {
        padding: 0;
        margin: 1rem 0;
        text-align: center;
}

.box-bg img {
    padding-bottom: 1rem;
}
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex!important;
}

.col-sm-4 {
    position: relative;
}
.but_gallery a {
    position: relative;
    bottom: 0rem;
    left: 0rem;
}


.btns, .btns:link, .btns:visited:visited {
    text-transform: uppercase;
    font-weight: bolder;
    text-decoration: none;
    padding: .5rem 1rem;
    display: inline-block;
    border-radius: .25rem;
    transition: all .5s;
    position: relative;
    font-size: .75rem;
    border: 1px solid var(--dark-grey);
    cursor: pointer;
    margin-top: 1rem;
    color: var(--dark-black);
    background-color: transparent; }
  
  .btns:hover {
    
    color: var(--dark-grey);
    
    box-shadow: 0 .5rem 1rem rgba(35, 35, 35, 0.2); }
    .btn:hover::after {
      
      opacity: 0; }
  
  .btns:active, .btns:focus {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(35, 35, 35, 0.2); }
  






.footer {
    background-color: #333;
    color: rgb(147, 147, 147);
    text-align: center;
    height: 10rem;
    padding-top: 4rem;
    border-top: 1px solid #333;
}
.footer .container {
	background-color: #333;
    
}

footer a {
	color: rgb(147, 147, 147);
}

footer a:hover {
	color: rgb(147, 147, 147);
}

footer p {
	color: rgb(147, 147, 147);
	font-size: small;
}

 .story-img {
    width: 100%;
    padding: 1rem 0;
    	 
	 
 }
@media all and (max-width: 768px) {
    .box-bg img {
        margin: 0px auto;
    }
}
@media all and (max-width: 1199px) and (min-width: 501px) {
    .container h3 {
	text-align: left;
    font-size: 2.5rem;
    padding: 1rem 0;
}


    .head-jumbo {
	    background-image: url(/wp-content/themes/womenschallenge/assets/images/WC_splash_tablet.jpg);
        
    }
}



@media all and (max-width: 768px) {
    .container h3 {
        text-align: center;
        font-size: 2rem;
    }

    .head-jumbo {
        height: 100vh;
    }

    .jumbotron {
        padding: 1rem;
    }
}





@media all and (max-width: 500px) {
    .container h3 {
	text-align: center;
	font-size: 1.5rem;
}
 
 .title-head h1 {
	 font-size: 4rem!important;
 }   
    .head-jumbo {
	    background-image: url(/wp-content/themes/womenschallenge/assets/images/WC_splash_mobile.jpg);
        height: 100vh;
    }

    .but_gallery {
        text-align: center;
    }
}



