/* --------------------------------------
   Samson's Classroom CSS (Resources Page)
   Created: 1/18/2017
   Authors: Kelly Byrnes

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

/** Active Navbar Icon **/
header .navbar-default #resources:hover {
    color: white;
}

header .navbar-default #resources {
    background: url(../website_assets/home_page_assets/00_nav_bar/resources_icon_white.svg) no-repeat center center;
    background-size: 35px 30px;
    background-position: 50% 25%;
    color: white;
}

/** Hero Section **/
#signup.btn, #login.btn {
    margin-top: 25px;
    margin-bottom: 10px;
}

.login-section {
    margin-top: 85px;
}

.login-section h1 {
    margin-bottom: 40px;
}

.headline {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
}

.hero-buttons, .hero-btn-container {
    padding: 0;
}

.hero-btn-container {
    text-align: center;
}

.hero-buttons h3 {
    font-family: "Titan One", "Helvetica Neue", "Helvetica Black", "Helvetica Bold", "Arial Black", "Arial Bold";
    text-align: left;
    font-size: 24px;
}

.hero-buttons p {
    white-space: normal;
    text-align: left;
}

.hero-buttons .btn {
    background-color: #075EAD;
    border-color: #075EAD;
    margin-bottom: 35px;
    height: 230px;
    padding-left: 105px;
    font-size: 18px;
    width: 330px;
    -moz-border-radius: 21px;
    -webkit-border-radius: 25px;
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: 20px 50px;
}

#articles {
    background-image: url(../website_assets/resources_page_assets/articles_icon.svg);
}

#awards {
    background-image: url(../website_assets/resources_page_assets/awards_icon.svg);
}

#images-and-links {
    background-image: url(../website_assets/resources_page_assets/images_and_links_icon.svg);
}

#lesson-plans {
    background-image: url(../website_assets/resources_page_assets/lesson_plans_icon.svg);
}

#letters {
    background-image: url(../website_assets/resources_page_assets/letters_icon.svg);
}

#worksheets {
    background-image: url(../website_assets/resources_page_assets/worksheets_icon.svg);
}

/** Media Queries **/

@media only screen
and (max-width: 767px)
{
    header .navbar-default #resources {
        background-size: 7%;
        background-position: 5% 90%;
        color: white;
    }
}

@media only screen
and (max-width: 383px)
{
    .hero-buttons .btn {
        background-size: 24%;
        background-position: 78% 6%;
        padding: 90px 10px 0 30px;
        width: 90%;
        height: 310px;
        margin: 0 auto;
        display: block;
    }

    .hero-buttons h3 {
        font-family: "Titan One", "Helvetica Neue", "Helvetica Black", "Helvetica Bold", "Arial Black", "Arial Bold";
        text-align: left;
    }

    .hero-buttons p {
        white-space: normal;
        text-align: left;
    }
}


/** New CSS Required for Page **/
.resource-tile {
   /* background-color: white; */
  padding-left: 10px;
  padding-right: 10px;
}

.resource-tile a{
    /* hide link-underlines in resource tiles */
    text-decoration: none;
}
.resource-tile-contents {
  background-color: #075EAD;
  border-radius: 20px;
  background-size: 60px 80px;
  background-repeat: no-repeat;
  background-position: 20px 80px;
  height: 230px;
}

.resource-tile-contents *{
  color:white;
  padding: 0px 20px 0px 100px;
}

.resource-tile-contents a{
  text-decoration: none;
}

.resource-tile-contents h3{
	font-family: "Titan One", cursive;
	text-align: left;
    font-size: 18px;
    padding-top: 15%
}

.resource-tile-contents p{
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
}

@media only screen
and (min-width: 425px) {
    .resource-tile-contents {
        height: 260px;
    }
    
    .resource-tile-contents p{
    font-size: 18px;
    }
    .resource-tile-contents h3{
        font-size: 24px;
    }
}

@media only screen
and (min-width: 992px) {
    .resource-tile-contents {
        height: 260px;
    }
    .resource-tile-contents p{
    font-size: 14px;
    }
    .resource-tile-contents h3{
        font-size: 24px;
    }
}

@media only screen
and (min-width: 1200px) {
    .resource-tile-contents {
        height: 260px;
    }
    .resource-tile-contents p{
    font-size: 18px;
    }
    .resource-tile-contents h3{
        font-size: 24px;
    }
}