/*
	Theme Name: T2UE
	Theme URI: http://t2ue.com
	Description: T2UE Engineering custom wordpress theme built by Jason Yochim.
	Version: 1.0.0
	Author: Jason Yochim (@jasonyochimagency)
	Author URI: https://jasonyochim.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/


@import "assets/css/atlas.css";
/*@import "assets/css/responsive.css" screen and (max-width: 768px);
@import "assets/css/printstyle.css" print;*/

.skip-to-content-link {
	background: #0074bc;
	color: #ffffff;
	height: 30px;
	left: calc(50% - 12px);
	padding: 6px;
	position: absolute;
	transform: translateY(-100%);
	transition: transform 0.3s;
  }
  
  .skip-to-content-link:focus {
	transform: translateY(0%);
  }


.hidden {
	position: absolute;
	background: #fff;
	color:#0074bc;
	border: 1px solid #0074bc;
	text-align: center;
	left: 1rem;
	padding: 0px 6px;
	line-height: 30px;
	height: 30px;
	width: 200px;
	transform: translateY(-30px);
	transition: transform 0.3s;
	z-index: 9999;
  }
  
  a.hidden:focus {
	transform: translateY(0px);
  }

  /* Estimate Form Customization */
.estimateRequestForm, .estimateRequestForm_wrapper {
	color: #ffffff;
}

.estimateRequestForm .gfield_description {
	color: #ffffff !important;
}

.estimateRequestForm .gform_button {
	width: auto;
    color: #ffffff;
    background-color: #0074bc;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    white-space: normal;

	border-style: none;
    border-width: 0;
    background-clip: border-box;
    border-color: #c8e6ff;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.estimateRequestForm .gform_button:hover {
	background-color: #F6A81C;
}

@media (max-width: 768px) {
  .estimateRequestForm, .estimateRequestForm_wrapper {
    text-align: center;
  }

  .estimateRequestForm .gform-footer {
    display: block !important;
  }

}

/* Services Page Canada Core Services Grid bottom row centering */
@media (min-width: 1155px) {
  .canadaCoreServices .tg-grid-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .canadaCoreServices .tg-item {
    box-sizing: border-box;
    width: 354px !important;
    margin: 0 0 16px;
    position: static !important;
  }
}

/* Logo Carousel Customization */


/* Scope everything to this specific module */
.logo-carousel-fade .pp-logos-content {
    position: relative;
    overflow: hidden; /* ensures logos don't show outside the viewport */
}

/* Left & right fade overlays */
.logo-carousel-fade .pp-logos-content::before,
.logo-carousel-fade .pp-logos-content::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;              /* width of the fade zone on each side */
    height: 100%;
    pointer-events: none;     /* don't block clicks on logos */
    z-index: 2;               /* sit above the logos */
}

/* Left fade */
.logo-carousel-fade .pp-logos-content::before {
    left: 0;
    background: linear-gradient(
        to right,
        #e6e3db 0%,            /* solid background color at the very edge */
        rgba(230, 227, 219, 0) 100%  /* fully transparent toward the middle */
    );
}

/* Right fade */
.logo-carousel-fade .pp-logos-content::after {
    right: 0;
    background: linear-gradient(
        to left,
        #e6e3db 0%,
        rgba(230, 227, 219, 0) 100%
    );
}