@charset "UTF-8";
/*
Theme Name: Mullins General Construction
Theme URI: 
Author: the Development team
Author URI: https://redspotdesign.com/
Description: A custom theme for Mullins General Construction
Requires at least: WordPress 4.9.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp5default
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 with others.

Mullins General Construction is based on Underscores https://underscores.me/, (C) 2012-2018 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/
*/


/*--------------------------------------------------------------
>>> GENERAL STYLES
----------------------------------------------------------------*/
  html { font-size: 16px; /* 1em */}

  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
  }

  body:not(.elementor-page) a{
    color: #0F2465;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  body:not(.elementor-page) a:hover {
    color: #88929A;
    text-decoration: none;
  }

  body:not(.elementor-page) .h1,
  body:not(.elementor-page) .h2,
  body:not(.elementor-page) .h3,
  body:not(.elementor-page) h1,
  body:not(.elementor-page) h2,
  body:not(.elementor-page) h3,
  body:not(.elementor-page) h4,
  body:not(.elementor-page) h4,
  body:not(.elementor-page) h6 {
    margin-top: 0;
    transition: all ease-in-out .3s;
  }

  body:not(.elementor-page) h1,
  body:not(.elementor-page) h2{ font-size: 50px; }
  body:not(.elementor-page) h3{ font-size: 40px; }
  body:not(.elementor-page) h4{ font-size: 30px; }
  body:not(.elementor-page) h5{ font-size: 25px; }
  body:not(.elementor-page) h6{ font-size: 18px; }

  .site-button{

  }

/*--------------------------------------------------------------
>>> LAYOUT
----------------------------------------------------------------*/
  .site {
    margin: 0 auto;
    /*max-width: 1920px;*/
  }

  .full {
    width: 100%;
  }

  .main {
    margin: auto;
    max-width: 1920px;
  }

  .container {
    max-width: 1640px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* Alignments */
  .alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 1rem;
  }

  @media only screen and (min-width: 768px) {
    .alignleft {
      /*rtl:ignore*/
      margin-right: calc(2 * 1rem);
    }
  }

  .alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1rem;
  }

  @media only screen and (min-width: 768px) {
    .alignright {
      /*rtl:ignore*/
      margin-left: calc(2 * 1rem);
    }
  }

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

  /* Clearings */
  .clear:before,
  .clear:after,
  .entry-content:before,
  .entry-content:after,
  .comment-content:before,
  .comment-content:after,
  .site-header:before,
  .site-header:after,
  .site-content:before,
  .site-content:after,
  .site-footer:before,
  .site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
  }

  .clear:after,
  .entry-content:after,
  .comment-content:after,
  .site-header:after,
  .site-content:after,
  .site-footer:after {
    clear: both;
  }

/*--------------------------------------------------------------
>>> GALLERIES
----------------------------------------------------------------*/
  .gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: calc(1.5 * 1rem);
  }

  .gallery-item {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 16px;
    text-align: center;
    vertical-align: top;
    width: 100%;
  }

  .gallery-columns-2 .gallery-item {
    max-width: calc((100% - 16px * 1) / 2);
  }

  .gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
    margin-right: 0;
  }

  .gallery-columns-3 .gallery-item {
    max-width: calc((100% - 16px * 2) / 3);
  }

  .gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
    margin-right: 0;
  }

  .gallery-columns-4 .gallery-item {
    max-width: calc((100% - 16px * 3) / 4);
  }

  .gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
    margin-right: 0;
  }

  .gallery-columns-5 .gallery-item {
    max-width: calc((100% - 16px * 4) / 5);
  }

  .gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
    margin-right: 0;
  }

  .gallery-columns-6 .gallery-item {
    max-width: calc((100% - 16px * 5) / 6);
  }

  .gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
    margin-right: 0;
  }

  .gallery-columns-7 .gallery-item {
    max-width: calc((100% - 16px * 6) / 7);
  }

  .gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
    margin-right: 0;
  }

  .gallery-columns-8 .gallery-item {
    max-width: calc((100% - 16px * 7) / 8);
  }

  .gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
    margin-right: 0;
  }

  .gallery-columns-9 .gallery-item {
    max-width: calc((100% - 16px * 8) / 9);
  }

  .gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
    margin-right: 0;
  }

  .gallery-item:last-of-type {
    padding-right: 0;
  }

  .gallery-caption {
    display: block;
    font-size: 0.71111em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0.5rem;
  }

  .gallery-item>div>a {
    display: block;
    line-height: 0;
    box-shadow: 0 0 0 0 transparent;
  }

  .gallery-item>div>a:focus {
    box-shadow: 0 0 0 2px #0073aa;
  }

/*--------------------------------------------------------------
>>> HEADER
----------------------------------------------------------------*/
	.hd-phone .elementor-icon{
		background: #0F2465;
	    box-sizing: border-box;
	    padding: 8px;
	    border-radius: 5px;
	}

	.site-header-sticky *{ transition: all ease-in-out .3s; }

	.site-header-sticky{ box-shadow: 0 0 10px rgba(0,0,0,.1); }

	.site-header-sticky .hd-logo img{ max-width: 220px; }

	.site-header-sticky .hd-navigation .elementor-item{ padding-top: 0 !important; }

/*--------------------------------------------------------------
>>> HOMEPAGE
----------------------------------------------------------------*/
  .home-banner p{ 
  	text-shadow: 0 0 10px #000; 
  	margin-bottom: 0;
  }

  .mgc-image .elementor-element,
  .mgc-image .elementor-element .elementor-widget-container,
  .mgc-image .elementor-element .elementor-image{ height: 100%; }

  .mgc-image .elementor-element .elementor-image img{
  	height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .reviews-slider .elementor-testimonial__header{
  	flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .reviews-slider .elementor-testimonial__cite{
  	margin: 10px auto!important;
  }

  .reviews-slider .elementor-testimonial__text{ text-align: center; }

  .roofing-services .gallery{ margin: 0  auto !important; }

/*--------------------------------------------------------------
>>> INNER PAGE
----------------------------------------------------------------*/
	.roofing-services .gallery{ justify-content: end; }

	.mgc-standard .elementor-column-wrap{
		max-width: 830px;
		margin: 0 auto;
	}

/*--------------------------------------------------------------
>>> BLOG
----------------------------------------------------------------*/
  .blog #primary {
    margin-bottom: 60px;
  }
  
  .post-item{
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 50px;
    display: flex;
    margin: 30px 0;
    align-items: center;
  }

  .post-item .post-thumbnail{
    flex: 0 0 475px;
    box-sizing: border-box;
    padding-right: 50px;
    height: 275px;
    margin: 0;
  }

  .post-item .post-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .post-item-date{
    clear: both;
    color: #333;
    font-family: 'Montserrat',sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 15px;
  }

  .post-item-date dt{ float: left; }

  .post-item p{
    font-size: 16px;
  }

  .post-item .site-button.elementor-button{ 
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 16px;
  }

  .inner .site-main .post-item h4 { 
    padding-top: 0; 
    margin-bottom: 0;
  }

  .single .site-main .entry-header{ margin-bottom: 50px; }

  .single .site-main h4{ 
    padding-top: 30px; 
    margin-bottom: 0;
  }

  .single-post-navigation{
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    width: 100%;
  }

  .single-post-navigation > div{ 
    flex: 0 0 50%; 
    box-sizing: border-box;
  }

  .single-post-navigation h6{ font-weight: 700; }

  .spn-prev{ padding-right: 15px; }

  .spn-next{ 
    text-align: right; 
    padding-left: 15px;
  }

  .single-post-navigation a{
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    font-weight: 600;
  }

  .inner .site-main .pagination{ text-align: center; }

  .inner .site-main .pagination .screen-reader-text{ display: none; }

  .inner .site-main .pagination .nav-links{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .inner .site-main .pagination .page-numbers{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    box-sizing: border-box;
    padding: 5px 10px;
    background: #333;
    color: #fff;
  }

  .inner .site-main .pagination .page-numbers svg path:first-child{ fill: #fff; }

  .inner .site-main .pagination .page-numbers:hover,
  .inner .site-main .pagination .page-numbers.current{ background: #0F2465; }

  .inner .site-main .pagination .page-numbers.next,
  .inner .site-main .pagination .page-numbers.prev{ width: auto; }

  .single .site-main h1{
    margin: 0;
    line-height: 120%;
    font-size: 50px;
  }

  .map-section{
    width: 100%;
    height: 500px;
  }

  .alignright img,
  .alignleft img{
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .wp-caption-text{
    display: block;
    word-break: break-all;
    width: 100%;
  }


/*--------------------------------------------------------------
>>> MEDIA QUERIES
----------------------------------------------------------------*/
  @media only screen and (min-width: 1920px){
    .oneLine h2.elementor-heading-title {font-size: 60px!important;}
  }

  @media only screen and (min-width: 1024px) and (max-width: 1510px){
  	.hd-navigation .elementor-nav-menu li:not(:last-child){ margin-right: 13px !important; }
  }

  @media only screen and (min-width: 1024px) and (max-width: 1380px){
  	.hd-navigation .elementor-nav-menu .elementor-item{ font-size: 14px !important; }
  }

  @media only screen and (min-width: 1024px) and (max-width: 1230px){
  	.hd-navigation .elementor-nav-menu li:not(:last-child) { margin-right: 7px !important; }

  	.hd-navigation .elementor-nav-menu .elementor-item { 
  		font-size: 12px !important; 
  		padding-top: 0 !important;
  	}

  	.bn-quote-title .elementor-heading-title{
  		font-size: 35px !important;
    	line-height: 45px !important;
  	}

  	.bn-quote-subtitle{
  		font-size: 18px !important;
    	line-height: 29px !important;
  	}
  }

  @media only screen and (max-width: 1230px){
  	.banner-home-title br,
  	.home-banner br{ display: none; }
  }

  @media only screen and (max-width: 1024px) {
    .post-item{ padding: 30px; }

    .post-item .post-thumbnail{
      padding-right: 30px;
      flex-basis: 350px;
    }

    .roofing-services .gallery{ justify-content: center; }

    .map-section{ height: 400px; }

    .alignright,
    .alignleft{
      float: none;
      display: block;
      margin: 30px auto;
      width: 100% !important;
      text-align: center;
    }


  }

  @media only screen and (max-width: 780px){
    .post-item { flex-direction: column; }

    .post-item .post-thumbnail {
      padding-right: 0;
      flex-basis: 100%;
    }

    .post-item-content{
      width: 100%;
      margin-top: 20px;
    }

    .post-item .site-button.elementor-button{
      padding: 12px 25px;
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 767px){
  	.hd-phone .elementor-icon-box-wrapper{ display: flex; }

  	.hd-phone .elementor-icon-box-icon{
  		padding: 0 10px 0 0 !important;
    	margin: 0 !important;
  	}

  	.site-header-sticky .hd-logo img { max-width: 120px; }

  	.site-header-sticky .hd-socials,
  	.site-header-sticky .hd-phone{ display: none !important; }

    .roofing-services .gallery .gallery-item{ padding: 10px 20px !important; }

    .single .site-main h1{ font-size: 35px; }
  }

  @media only screen and (max-width: 540px){
  	.hd-right{ width: 45% !important; }

  	.hd-logo-col{ width: 55% !important; }

    .inner .site-main .post-item h4{
      font-size: 23px !important;
      line-height: 35px !important;
    }
  }

  @media only screen and (max-width: 500px){
    .post-item .post-thumbnail{ height: 200px; }
  }

  @media only screen and (max-width: 410px){
  	.hd-logo-col { width: 42% !important; }

  	.hd-right { width: 58% !important; }

  	.banner-home-title .elementor-heading-title{
  		font-size: 30px !important;
    	line-height: 39px !important;
  	}

  	.banner-quote-section .elementor-column-wrap{ padding: 15px !important; }
  }

  