/*
 Theme Name:     WP Bootstrap Starter Child Theme
 Theme URI:      https://wordpress.org/themes/wp-bootstrap-starter/
 Description:    A child theme of WPBS Theme
 Author:         Afterimage Designs
 Author URI:     https://afterimagedesigns.com/
 Template:       wp-bootstrap-starter
 Version:        1.4
*/


/****************************************
*** Theme customization starts below ***
*****************************************/

html { font-size: 100%; }     /* 1rem = 16px */

/*
@media (min-width: 1200px) {
  html { font-size: 125%; }
}
*/

body {
  font-family: 'Work Sans', -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
  background-color: #000;
}

.white-bg {
  background-color: #fff;
}


/***** Typography *****/

p {
  font-size: 1.25rem;
}

a {
  color: #ffa3be;
  text-decoration: underline;
}

a:visited {
  color: #ffa3be;
}

a:hover {
  color: #9a9a9a;
}

a.btn {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  text-decoration: none;
  background-color: #292929;
  margin-top: 10px;
  margin-bottom: 15px;
}

a.btn:hover {
  color: #fff;
  background-color: #ea4272;
}

a:focus {
  outline-color: #ea4272;
}

a:-webkit-any-link:focus {
    outline-offset: 3px;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 800;
  color: #ffa3be;
  padding-top: 1.5rem;
  max-width: 720px;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  padding-top: .8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffa3be;
  padding-top: 1rem;
  margin-bottom: .5rem;
}

.white-bg p {
  color: #000;
}

.white-bg h1 {
  color: #888;
}

.white-bg h2 {
  color: #ea4272;
}



/***** General Formatting *****/

@media (min-width: 1640px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 767.98px) {
  header#masthead, section#primary {
    padding-left: 0;
    padding-right: 0;
  }
}

body:not(.theme-preset-active) #masthead .navbar-nav > li > a, body:not(.theme-preset-active) #masthead .navbar-nav > li.current_page_item > a {
  font-weight: 400;
  color: #9a9a9a;
}

body:not(.theme-preset-active) #masthead .navbar-nav > li > a:hover, body:not(.theme-preset-active) #masthead .navbar-nav > li.current_page_item > a:hover {
  font-weight: 400;
  color: #ffa3be;
}

header.entry-header {
  display: none;
}

.edit-link {
  display:none;
}

.row.divider-line > :first-child {
  border-top: 3px solid #292929;
  margin-top: 10px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-top: 45px;
  margin-bottom: 30px;
}

.video-iframe {
  position: absolute;
  top:      0;
  left:     0;
  bottom:   0;
  right:    0;
  width:    100%;
  height:   100%
}

  /* Header */

header#masthead {
  background-color: #000;
}

.navbar-brand {
  max-width: 200px;
}

.navbar-light .navbar-toggler-icon {
    filter:invert(1);
}

@media (min-width: 1360px) {
  .navbar-brand {
    position: relative;
    left: -88px;
  }
}

  /* Footer */

#footer-widget.bg-light, body:not(.theme-preset-active) footer#colophon {
  background-color: #000 !important;
}

#colophon {
  padding-bottom: 20px;
}

#footer-widget h3, .site-info .sep, .site-info .credits {
  display:none;
}

#footer-widget section {
  display: inline-block;
  padding-right: 20px;
}

#footer-widget .col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

#footer-widget .widget {
  margin-bottom: 10px;
}

#footer-widget a, #colophon a, #masthead a {
  color: #9a9a9a;
  text-decoration: none;
}

#footer-widget a:hover, #colophon a:hover, #masthead a:hover {
  color: #ffa3be;
  text-decoration: none;
}


        /* Sticky Footer */

    html, body {
      height: 100%;
    }
    body #page {
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .site-header {
      flex: 0 0 auto;
    }
    .site-content {
      flex: 1 0 auto;
    }
    #footer-widget, .site-footer {
      flex-shrink: 0;
    }


/* Forms */

form {
  background-color: #fff;
  padding: 26px 24px 32px;
}

form > p, form label {
  margin-bottom: 0;
}

form label {
  color: #6a6a6a;
  font-size: .9rem;
  margin-bottom: 1rem;
}

form input.form-control, form textarea.form-control {
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  border-color: #6a6a6a;
  padding: .4rem .7rem .5rem;
  margin: 4px 6px .25rem 0;
}

form input.form-control:focus, form textarea.form-control:focus {
  color: #000;
  border-color: #ea4272;
  box-shadow: 0 0 0 1px #ea4272;
  outline: 2px solid transparent;
}

form input.form-control {
  max-width: 324px;
}

form textarea.form-control {
  height: 10rem;
}

form input.btn-primary {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0 1rem;
  letter-spacing: .05em;
  margin: 6px auto 0;
  border:none;
  background-color: #000;
  min-height: 32px;
  line-height: 2.30769231;
}

form input.btn-primary:hover {
  border:none;
  background-color: #ea4272;
}

form input.btn-primary:focus {
  box-shadow: 0 0 0 1px #fff,0 0 0 3px #ea4272;
}

.wpcf7-not-valid-tip {
  font-size: .8rem;
  font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ea4272;
}

.wpcf7 form .wpcf7-response-output {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 12px 18px 16px;
  margin-left: 0;
  margin-right: 0;
}


/***** Page layouts *****/

#content:before {
  content: url(https://typeminded.com/wp-content/uploads/2020/10/tm-logo-icon-white.svg);
  width: 460px;
  height:auto;
  position: absolute;
  opacity: .05;
  right: 2rem;
  top: 7rem;
}

#content.site-content {
  padding-top: 0;
}

.entry-content {
  margin: 1rem 0 0;
}

.sec_page-intro {
}


/***** Portfolio Grid Page *****/

.pf-grid {
  padding: 20px 15px 0;
}

.pf-grid a, .pf-grid a h2 {
  text-decoration: none;
  color: #fff;
}

.pf-grid a:hover, .pf-grid a:hover h2 {
  text-decoration: none;
  color: #ffa3be;
}

.pf-grid-element {
  width: 100%;
  margin: 8px 0;
}

.pf-grid-image {
  width: 44%;
  padding-top: 44%;
  background-color: #ffa3be;
  background-size: cover;
}

    .pf-grid-image.pf1 {
      background-image: url(/wp-content/uploads/2020/10/NIET-PF1-cover.jpg);
    }
    .pf-grid-image.pf2 {
      background-image: url(/wp-content/uploads/2020/10/NIET-PF2-cover.jpg);
    }
    .pf-grid-image.pf3 {
      background-image: url(/wp-content/uploads/2020/10/Mitchell-PF3-cover.jpg);
    }
    .pf-grid-image.pf4 {
      background-image: url(/wp-content/uploads/2020/10/JAN-PF4-cover.jpg);
    }
    .pf-grid-image.pf5 {
      background-image: url(/wp-content/uploads/2020/10/WMT-PF5-cover.jpg);
    }
    .pf-grid-image.pf6 {
      background-image: url(/wp-content/uploads/2021/04/WMG-PF6-cover.jpg);
    }
    .pf-grid-image.pf7 {
      background-image: url(/wp-content/uploads/2020/10/BLS-PF7-cover.jpg);
    }
    .pf-grid-image.pf8 {
      background-image: url(/wp-content/uploads/2020/10/Wedding-PF8-cover.jpg);
    }
    .pf-grid-image.pf9 {
      background-image: url(/wp-content/uploads/2021/01/Dracula-PF9-Cover-2.jpg);
    }
    .pf-grid-image.pf10 {
      background-image: url(/wp-content/uploads/2021/01/Jurassic-PF10-cover.jpg);
    }


.pf-grid-text {
  width: 56%;
}

.pf-grid-text p {
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .5px;
  margin-bottom: 0;
}


/***** Portfolio Individual Page *****/

a.breadcrumb-link {
  color: #9a9a9a;
  text-decoration: none;
}

a.breadcrumb-link:hover {
  color: #ffa3be;
}

.pf-intro svg {
  max-width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.pf-intro svg:hover .st0, .pf-intro svg:hover .st1 {
  stroke: #ffa3be;
}

.pf-content h3 {
  color: #9a9a9a;
  margin-top: 15px;
}

.pf-content h2 {
  margin-top: 20px;
}

.pf-content {
  margin-top: 15px;
}

.pf-content img {
  margin: 15px 0 30px;
  border-radius: 3px;
}

.pf-content img.not-rounded {
  border-radius: 0px;
}

    .pf-content .slider img {
      margin: 0 0 30px;
    }

    .pf-content .sss-row {
      margin-bottom: 15px;
    }

    .pf-content .sss-row h3 {
      padding-bottom: .5rem;
    }

    .pf-content .sss-single .sssprev, .pf-content .sss-single .sssnext {
      display: none;
    }

.df-ui-btn.df-ui-share {
  display: none;
}

.df-container>.df-ui-next, .df-container>.df-ui-prev {
  color: #9a9a9a !important;
  opacity: .5!important;
}

.df-container>.df-ui-next:hover, .df-container>.df-ui-prev:hover {
  color: #9a9a9a !important;
  opacity: .8!important;
}


    /* Scrollable Mockups */
    .ipad-scrollable {
      width: 100%; /* calc((100% - 30px) */
      height: 0;
      overflow: hidden;
      position: absolute;
      top: 0;
      padding-top: 72.62%; /* calc((100% - 30px) * .7262)*/
      margin: 15px 0 30px;
    }
    .ipad-scrollable > div {
      width: 91.76%;
      height: 88.13%;
      position: absolute;
      top: 6.11%;
      left: 4.18%;
      border-radius: 1.75% / 2.5%;
      margin: 0 !important;
      overflow: scroll;
      scroll-behavior: smooth;
    }
    .ipad-scrollable > div::-webkit-scrollbar {
      display: none;
    }
    .ipad-scrollable > div {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
    .ipad-scrollable > div > img {
      width: 100%;
      height: auto;
      margin: 0 !important;
      border-radius: 0px;
    }

    .iphone-scrollable {
      width: 100%; /* calc(100% - 30px) */
      height: 0;
      overflow: hidden;
      position: absolute;
      top: 0;
      padding-top: 195.6%; /*calc((100% - 30px) * 1.956)*/
      margin: 15px 0 30px;
    }
    .iphone-scrollable > div {
      width: 86.38%;
      height: 89.9%;
      position: absolute;
      top: 6.45%;
      left: 6.88%;
      border-radius: 0px;
      border-bottom-left-radius: 10% 5%;
      border-bottom-right-radius: 10% 5%;
      margin: 0 !important;
      overflow: scroll;
      scroll-behavior: smooth;
    }
    .iphone-scrollable > div::-webkit-scrollbar {
      display: none;
    }
    .iphone-scrollable > div {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
    .iphone-scrollable > div > img {
      width: 100%;
      height: auto;
      margin: 0 !important;
      border-radius: 0px;
    }



/******* RESPONSIVE *******/

@media (max-width: 1199.98px) {
  p {font-size: 1.125rem;}
  h1 {font-size: 2.75rem;}
  h2 {font-size: 2.25rem;}
  h4 {font-size: 1.125rem;}
  form input.form-control, form textarea.form-control {font-size: 1.125rem;}

  #content:before {
    width: 380px;
    right: 1rem;
    top: 6rem;
  }
}


@media (max-width: 767.98px) {
  p {font-size: 1.08rem;}
  h1 {font-size: 2.3rem;}
  h2 {font-size: 1.9rem;}
  h4 {font-size: 1.08rem;}
  form input.form-control, form textarea.form-control {font-size: 1.08rem;}

  #masthead {
    padding: .6rem .4rem;
  }

  .navbar-brand {
    max-width: 172px;
  }

  #content:before {
    display:none;
  }

  /* Portfolio Grid */
  .pf-grid {
    padding: 15px 0 0;
  }
  .pf-grid-element {
    display: flex;
    align-items: stretch;
  }
  .pf-grid-text {
    background-color: rgba(255,255,255,.08);
    padding: 15px 20px 15px 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .pf-grid-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 0;
  }

  /* Portfolio Page */
  .pf-content img, .pf-content .ipad-scrollable, .pf-content .iphone-scrollable {
    margin: 8px 0 15px;
  }
  .pf-intro {
    padding-top: 32px;
  }
  .df-ui-btn.df-ui-thumbnail {
    display: none;
  }

  @media (min-width: 576px) {
    .pf-intro .row, .pf-content .row {
      margin-left: 0;
      margin-right: 0;
    }
  }

}

@media (max-width: 991.98px) {

  .navbar-nav {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
  }
  .navbar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }
}

@media (max-width: 575.98px) {
  .pf-intro, .pf-content {
    padding: 0 15px;
  }
  .pf-intro {
    padding-top: 8px;
  }
}




/* SM */
@media (min-width: 576px) {

}

/* MD */
@media (min-width: 768px) {

  /* General */
  #footer-widget section, #colophon .site-info {
    padding-left: 15px;
    padding-right: 5px;
  }

  /* Portfolio Grid */
  .pf-grid .pf-grid-element:nth-child(odd) {
    margin-right: 3%;
  }
  .pf-grid-element {
    width: 48.5%;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .pf-grid-image {
    width: 100%;
    padding-top: 100%;
    border-radius: 3px;
  }
    .pf-grid a .pf-grid-image { transition: all .2s ease-in-out; }
    .pf-grid a:hover .pf-grid-image { transform: scale(1.04); }

  .pf-grid-text {
    width: 100%;
    padding-right: 15px;
  }

}

/* LG */
@media (min-width: 992px) {

  /* General */
  #content.site-content {
    padding-top: 3rem;
  }

  /* Portfolio Grid */
  .pf-grid .pf-grid-element:nth-child(n) {
    margin-right: 2%;
  }
  .pf-grid .pf-grid-element:nth-child(3n+0) {
    margin-right: 0;
  }
  .pf-grid-element {
    width: 32%;
  }

  /* Portfolio Page */
  .pf-content .pf-cover-image img, .pf-content .pf-cover-image .ipad-scrollable, .pf-content .pf-cover-image .iphone-scrollable {
    margin: 30px 0 40px;
  }
  .pf-intro svg {
    max-width: 84px;
    margin-bottom: 0px;
  }

}

/* XL */
@media (min-width: 1200px) {


}

/* XXL */
@media (min-width: 1640px) {
  .col-xxl-4 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .col-xxl-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }

  /* Portfolio Grid */
  .pf-grid .pf-grid-element:nth-child(n) {
    margin-right: 1.6%;
  }
  .pf-grid .pf-grid-element:nth-child(4n+0) {
    margin-right: 0;
  }
  .pf-grid-element {
    width: 23.8%;
  }

  /* Portfolio Page */
  .pf-intro svg {
    max-width: 92px;
  }


}
