/*
Theme Name: Brvnd Starter Theme
Theme URI: https://github.com/Matty-Montoya/wp-starter-theme
Author: Brvnd Agency
Author URI: https://brvndagency.com/
Description: A clean wordpress starter theme
Version: 1
Tags: PHP, CSS, Javascript, HTML
Text Domain: WP_Starter
*/
/*------------------------------------*\


\*------------------------------------*/

:root {
  --red: #f04d25;
  --dark-red: #c83728;
  --orpheuspro: orpheuspro, serif;
  --prenton: prenton, sans-serif;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

/* global box-sizing */
*,
*:after,
*:before {
  box-sizing: border-box;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #444;
  font: 300 11px/1.4 Helvetica, Arial, sans-serif;
}

/* clear */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

/* Lightspeed Lazy load fade in */
img[data-lazyloaded] {
  opacity: 0;
}

img.litespeed-loaded {
  -webkit-transition: opacity 0.5s linear 0.2s;
  -moz-transition: opacity 0.5s linear 0.2s;
  transition: opacity 0.5s linear 0.2s;
  opacity: 1;
}

a {
  text-decoration: none;
  transition: 0.4s ease;
}

a:hover {
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  border: 1px solid #04a4cc;
  outline: 0;
}

p,
ul,
ol {
  font-size: 2.1rem;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0 !important;
  font-family: var(--orpheuspro);
  font-weight: 400 !important;
}

blockquote {
  margin: 25px 0;
  padding: 25px 0 25px 5vw;
  font-style: italic;
  border-top: 1px solid;
  border-bottom: 1px solid;
  font-weight: 700;
}

hr {
  width: 89%;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  width: 100%;
  max-width: 2560px;
}

.container {
  max-width: 1600px;
  align-self: center;
  flex: 1 auto;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.container.large {
  max-width: 2000px;
}

.container.no-padding {
  padding: 0;
}

.container.mediunm {
  max-width: 1700px;
}

.hide-tablet {
  display: none;
}

.relative {
  position: relative;
}

.margined-section {
  margin: 5rem 0;
}

.button {
  display: inline-block;
  padding: 1.2rem 4rem;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  background-color: var(--red);
  color: #fff;
  font-size: 1.8rem;
}

.button:hover {
  background-color: #fff;
  color: var(--red);
}

.text-right {
  text-align: right;
}

.padded {
  padding: 3rem 0;
}

.padded-section {
  padding: 5rem 0;
}

.overflow-hidden {
  overflow-x: hidden;
}

.border-top {
  border-top: 3px solid #f3f3f3;
}

.uppercase {
  text-transform: uppercase;
}

.red {
  color: var(--red);
}


.header {
  position: relative;
  z-index: 10;
}

.header .columns.first {
  border-bottom: 1px solid var(--dark-red);
  padding-bottom: 2rem;
  margin-top: 0px !important;
}

/* .header.home .logo {
    text-align: center;
} */

/* .logo{
   text-align: left;
} */

.logo-img {
  backface-visibility: hidden;
  height: 80px;
}


/* nav */
.nav {
}
.nav ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}

.nav li {
  padding: 0 10px;
  font-family: prenton, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2em;
  margin-right: 2rem;
}

.nav li a {
  color: #f04d25;
  font-weight: 900;
  text-transform: uppercase;
}

body.single-portfolio  header li a {
  color: #fff;
}

/* sidebar */
.sidebar {
}

/* footer */
.footer {
  padding: 20px;
}

.pagination {
  font-size: 1.6rem;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------------*\
    SOCIAL
\*------------------------------------*/
.social-container {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.social-container.menu {
  justify-content: flex-start;
}

.social-container.flex-start {
  justify-content: flex-start;
}


.social-container.flex-start li{
  padding: 0 1.5rem 0 0;
}

.social-container li {
  padding: 0 10px;
}

.social-container li a {
  font-size: 3.2rem;
  opacity: 1;
  transition: 0.4s ease;
  display: inline-block;
}

.social-container.menu li a {
  margin-right: 1.5rem !important;
}

.social-container li a:hover {
  opacity: 0.6;
}

.fa-facebook-f:before {
  content: "\f39e";
  color: #f04d25;
}
.fa-twitter:before {
  content: "\f39e";
  color: #f04d25;
}
.fa-instagram:before {
  content: "\f39e";
  color: #f04d25;
}
.fa-behance:before {
  content: "\f39e";
  color: #f04d25;
}
.fa-linkedin-in:before {
  content: "\f39e";
  color: #f04d25;
}

.social.vertical .social-container {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  max-width: max-content;
  position: relative;
  left: 0;
  transition: 0.4s ease;
}

/*------------------------------------*\
    RESPONSIVE MENU
\*------------------------------------*/

#hamburger {
  position: relative;
}


#hamburger:before {
  content: '';
  clip-path: circle(50% at 50% 50%);
  background-color: var(--dark-red) !important;
  position: fixed !important;
  height: 60px !important;
  width: 60px !important;
  overflow: hidden !important;
  /* transform: scale(0); */
  /* scale: 0; */
  display: block !important;
  transition: all 0.4s ease !important;
}

#hamburger:hover:before {
  
}

body.single-portfolio .responsive-menu-pro-inner, 
body.single-portfolio .responsive-menu-pro-inner::before,
body.single-portfolio .responsive-menu-pro-inner::after {
  background-color: white;
}

/* .responsive-menu-pro-inner,
.responsive-menu-pro-inner::before,
.responsive-menu-pro-inner::after {
  transition: background-color 0.3s 0.1s ease-out !important;
} */

button#responsive-menu-pro-button {
    overflow: visible !important;
      /* z-index: 18 !important; */
}


#responsive-menu-pro-container {
  z-index: 18 !important;
  /* clip-path: circle(50% at 50% 50%);
  background-color: var(--dark-red) !important;
  position: fixed !important;
  height: 60px !important;
  width: 60px !important;
  overflow: hidden !important;
  transform: scale(0);
  scale: 0;
  display: block !important;
  transition: all 0.4s ease !important; */
  position: relative
}

#responsive-menu-pro-container:before {
   content: '';
    height: 100%;
    width: 100%;
    background-color: var(--dark-red);
    position: absolute;
    top: 0;
    left: 0;
    /* scale: 0; */
    /* transform: scale(0); */
    transition: all 0.4s ease !important;
    z-index: -1;
}

/* #responsive-menu-pro-button:before {
    content: '';
    height: 60px;
    width: 60px;
    background-color: var(--dark-red);
    position: absolute;
    left: -2px;
    right: 0;
    top: 0;
    margin: 0 auto;
    clip-path: circle(50% at 50% 50%);
    scale: 0;
    transform: scale(0);
    transition: all 0.4s ease !important;
    z-index: -1;
}

#responsive-menu-pro-button:not(.is-active):hover:before {
  scale: 1.2 !important;
  transform: scale(1.2) !important;
} */

#responsive-menu-pro-button:not(.is-active):hover .responsive-menu-pro-inner,
#responsive-menu-pro-button:not(.is-active):hover
  .responsive-menu-pro-inner::before,
#responsive-menu-pro-button:not(.is-active):hover
  .responsive-menu-pro-inner::after {
  background-color: var(--dark-red) !important;
}

body.single-portfolio #responsive-menu-pro-button:not(.is-active):hover .responsive-menu-pro-inner,
body.single-portfolio #responsive-menu-pro-button:not(.is-active):hover
  .responsive-menu-pro-inner::before,
body.single-portfolio #responsive-menu-pro-button:not(.is-active):hover
  .responsive-menu-pro-inner::after {
  background-color: white !important;
}


#responsive-menu-pro-wrapper {
  position: relative;
  top: 40%;
  transform: translateY(-40%);
  opacity: 1;
  visibility: visible;
  transform: 0.3s ease;
  /* opacity: 0; */
}


/* #responsive-menu-pro-container:not(.is-active).hover {
  transform: scale(1.2) !important;
  scale: 1.2 !important;
} */

#responsive-menu-pro-container #responsive-menu-pro-wrapper {
  max-width: 1600px;
  margin: 0 auto !important;
  /* background-color: var(--dark-red) !important; */
}

#responsive-menu-pro-button .responsive-menu-pro-inner,
#responsive-menu-pro-button .responsive-menu-pro-inner::before,
#responsive-menu-pro-button .responsive-menu-pro-inner::after {
  border-radius: 0px;
}

#responsive-menu-pro-button.responsive-menu-pro-spring.is-active
  .responsive-menu-pro-inner::before {
  width: 40px;
}

#responsive-menu-pro-wrapper li.responsive-menu-pro-item {
  margin-bottom: 4rem;
  overflow: hidden;
}

#responsive-menu-pro-wrapper a.responsive-menu-pro-item-link {
  font-size: 10vmin !important;
  height: 10vmin !important;
  line-height: 10vmin !important;
  text-transform: uppercase;
  color: var(--red);
  /* background: -webkit-linear-gradient(180deg, #C72B43 33%, #2B6FEB 100%);; */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  font-weight: 900;
  transition: 0.4s ease;
  position: relative;
}

#responsive-menu-pro-additional-content .social-container  .fab:before{
  color: #fff;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
/*------------------------------------*\
    Home PAGES
\*------------------------------------*/

.first-container {
  order: 1;
}

.second-container {
  order: 0;
}

.third-container {
  order: 2;
}

.main-message p {
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5em;
  margin: 0px;
  line-height: 1.2;
}

.columns.is-multiline.is-mobile {
  margin-top: 41px;
}

.text-block-container-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.text-block-container-right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  text-align: left;
}

.text-block h2 {
  color: #f04d25;
  font-size: 2em;
  font-family: orpheuspro, serif;
  font-weight: 100;
  font-style: normal;
}
.text-block p {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
  margin: 1rem 0;
}

.text-block-container-right ul {
  list-style-type: none;
  padding: 0;
}
.text-block-container-right li {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
}

.middle-image {
  text-align: center;
  position: relative;
  width: max-content;
  margin: 0 auto;
}

.middle-image:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5vmin;
  transform: translateY(-50%);
  background-image: url("img/wave.png");
  background-size: contain;
  background-position: center;
  width: 144px;
  height: 71px;
}

.middle-image p {
  position: absolute;
  color: #f04d25;
  right: -15vmin;
  bottom: 9%;
  max-width: 285px;
  font-size: 3.5rem;
  text-align: left;
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.middle-image p span {
  color: black;
}
.bachelordegree h4 {
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
}
.bachelordegree span {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2rem;
  padding: 0;
  color: #959595;
}

.bachelordegree p {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2rem;
  padding: 0;
  margin: 0;
}

.associatedegree h4 {
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin-bottom: 0;
}
.associatedegree span {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2rem;
  padding: 0;
  color: #959595;
}

.associatedegree p {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2rem;
  padding: 0;
  margin: 0;
}
#eductationtitle {
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 5em;
}

.Job h4 {
  font-family: orpheuspro, serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
}
.Job span {
  font-family: prenton, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.5rem;
  padding: 0;
  color: #959595;
}
#space {
  margin-top: 30px;
}

#line {
}

.project-block * {
  color: #444;
}

.project-image {
  height: 35vw;
  min-height: 360px;
  max-height: 400px;
  width: 100%;
  background-color: var(--red);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*------------------------------------*\
    PORTFOLIO
\*------------------------------------*/

.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

.grid-item {
  grid-template-rows: 1fr auto;
  break-inside: avoid;
}

#portfolio h1 {
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
}

.project-wrapper {
  background-color: rgba(0, 0, 0, 0.15);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  border-bottom: 3px solid #fff;
}

.project-wrapper.no-image {
  background-color: var(--red);
}

.project-wrapper * {
  color: #fff;
}

.project-wrapper .inner {
  min-height: 550px;
  max-height: 750px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.project-wrapper h2 {
  font-size: 6.5rem;
}

.project-wrapper .columns {
  width: 100%;
}


/*------------------------------------*\
    SINGLE PORTFOLIO
\*------------------------------------*/

.bg-image {
  width: 100%;
  height: 75vmin;
  min-height: 475px;
  background-position: center;
  background-size: cover;
  margin-top: -155.3px;
}

.portfolio-section {
  position: relative;
  margin-top: -15vmin;
}

.portfolio-intro  {
  border-bottom: 1px solid var(--dark-red);
}

.portfolio-intro .column.left {
  background-color: #fff;
  padding: 2vmin 5vmin;
  position: relative;
}

.portfolio-intro .column.right {
  position: relative;
  top: 15vmin;
}

.portfolio-intro .column.left h1 {
  font-size: 11vmin;
  color: black;
}

.portfolio-intro .column.left p.portfolio-cats a{
  color: black;
  font-size: 2.6rem;
  font-weight: bold;
}


/*------------------------------------*\
    GET IN TOUCH
\*------------------------------------*/

.get-in-touch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  width: max-content;
  margin: 0 auto;
  padding: 7rem 12.5rem 7rem;
  position: relative;
  transition: 0.4s ease;
}

.get-in-touch:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5vmin;
  transform: translateY(-50%);
  background-image: url("img/wave.png");
  filter: grayscale(1);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 144px;
  height: 71px;
  opacity: 0.4;
}

.get-in-touch:after {
  content: "";
  position: absolute;
  background-image: url("img/dots2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 98%;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* filter: brightness(0) invert(1); */
  transition: 0.4s ease;
}

.get-in-touch:hover:after {
  filter: brightness(0) invert(1);
}

.get-in-touch p.large {
  font-family: var(--orpheuspro);
  font-weight: 100;
  font-size: 7rem;
  line-height: 1;
  margin: 0;
  color: black;
}

.get-in-touch p.small {
  color: #939393;
  margin-bottom: 5px;
  line-height: 1.2;
}

.get-in-touch i {
  color: var(--red);
  font-size: 6.2rem;
  transform: rotateZ(-45deg);
  font-weight: 300;
  position: relative;
  left: -4vmin;
  top: -2vmin;
  transition: 0.4s ease;
}

.get-in-touch:hover {
  background-color: var(--red);
}

.get-in-touch:hover * {
  color: white !important;
}

.get-in-touch:hover i {
  transform: rotateZ(0deg);
  left: 0vmin;
  top: 0vmin;
}

.instagram-header {
  width: max-content;
  margin: 0 auto;
  display: inline-block;
}

.instagram-header h2 {
  font-family: var(--orpheuspro);
  color: #444;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
}

.instagram-header span {
  font-size: 3rem;
}

/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* Fixes potential theme css conflict. */
.acf-map img {
  max-width: inherit !important;
}

/*------------------------------------*\
    LOADER
\*------------------------------------*/

.preload {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: 20;
  background-color: var(--dark-red);
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.75);
  transform: translate3d(0px, 0px, 0px);
}

/* .preload.active {
      transform: translate3d(
        0px,
        0px,
        0px
    ); 
} */

.preload.remove {
  /* opacity: 0;
    visibility: hidden; */
  transform: translate3d(100%, 0px, 0);
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width: 320px) {
}

@media only screen and (min-width: 480px) {
}

@media only screen and (min-width: 769px) {
  .text-block-container-right {
    text-align: right;
  }

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

@media only screen and (min-width: 1024px) {
  .first-container {
    order: 0;
  }

  .second-container {
    order: 1;
  }

  .third-container {
    order: 2;
  }

  .hide-tablet {
    display: block;
  }

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

@media only screen and (min-width: 1140px) {
}

@media only screen and (min-width: 1280px) {
  .project-wrapper .inner {
    min-height: 40vmin;
  }
}

@media only screen and (min-width: 1400px) {
  .social.vertical .social-container {
    position: absolute;
    flex-direction: column;
    left: -10%;
  }
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.sticky {
}

.bypostauthor {
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .nav,
  .sidebar,
  .home-slider,
  #respond {
    display: none;
  }

  @page {
    margin: 2cm;
  }
}
