/* 1200px and up - laptop/desktop */

.L {
	float: left;
}
.R {
	float: right;
}
.CLEAR {
	clear: both;
}

.centered { 
	text-align:center; 
}
.leftalign { 
	text-align:left; 
}
.rightalign { 
	text-align:right; 
}

.FULL {
  width: 98%;
  margin: 0 1%;
}
.HALF {
  width: 48%;
  margin: 0 1%;
}
.THIRD {
  width: 31.3%;
  margin: 0 1%;
}
.THIRDx2 {
  width: 64.6%;
  margin: 0 1%;
}
.QUARTER {
  width: 23%;
  margin: 0 1%;
}
.QUARTERx3 {
  width: 73%;
  margin: 0 1%;
}
.FIFTH {
  width: 18%;
  margin: 0 1%;
}
.SIXTH {
  width: 14.6%;
  margin: 0 1%;
}
.TWELVEx5 {
  width: 39.6%;
  margin: 0 1%;
}

.wrapW {
	width:100%;
}
.pageW {
	width: 1380px;
	margin: 0 auto;
	max-width: 96%;
}

.italic {
  font-style: italic;
}
.unbold {font-weight: normal;}
.red { color: #F00 !important; }

body {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: var(--BODYbckcolor);
	color: var(--Pcolor);
}



img.centered {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
img {
	max-width: 100%;
	height: auto;
} 

a.ANCHOR {
	margin: -240px 0 240px;
	display: inline-block;
}


/* FIXED TOP+HEADER */
body {
	padding-top: 0; /* slider behind TOP */
}
#wrapHDR {
	position: absolute;
	top:0;
}

/* HEADER */
#wrapHDR {
	background-color: #268bffCC;
	transition: all 0.5s ease;
	box-shadow: none;
	position: fixed;
	z-index: 100;
	top: 0;
}
#wrapHDR.HomeHDR {
	background-color: initial;
}
#wrapHDR.Scrolling {
	background-color: #268bffCC;
	/* box-shadow: 0 5px 20px var(--AZBblue2); */
}
#HDR {
	height: 120px;
	position: relative;
	z-index: 1000;
}
#LOGO {
	position: absolute;
	top: 50%;
	left: 0px;
	z-index: 2000;
	transform: translateY(-50%);
}
#LOGO img {
	height: 100px;
	width: auto;
}
/*
#PHONE {
	z-index: 2000;
	top: 50%;
	position: absolute;
	right: 0;
	width: max-content;
	transform: translate(0,-50%);
}
#PHONE a {
	color: var(--NAVItxt);
	font-size: 13pt;
	font-weight: 500;
}
#PHONE a:hover {
	color: var(--NAVItxthover);
	text-decoration: none;
}
*/
/* NAVI */
#NAVI {
	top: 50%;
	position: absolute;
	right: 0;
	width: max-content;
	transform: translate(0,-50%);
	padding-top: 3px;
}
/*
.nav-menu > li::after {
  content: "•";
  padding-left: 10px;
}
*/
.nav-menu li a {
	/* text-transform: uppercase; */
	font-size: 14pt;
	font-weight: 500;
	display: inline-block;
	text-shadow: -2px 2px #0004;
}
.navbar {
	text-align: right;
}
.main-navigation {
	display: inline-block;
}

.nav-menu li.NAVIphone {
	background-color: var(--FormButtonBckColor);
	color: var(--FormButtonTextColor);
	padding: 4px;
	border-radius: 3px;
}
.nav-menu li.NAVIphone:hover {
	background-color: var(--FormButtonBckColorHover);
	color:  var(--FormButtonTextColorHover);
}



/*
#wrapINNERBANNER, #wrapINNERBANNEREMPTY {
	background: #000000;
	background: linear-gradient(0deg,var(--CDEblue) 0%, var(--CDEblue2) 100%);
}
#wrapINNERBANNER {
	background-position: center;
	background-size: cover;
}
#INNERBANNER {
	padding: 150px 0 30px;
}
#INNERBANNER h1 {
	margin: 0;
	color: #FFF;
	background-color: var(--CDEbluetransp);
	padding: 20px;
	width: max-content;
}
#wrapINNERBANNEREMPTY #INNERBANNER h1 {
	background: none;
}
*/



/* THEME ELEMENTS */

a.Button {
	background-color: var(--FormButtonBckColor);
	color: var(--FormButtonTextColor);
	font-size: 12pt;
	font-weight: 600;
	padding: 16px 30px;
	border-radius: none;
	transition: background-color 0.5s ease;
	line-height: 1;
	display: inline-block;
	/* border: 3px solid; */
	/* border-image: var(--GradientBorderImage); */
	border-radius: 4px;
}
a.Button:hover {
	background-color: var(--FormButtonBckColorHover);
	color:  var(--FormButtonTextColorHover);
    text-decoration: none;
    box-shadow: none;
}

.Shadowed {
	box-shadow: var(--BoxShadow);
}

.TitleLine {
  display: flex;
  align-items: flex-end; /* alinea con la base del h2 */
}
.TitleLine h2 {
  margin: 0;
  margin-right: 10px; /* espacio entre texto y línea */
}
.TitleLine::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid var(--AZBblue);
}



/* ANIMATIONS ON SCROLL for Visible items */
body {
	overflow-x: hidden;
}
.HideOverflow{
	_overflow: hidden;
}
.AnimFromRight, .AnimFromLeft, .AnimFromBottom {
  position: relative;
}
.AnimFromRight.Visible {
	animation: _AnimationFromRight_ 1s;	
}
	@keyframes _AnimationFromRight_ {
	  0% { right: -50vw; opacity:0; }
	  33% { right: -50vw; opacity:0; }
	  100% { right: 0vw; opacity:1; }
	}
.AnimFromLeft.Visible {
	animation: _AnimationFromLeft_ 1s;	
}
	@keyframes _AnimationFromLeft_ {
	  0% { left: -50vw; opacity:0; }
	  33% { left: -50vw; opacity:0; }
	  100% { left: 0vw; opacity:1; }
	}
.AnimFromBottom.Visible {
	animation: _AnimationFromBottom_ 1s;	
}
	@keyframes _AnimationFromBottom_ {
	  0% { bottom: -50vh; opacity:0; }
	  33% { bottom: -50vh; opacity:0; }
	  100% { bottom: 0vh; opacity:1; }
	}
.Visible.Delay1 {
	animation-delay: calc( var(--AnimationDelay) * 1s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay2 {
	animation-delay: calc( var(--AnimationDelay) * 2s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay3 {
	animation-delay: calc( var(--AnimationDelay) * 3s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay4 {
	animation-delay: calc( var(--AnimationDelay) * 4s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay5 {
	animation-delay: calc( var(--AnimationDelay) * 5s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay6 {
	animation-delay: calc( var(--AnimationDelay) * 6s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay7 {
	animation-delay: calc( var(--AnimationDelay) * 7s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay8 {
	animation-delay: calc( var(--AnimationDelay) * 8s );
	animation-fill-mode: forwards;
	opacity: 0;
}




/* HOME BARS */

#wrapHOME_SLIDER {
	background-color: var(--AZBblue);
	background-image: url("images/HomeSlider_260807.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#HOME_SLIDER {
	height: 100vh;
	position: relative;
}
#HOME_SLIDER .Header {
	position: absolute;
	width: 66%;
	color: var(--White);
	font-weight: 500;
	bottom: 30%;
	text-shadow: -3px 3px #0004;
	transform: translateY(-50%);
	font-size: 4vw;
}
#HOME_SLIDER .Button {
	position: absolute;
	color: var(--White);
	font-weight: 500;
	bottom: 20%;
	transform: translateY(-50%);
	display: block;
	font-size: 14pt;
	box-shadow: var(--BoxShadow);
}


#INTRO {
  max-width: 1200px;
  padding: 60px 0;
}
#INTRO h2 {
  text-align: center;
  margin-top: 0;
}
#INTRO p {
  text-align: center;
}


#wrapBOXES {
  background: var(--BLueGradient);
}
#BOXES {
  padding: 60px 0;
  max-width: 1200px;
}
#BOXES h2 {
  color: var(--Black);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 0;
}
#BOXES > div.QUARTER {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center 30px;
	background-color: var(--White);
	padding: 160px 40px 40px;
	box-sizing: border-box;
	text-align: center;
	box-shadow: var(--BoxShadow);
	border-radius: 6px;
}
#BOX1 {
	background-image: url("images/bckBOX_01_260501.jpg");
}
#BOX2 {
	background-image: url("images/bckBOX_02_260501.jpg");
}
#BOX3 {
	background-image: url("images/bckBOX_03_260501.jpg");
}
#BOX4 {
	background-image: url("images/bckBOX_04_260501.jpg");
}
#BOXES > div.QUARTER p {
  text-align: center;
  font-size: 12pt;
  min-height: 140px;
}
#BOXES > div.QUARTER a.Button {
  color: var(--White);
  font-weight: 600;
}
#BOXES > a.Button {
  margin: 60px auto 0;
  display: block;
  width: fit-content;
}


#SIMPLIFY {
  padding: 60px 0;
}
#SIMPLIFY h4 {
  margin-top: 16pt;
  color: var(--AZBblue);
  line-height: 1.3;
}


#LOGOS {
  text-align: center;
  padding: 0 0 60px;
}


div.ColumnMembers > div {
	background-image: url("images/LOGOswoosh.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	padding: 40px 0;
}
div.ColumnMembers > div h3 {
  margin: 0 0 5pt;
  color: var(--Black);
}
div.ColumnMembers > div p {
  margin: 0;
  text-transform: uppercase;
  font-size: 10pt;
}

.ColumnTestimonials .wp-block-quote {
	background-color: #f5d7d7;
	padding: 20pt;
	border-radius: 20px;
	border-bottom-left-radius: 0;
	box-shadow: 10px 20px 10px #0001;
	border: solid 2px #ab7e7e;
}








#wrapFORM {
	background: var(--BLueGradient);
}
#FORM {
	padding: 60px 0;
}
.g-recaptcha {
	margin: 20px auto;
	display: block;
}
#Frame_Contact {
	width: 100%;
	display: none;
	height: 270px;
}





/* FORM STYLES */
.FORM {
	/* background: var(--HACredtransp); */
	/* padding: 30px; */
	/* border-radius: 5px; */
	/* width: 360px; */
	/* margin: 0 auto; */
}
#CONTACT .L h2 {
	color: #FFF;
	font-size: 36pt;
	font-weight: 200;
	margin-top: 0;
}
.FORM p {
	color: #FFF;
	margin: 0 0 20pt;
	/* font-size: 10pt; */
}
.FORM input, .FORM #Comments, .FORM #ServiceNeeded {
	font-family: var(--BodyFont);
	color: var(--FormFieldTextColor);
	font-size: 14pt;
	background-color: var(--FormFieldBckColor);
	padding: 6pt 8pt;
	width: 100%;
	box-sizing: border-box;
	display: inline-block;
	border: solid 1px var(--FormFieldBorderColor);
	margin: 0 0 20px 0;
	font-weight: normal;
	/* border-radius: 5px; */
}
.FORM .button {
    font-family: var(--TitlesFont); 
	margin-top: 20px;
	background-color: var(--FormButtonBckColor);
	color: var(--FormButtonTextColor);
	font-weight: 700;
	font-size: 24px;
	padding: 10px 50px;
	border-radius: 1px;
	width: initial;
	
   border: 3px solid;
   border-image: var(--GradientBorderImage);
}
.FORM .button:hover {
	color: var(--FormButtonTextColorHover);
	background-color: var(--FormButtonBckColorHover);
	cursor: pointer;
	box-shadow: none;
}
#Frame_Block, #Frame_Slider  {
	width: 100%;
	margin-top: -50px;
	display: none;
	/* background-color: #FFF; */
	/* padding: 20px 0; */
	box-sizing: border-box;
	height: 260px;
	/* border: solid 2px #C00; */
}

.FORM #HaveJyes, .FORM #HaveJno {
	width: initial;
}



/* COLUMNS */
:where(.wp-block-columns.is-layout-flex) {
	gap: 0;
}



.Map {
	margin-bottom: -5px;
	filter: grayscale(1);
}

#wrapMAPS {
	background-color: #000;
}
#MAPS {
	padding: 60px 0;
}
#MAPS h3, #MAPS p {
	text-align: center;
	color: #FFF;
}
iframe.gMap {
	border: solid 1px var(--JSGred2) !important;
	box-sizing: border-box;
}

.BlackBox {
  background-color: #000;
}
#MAIN .BlackBox h2 {
  color: var(--DMPred2);
  margin: 20pt;
}
#MAIN .GrayBox {
	background-color: var(--DMPgray);
	padding: 20pt;
	margin: 40px auto;
	max-width: 1024px;
	box-shadow: 0 10px 20px #0003;
}
.GrayBox p {
  margin: 20pt;
  text-align: left;
}
.GrayBox p strong {
  color: var(--DMPred);
  font-weight: 700;
}




/* MAIN */
#MAIN {
	padding: 20px 2% 80px;
	box-sizing: border-box;
	color: var(--MADwhiteC);
}
#MAIN.InnerFullWPage {
	padding: 120px 0% 80px;
	box-sizing: border-box;
	min-height: calc(100vh - 350px);
}
#MAIN.CompanyPage {
	padding: 40px 0;
}

#MAIN h1 {
	font-size: 36pt;
	color: var(--H1color);
	line-height: 1.3;
	margin-bottom: 30pt;
	/* text-transform: uppercase; */
	font-weight: bold;
	margin-top: 16pt;
}
#MAIN ul {
	list-style: disclosure-closed;
}	
#MAIN li::marker {
	color: var(--MADwhiteC);
}

.wp-block-video {
	width: 100%;
	height: auto;
	max-width: 1000px;
	margin: 0 auto;
}


/* Columns & captions */
.wp-block-columns {
	margin-bottom: 0;
}
.wp-block-columns.NOSHADOW .aligncenter.size-full {
	box-shadow: none;
}
.wp-block-image .aligncenter > figcaption, .wp-block-image .alignleft > figcaption, .wp-block-image .alignright > figcaption {
	display: block;
	text-align: center;
}
.wp-block-image.NOSHADOW img {
	box-shadow: none;
}
.wp-block-image.size-large {
	text-align: center;
	margin-bottom: 20pt;
}





#MAINL {
	padding-right: 4%;
	box-sizing: border-box;
}

#MAINR h2 {
  color: var(--MADwhiteC);
	font-size: 24pt;
	margin-top: 13pt;
}
#MAINR ul {
	padding-left: 14px;
	list-style: disclosure-closed;
  color: var(--MADwhiteC);	
}
#MAINR li {
	font-size: 12pt;
}
#MAINR p {
  color: var(--MADwhiteC);
}
#MAINR {
  color: var(--MADwhiteC);
}



#MAIN a {
	color: var(--CDEblue2);
	font-weight: 500;
	text-decoration: none;
}
#MAIN a:hover {
	text-decoration: underline;
}
.widget_block {
	margin-bottom: 60px;
}
.widget_block li, .widget_block p, .widget_block a {
	color: var(--ILLorange);
}

/* BLOG */
.PostCell .Thumb {
	background-color: var(--FPTgreen);
	padding: 40pt 10pt 10pt;
	background-repeat: no-repeat;
	background-position: center;
	border-bottom: solid 3px var(--FPTgreen);
}
h3.post-title {
  margin-top: 0;
}
#MAIN.BlogPosts a.THIRD {
  border: 2px solid;
  border-image: linear-gradient(to right, var(--MADblack6), var(--MADwhiteC), var(--MADblack6)) 1;
  box-sizing: border-box;
  padding: 20px;
	margin-bottom: 50pt;
	min-height: 220px;
}
#MAIN.BlogPosts a.THIRD:hover {
	text-decoration: none;
	background: linear-gradient(180deg,var(--MADblack1) 60%, var(--MADblack4) 100%);
}


/* PAGES' TWEAKS */
.wp-block-image.HardShadow .alignleft {
	margin-right: 2em;
}
.wp-block-image.HardShadow img {
	border: none;
	box-shadow: 10px 10px 0px #000;
	border-radius: 0;
}
.wp-block-image.HardShadow figcaption {
	font-size: 11pt;
	text-align: center;
	line-height: 1.4;
	margin-top: 10pt;
}








.PostsInfo {
	border-top: dotted 1px var(--CILbluelighttext);
	margin: -5pt 0 20pt;
	display: block;
	/*text-align: right;*/
	padding-top: 5pt;
}
.PostsDate {
	font-size: 10pt;
	font-weight: bold;
	color: var(--CILbluelighttext);
}

.navigation.post-navigation {
	padding: 30px 0;
	border-top: solid 1px var(--CILbluetext);
	margin-top: 50px;
}
.navigation.post-navigation .L {
	text-align: left;
}
.navigation.post-navigation .R {
	text-align: right;
}

.PostPreview {
	margin-bottom: 40pt;
}
.PostPreview .PostsInfo {
	margin-bottom: 5pt;
}





#MAINL {
	/*padding: 80px 0;*/
}
#MAIN .HALF {
	width: 46%;
	margin: 0 2%;
}
#MAIN .FULL {
	width: 96%;
	margin: 0 2%;
}
#MAIN.ContactPage {
	margin-bottom: 0;
}

/* FAQs */
.ui-accordion .ui-accordion-header {
  background: none;
  border: none;
  font-family: var(--TitlesFont);
  font-size: 18pt;
  margin: 20pt 0 0 0;
  font-weight: 600;
  color: var(--H3color);
  line-height: 1.1;
  padding: 0 0 0 16pt;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  left: 0;
}
.ui-accordion .ui-accordion-content {
  border: none;
  margin: 12pt 0 0 20pt;
  overflow: initial;
  box-sizing: content-box;
  padding: 0;
  width: 90%;
}
/*
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
	margin-top: 10px !important;
	background: none;
	border: none;
}
.ui-accordion .ui-accordion-content {
	border: none;
	padding: 0 0 20px 1.3em;
	border-left: dotted 2px #CCC;
	margin-left: 0.9em;
	border-radius: 0;
	background: #0a436e11;
	margin-bottom: 20px;
}
.ui-accordion-content li {
	list-style: square;
}
*/

/*
#MAINR.SpecialtiesRBar {
	background-color: var(--SAAred);
	padding: 74px 20px 30px;
	box-sizing: border-box;
	box-shadow: 4px 4px 12px #0006;
}
.SpecialtiesRBar h4 {
	color: #FFF;
}
.SpecialtiesRBar ul {
	padding: 0;
}
.SpecialtiesRBar li {
	padding-left: 1.3em;
	color: #FFF;
	list-style: none;
	font-size: 11pt;
}
.SpecialtiesRBar li::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
	margin-left: -1.3em;
	width: 1.0em;
}
#MAIN .SpecialtiesRBar ul a {
	color: #FFF;
	text-decoration: none;
}
#MAIN .SpecialtiesRBar ul a:hover {
	text-decoration: underline;
}
#MAINR {
	padding: 80px 0;
}

#recent-posts-2 a {
	text-decoration: none;
}
#recent-posts-2 a:hover {
	text-decoration: underline;
}
#recent-posts-2 ul {
	padding: 0;
}
#recent-posts-2 li {
	padding-left: 1.3em;
	color: var(--Acolor);
	list-style: none;
	font-size: 11pt;
}
#recent-posts-2 li::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
	margin-left: -1.3em;
	width: 1.0em;
}
*/





/* FOOTER */
#FTRwrap {
}
#FTR {
	border-top: 2px solid var(--AZBblue);
	padding: 40px 0;
}
#FTR h4 {
	margin-top: 0;
}
#FTR p {
  color: var(--FTRtxt);
  line-height: 1.2;
  font-size: 12pt;
}
#FTR a {
  color: var(--FTRa);
}
#FTR a:hover {
  color: var(--FTRahover);
}
#FTR4 h2 {
	margin: 0;
}

#FTR a.Button {
	color: var(--FormButtonTextColor);
}
#FTR a.Button:hover {
	color:  var(--FormButtonTextColorHover);
}




