/*
Theme Name: Arizona Computer Guru
Theme URI: https://azcomputerguru.com
Author: Arizona Computer Guru
Author URI: https://azcomputerguru.com
Description: A custom theme built for Arizona Computer Guru
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: azcomputerguru
*/

/* COLORS */

:root {
  --color1:#333d49;
  --color2:#fe7400;
  --color3:#113559;
  --color4:#ffffff;
  --color5:#000000;
  --color6:#4d4d4d;
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

/* Reset */

*{
margin: 0px;
padding: 0px;
border: 0px;
font-family: inherit;
font-size: inherit;
line-height: inherit;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}

*:before,
*:after{
box-sizing: inherit;
}

html, body,h1, h2, h3, h4, h5, h6,a, p, span,em, small, strong,sub, sup,mark, del, ins, strike,abbr, dfn,blockquote, q, cite,code, pre,ol, ul, li, dl, dt, dd,div, section, article,main, aside, nav,header, hgroup, footer,img, figure, figcaption,address, time,audio, video,canvas, iframe,details, summary,fieldset, form, label, legend,table, caption,tbody, tfoot, thead,tr, th, td{
margin: 0;
padding: 0;
border: 0;
}

a,
a:visited{
color: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main{
display: block;
}

img{max-width:100%;}

/* Top-level styles */

*{transition: all 0.2s ease;}

html{
  scroll-behavior: smooth;
  font:16px/1.4em Segoe UI, sans-serif;
}
body{
  font-family: "Lexend", sans-serif;
  background:url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/10/guru-site-bg.png) top center fixed;
  background-size:cover;
	padding-top:8.5rem;
}
h1{font-size:2rem;}
h2{font-size:1.6rem;}
h3{font-size:1.2rem;}
h1,h2,h3{
  line-height:1em;
  margin-bottom:1rem;
  font-weight:normal;
}
p{margin-bottom:1rem;}
.alignleft{
    float:left;
    margin:1rem 1rem 1rem 0;
}
.aligncenter{
    margin:1rem auto 1rem auto;
}
.alignright{
    float:right;
    margin:1rem 0rem 1rem 1rem;
}
.more-link{
    text-decoration:none;
    color:var(--color2);

}
.more-link:hover{
    color:var(--color4);
}

/* Structure elements */

.wrapper{
  width:80%;
  margin:0 auto 0 auto;
}
.flexwrap{display:flex;}

/* Above Header */

.above-header{
	width:100%;
    background: #dbdbdb;
    background: linear-gradient(0deg, rgba(219, 219, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position:fixed;
	top:0;
	left:0;
	z-index:100;
}
.above-header .widget{
    flex:1;
    line-height:2em;
    font-weight:200;
    text-transform:uppercase;
}
.above-header .widget:nth-of-type(2){
    text-align:right;
    font-style:italic;
    color:#585858;
    text-transform:lowercase;
}
.above-header p{
    margin:0;
    padding:0;
}
.above-header a{
    color:var(--color2);
    text-decoration:none;
}

/* Header */
header{
	width:100%;
    background-color: #fff;
    border-bottom:2px var(--color2) solid;
	position:fixed;
	left:0;
	top:2rem;
	z-index:100;
}

.site-title{
    font-size: 2em;
    font-weight: bold;
}

.site-description {
    font-size: 1em;
    color: #666;
}
.header-right{
    flex:2;
}

header.scrolled .header-left{
	flex:1;
}
header.scrolled .header-right{
	flex:6;
}

/* Navigation */
header nav{
    width:100%;
}

.menu{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding:3rem 0 0 12rem;
    justify-content:space-between;
    text-align:right;
}

header.scrolled .menu{padding:0.5rem 0 0 20rem;}

#menu-main > .current-menu-item:not(.page-item-17){
  border-bottom: 2px var(--color2) solid;
}
.menu-item .current-menu-item{
	padding-bottom:1rem;
}

.menu .menu-item a{
    display:block;
    text-decoration:none;
    text-transform:uppercase;
    font-size:1.2rem;
    font-weight:400;
    line-height:3em;
	padding:0 1rem 0 1rem;
}

#menu-main .menu-item:hover a{
    color:var(--color4);
	background:var(--color2);
}

.menu > .menu-item:last-child a{
    background:var(--color2);
    color:var(--color4);
    border:4px var(--color2) solid;
    padding:0 1.6rem 0 1.6rem;
    box-sizing: border-box;
}
.menu > .menu-item:last-child:hover a{
    color:var(--color2);
    background:var(--color4);
}

/* Nav Level 2 */

.sub-menu{
  background:#efefef;
  width:100%;
	height:0;
  overflow:hidden;
  position: absolute;
  left:0;
  z-index:-100;
  border-top: 5px var(--color2) solid;
  border-bottom: 5px var(--color2) solid;
	text-align:left;
	opacity: 0;
	transition: opacity 250ms ease 0s;
}
#menu-main > li > .sub-menu{
	padding:1rem 10% 1rem 40%
}
.menu .menu-item:hover .sub-menu, .menu .menu-item .sub-menu:hover{
  display:flex;
  gap:1rem;
  height:auto;
  text-align:left;
  opacity:1;
	z-index:100;
} 
.menu .menu-item .sub-menu .menu-item{
  list-style-type:none;
  text-align:left;
  width:25%;
  background:none!important;
  color:var(--color1)!important;
}
.menu .menu-item .sub-menu .menu-item a{
  padding:0.5rem;
  font-size:1rem;
  text-align:left;
  color:var(--color3);
  font-weight:bold;
  background:#efefef!important;
  color:var(--color1)!important;
  border-bottom:1px var(--color2) dotted;
	margin-bottom:1rem;
}
.dropdown-toggle{
  display:none;
}

/* Nav Level 3 */

.sub-menu .sub-menu{
  flex-direction: row;
  transform: none;
  position: static;
  border: none;
  background:none;
}
.sub-menu .sub-menu .menu-item{
	width:100%!important;
}
.sub-menu .sub-menu .menu-item a{
  color:var(--color2)!important;
  border:none!important;
  font-weight:300!important;
  text-transform:capitalize;
  padding:0!important;
  line-height:1em;
}
.sub-menu .sub-menu .menu-item:hover a{
  color:var(--color3)!important;
  font-style:italic;
}
.sub-menu .sub-menu .menu-item a span{
  display:block;
  font-size:.8em;
  color:var(--color3);
  font-style:italic;
  font-weight:200;
}
.sub-menu .sub-menu .menu-item:hover a span{
  color:var(--color2);
  font-style:normal;
}

/*  Nav Mobile */

.mobile-menu-icon{
  display:none;
  width:100vw;
  background: var(--color2)!important;
  color:var(--color4);
  padding:1rem;
  position:fixed;
  bottom:0;
}
.mobile-menu-icon .line{
  width:25px;
  height:5px;
  background-color:var(--color4);
  margin:5px auto 5px auto;
}
.close{
  display:none;
  width: 32px;
  height: 32px;
  text-align:center;
  margin:2px auto 2px auto;
}
.close:hover{opacity: 1;}
.close:before, .close:after{
  position:absolute;
  text-align:center;
  content: ' ';
  height: 32px;
  width: 2px;
  background-color:var(--color3);
}
.close:before{transform: rotate(45deg);}
.close:after{transform: rotate(-45deg);}

/* Feature */

.feature .wrapper{
  width:100%;
}

.home .feature{
    background:#fff;
    font-weight:200;
    border-bottom:2px var(--color2) solid;
    color:var(--color6);
}   
.home .feature .widget{
    background:none;
    font-size:1.65rem;
    line-height:1.2em;
}
.home .feature .widget h1{
    font-size:8rem;
    font-weight:600;
    color:var(--color2);
}
.home .feature .widget h1 div{
    display:block;
    font-size:4rem;
    font-weight:200;
    font-style:italic;
    color:var(--color3);
    margin-top:-2rem;
}
.feature .more-link{
    display:block;
    width:25%;
    font-size:1.5rem;
    text-transform:uppercase;
    text-align:center;
    margin-top:3rem;
    background:var(--color2);
    color:var(--color4);
    padding:1rem;
}
.feature .feature-content{
  flex:1;
  padding:6rem 0 6rem 10%;
}
.feature-accent{
	flex:1.5;
}
.feature-accent.slide1{
  background:url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/10/fp-gurucube.png) center center no-repeat;
  background-size:cover;
}
.feature-accent.slide2{
	background:url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/10/xwebdesign-graphic.png.pagespeed.ic.03ceO_rf1f.png) center center no-repeat;
	background-size:contain
}
.feature-slide{
	padding:0!important;
}

/* Columns: Upper */

.columns-upper .flexwrap{
    justify-content:space-between;
}

.columns-upper .widget{
    flex:1;
    background:var(--color2);
    color:var(--color4);
    padding:1.5rem 1.5rem 1.5rem 3rem;
    margin:5rem .5rem 5rem .5rem;
    min-height:10rem;
    font-weight:200;
    font-size:2rem;
    line-height:1.2em;
}
.columns-upper .widget h2{
    font-size:1.7rem;
}
.columns-upper .more-link{
    text-decoration:none;
    font-size:1.5rem;
    font-weight:400;
    color:var(--color4);
}
.columns-upper .more-link:hover{
    color:var(--color3);
}

/* Above Content */

.home .above-content{
    background:rgba(21, 25, 28, 0.9);
    color:var(--color4);
    padding:10rem 0 10rem 0;
    font-size:1.4rem;
    font-weight:300;
    line-height:1.2em;
}
.home .above-content h2{
    font-size:3rem;
    font-weight:300;
    margin-bottom:2em;
	text-align:center;
}
.home .above-content .more-link{
    text-decoration:none;
    color:var(--color2);
}
.home .above-content .more-link:hover{
  color:#fff;
}

/* Content */

main{
  background:var(--color4);
  padding:2rem 0 2rem 0;
}

.home main{
    background:rgba(255, 255, 255, 0.9);
    padding:0 0 10rem 0;
}
main article{
    line-height: 1.6em;
    font-size: 1.2rem;
    font-weight: 300;
}
main article .title{
    font-size:3rem;
    padding-top:6rem;
}
main article .title span{
    font-size:2rem;
    font-weight:300;
}
main article h2.highlight{
  color:var(--color2);
  font-weight:500;
  font-size:2.2rem;
}
main article h3.highlight{
  font-size:1.6rem;
  font-weight:400;
}

.gurucube{
  float:right;
  margin:0;
  padding:0;
}
main article .more-link{
	color:var(--color2);
	border:2px var(--color2) solid;
	padding:1rem;
}
main article .more-link:hover{
	background:var(--color2);
}
main article .breakout{
  margin:2rem 0 2rem 0;
  width:100%;
  border:1px var(--color3) solid;
  padding:2rem;
  font-size:1.4rem;
}
.breakout-icon{
  padding:1rem;
  flex:1;
}
.breakout-icon img{
  width:100%;
}
.breakout-content{
  flex:9;
}
.breakout-content h2{
  color:var(--color2);
}

/* Main Page Boxes */

.button-row{
  width:100%;
  flex-wrap:wrap;
}
.button-box{
    flex-grow:1;
    width:23%;
    height:25rem;
    border:15px var(--color2) solid;
    margin:1rem;
    position:relative;
}
.button-box a > div{
  width:100%;
}
.button-box a > div:nth-of-type(2){

}
.button-box > a > p{
  display:none;
}
.button-box .fi{
  display:inline-block;
  font-size:4rem;
  margin:3rem 1rem 1rem 1rem;
}
.button-box a{
    display:block;
    width:100%;
    height:100%;
    text-decoration:none;
    color:var(--color2);
    font-size:2.5rem;
    text-transform:uppercase;
    font-weight:bold;
    line-height:1.4em;
}
.button-box p{
  padding:1rem;
}
.button-box:hover p{
  position:absolute;
  bottom:0;
  left:0;
}
.button-box:hover{
    
}
.button-box a p{
  width:100%;
}
.button-box a:hover p{
    background:rgba(237, 114, 0,0.8);
    color:var(--color4);
}

/* BELOW CONTENT AREA */

.below-content{
  -webkit-box-shadow: inset 2px -30px 28px 30px #000000; 
  box-shadow: inset 2px -200px 200px 10px #000000;
}
.home .below-content h2{
    display:block;
    width:100%;
    color:var(--color4);
    text-align:center;
    font-size:6rem;
    font-weight:200;
    padding:15rem 30rem 15rem 30rem;
    margin-bottom:0;
}
.home .below-content h2 span{
    font-weight:600;
}

/* Footer */

.site-footer {
    background: #323C48;
    background: linear-gradient(126deg, rgba(50, 60, 72, 1) 0%, rgba(6, 13, 23, 1) 100%);
    color:var(--color4);
}
.site-footer p{
    margin:0;
}
.site-footer ul li{
    list-style-type:none;
}
.site-footer ul li a{
    text-decoration:none;
    color:var(--color2);
    line-height:3em;
    text-transform:uppercase;
    font-weight:200;
}

.site-footer .flexwrap{
    justify-content:space-between;
}
.site-footer .widget{
    padding-top:5rem;
}
.site-footer .widget:nth-of-type(1) p{
    font-size:1.4rem;
    padding-bottom:2rem;
}
.site-footer .widget:nth-of-type(1) p span{
    font-size:1rem;
    font-weight:200;
    text-transform:uppercase;
}
.site-footer .widget .last{
    border-top:2px var(--color2) dotted;
    padding-top:1rem;
}

.site-footer .forminator-input,
.site-footer .forminator-textarea{
    background:none;
    border:2px var(--color2) solid;
    color:var(--color4);
    font-size:1.4rem;
}

.backtotop{
  display:block;
  width:100px;
  margin:1rem auto 1rem auto;
}

/* Credit */

.credit{
    text-align:center;
    font-weight:200;
    line-height:2em;
}

/* Global Extras */

#wpadminbar{display:none;}

.social-float{
  position:fixed;
  bottom:25%;
  right:0;
  width:5rem;
  min-height:20rem;
  background:#ffffff;
}
.social-float ul li{
  list-style-type:none;
  margin-bottom:0.25rem;
}
.social-float ul li:hover{
  background:var(--color2);
}
.social-float ul li a{
  display:block;
  padding:1rem;
}
.social-float ul li img{
  width:100%;
}

.spacer-bar{
  margin:2rem 0 1rem 0;
  padding:0.5rem;
  border:3px #282828 solid;
  border-bottom:0px;
}

.boxes .box{
  padding:1rem;
  flex:1;
}
.boxes .box img{
  width:100%!important;
  height:auto!important;
}

.clearfix{
  display:block;
  clear:both;
  width:100%;
  margin:0;
  padding:0;
}

.service-title{
  display: flex;
  align-items: flex-start;
  gap: 0.5ch;
  line-height: 1.3;
}

.arrow {
  flex-shrink: 0;
}

/* Regular Page Template */

.page main{
  padding:0;
}

.page-title-inner{
  background:url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/10/guru-page-headerbanner.png) top center no-repeat;
  background-size:cover;
}
.page-title .title{
  color:var(--color4);
  font-size:3rem!important;
  line-height:2em;
  padding-top:4em;
}

.page main article{
  padding:4rem 0 4rem 0;
}

.page-template-default:not(.home) .above-content .content{
  flex:1;
  font-size:1.4rem;
  font-weight:300;
  padding:4rem 0 0 10%;
}
.page-template-default:not(.home) .above-content .content p{
  width:75%;
  line-height:1.2em;
}
.page-template-default:not(.home) .above-content .graphic{
  flex:1;
}
.page-template-default:not(.home) .above-content .content h2{
  font-size:2.2rem;
  margin-bottom:2rem;
  color:var(--color5);
  border:none;
}
.page-template-default:not(.home) .above-content .content h3{
  color:var(--color2);
  font-style:italic;
  font-size:2.6rem;
  font-weight:600;
}
.page-template-default:not(.home) .above-content .content h3::before {
      content: '\2713'; /* Unicode for check mark */
      padding-right:1rem;
}
.page-template-default:not(.home) .above-content .widget:nth-of-type(1){
  background:#fff;
}
.page-template-default:not(.home) .above-content .widget:nth-of-type(2){
  background:rgba(56, 57, 61, .9);
  padding:8rem 0 8rem 0;
  color:var(--color4);
  text-align:center;
}

.page-template-default:not(.home) .above-content h2,
.page-template-default:not(.home) .above-content h3,
.page-template-default:not(.home) .above-content h4{
  margin:0;
}
.page-template-default:not(.home) .above-content h2{
  display:inline-block;
  margin:0 auto 1rem auto;
  font-size:3.5rem;
  font-weight:400;
  color:var(--color2);
  padding:0 0 1rem 0;
  border-bottom:5px var(--color2) dotted;
}
.page-template-default:not(.home) .above-content h2 span{
  color:var(--color4);
}
.page-template-default:not(.home) .above-content h3{
  color:var(--color4);
  font-size:2rem;
  margin-bottom:1rem;
}
.page-template-default:not(.home) .above-content h3 span{
  font-size:3rem;
}
.page-template-default:not(.home) .above-content h4{
  font-size:1.4rem;
  color:var(--color2);
}

/* Landing Page Template */

.page-template-page-landingpage{}
.page-template-page-landingpage main{
  padding:0;
}
.page-template-page-landingpage main > .wrapper{
  width:100%;
}
.page-template-page-landingpage main article{
  padding:0;
}
.landing-page-feature{
  color:#fff;
  padding-bottom:2rem;
}
.landing-page-feature .wrapper{
  width:40%;
  margin:0 0 0 10%;
}
.landing-page-feature h1{
  font-size:4rem!important;
  font-weight:500;
}
.page-template-page-landingpage .more-link{
  display:block;
  width:25%;
  padding:1rem;
  background:var(--color2);
  color:var(--color4);
  margin:4rem 0 4rem 0;
  text-align:center;
  text-transform:uppercase;
}
.page-template-page-landingpage .more-link:hover{
  background:var(--color4);
  color:var(--color2);
}

.page-template-page-landingpage .above-content{
  padding:6rem 0 6rem 0;
  background:var(--color2);
  color:var(--color4);
}
.page-template-page-landingpage .above-content .widget{
  font-size:1.8rem;
  line-height:1.4em;
  font-weight:200;
}
.testimonial > div:nth-of-type(1){
  flex:1;
}
.testimonial > div:nth-of-type(2){
  flex:18;
}
.testimonial > div:nth-of-type(3){
  flex:1;
}

.page-template-page-landingpage .content{
  padding:6rem 0 6rem 0;
}
.page-template-page-landingpage .content h2{
  font-size:3rem;
  font-weight:500;
  line-height:1.2em;
}
.page-template-page-landingpage .content h2 span{
  font-weight:300;
}
.page-template-page-landingpage .content .more-link{
  width:16rem;
}

.below-content{
  color:var(--color4);
  background:rgba(56, 57, 61, .9)
}
.below-content .widget{
  padding:6rem 0 6rem 0;
  font-size:1.4rem;
  line-height:1.4em;
  font-weight:200;
}
.below-content h2{
  color:var(--color2);
  font-size:3rem;
}
.below-content .flexwrap > div:nth-of-type(1){
  flex:2;
  padding-right:16rem;
}
.page-template-page-landingpage .below-content .flexwrap > div:nth-of-type(2){
  flex:1;
}

/* Page-Specific */

/* Business IT Page */

.page-id-269{}

.page-id-269 .landing-page-feature{
  background:url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/10/LeadBannerImage_BusinessITServices.jpg) center center fixed no-repeat;
  background-size:cover;
  box-shadow: inset 2px -600px 400px 10px rgba(0,0,0,0.75);
}

/* Web Services Page */

.page-id-62{}
.page-id-62 .landing-page-feature{
  background:url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/10/webdesign-graphic.png) right center fixed no-repeat;
  background-size:50%;
  color:var(--color3);
}
.page-id-62 .below-content .widget:nth-of-type(1){
  background:#01101f;
}

.page-id-62 .below-content .widget:nth-of-type(1) .flexwrap > div{
  flex:1;
}
.page-id-62 .below-content .widget:nth-of-type(1) .flexwrap > div:nth-of-type(1){
  padding-right:4rem;
}

/* Contact Page */

.page-id-305{

}
.page-id-305 article{
  flex:3;
  padding-right:2rem!important;
}
.page-id-305 aside{
  flex:1;
  padding:1rem;
}

.forminator-ui#forminator-module-338.forminator-design--default .forminator-button-submit{
  background-color:var(--color2)!important;
}

/* Hosting Page Price Table */

.servicetable{
  width:100%;
  margin:6rem auto 6rem auto;
  justify-content:space-between;
}
.servicetable-box{
  border:1px var(--color3) solid;
  background:#efefef;
}
.servicetable-box.highlight{
  background:#242424;
  color:#efefef;
  border:1px var(--color2) solid;
}
.servicetable-box:nth-of-type(2){
  margin:-3rem 3rem 0 3rem;
}
.servicetable-box > div{
  padding:1rem;
}
h2.servicetable-highlight{
  text-transform:uppercase;
  font-size:2rem!important;
  font-style:normal!important;
  text-align:center!important;
  padding:0.5rem 0 0.5rem 0!important;
}
.servicetable-box h2{
  font-size:2.4rem;
  font-weight:500;
  font-style:italic;
  padding:0;
  margin:0;
}
.servicetable-box h2.highlight{
  color:var(--color5);
  line-height:2em;
  border-bottom:3px var(--color2) solid;
  padding:0 1rem 0 1rem;
}
.servicetable-box.highlight h2.highlight{
  background:var(--color2);
  color:var(--color4);
}
.servicetable-box h3{
  color:var(--color2);
  line-height:2em;
  font-style:italic;
  font-weight:400;
}
.servicetable-box ul li{
  list-style-type:none;
  line-height:2em;
}
.servicetable-box ul li.highlight{
  color:var(--color2);
}
.servicetable-box .fine-print{
  margin:1rem 0 1rem 0; 
  font-size:.9rem;
  font-style:italic;
}

.terms{
  font-size:.9rem;
}

/* Category Template */

.container{
  background:#fff;
}
.container .site-content{
  width:80%;
  margin:0 auto 0 auto;
  padding:1rem;
}

.category main{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}
.category main article{
  width:32%;
  border:1px var(--color2) solid;
  padding:1rem;
  margin-bottom:1rem;
}
main article header{
  border:0;
}
.category main article img{
  width:100%;
  height:auto;
  border:0;
}
main article .entry-meta,
main article .entry-footer{
  font-size:.9rem;
  font-style:italic;
  margin:1em 0 1em 0;
}

/* Media Queries / Responsive */

@media (min-width:2500px){

}
@media (max-width:1920px){
  html{font-size:14px;}
  .wrapper{width:80%;}
  nav{
    padding-top:1.5rem;
  }
  nav .menu{
    padding:0;
  }
  .menu .menu-item a{
    font-size:1.2rem;
  }
  .logo{
    width:80%;
  }
.home .feature .widget h1{
    font-size:6rem;
}
.home .feature .widget h1 div{
    padding-top:1rem;
}
.sub-menu{
  position:absolute;
  top:3rem;
}
.feature-accent{flex:1;}
.columns-upper .widget h2, .columns-upper .widget{
  font-size:1.6rem;
}
main article .title{
  padding-top:4rem;
}
.button-box {
  width: 22%;
  height: 20rem;
  border: 12px var(--color2) solid;
}
.button-box a{
  font-size:2rem;
}
.home .below-content h2 {
  padding: 10rem 20rem 10rem 20rem;
}
}

@media (max-width:1700px){
  html{font-size:12px;}
}

@media (max-width:1600px){
  html{font-size:13px;}
}

@media (max-width:1500px){
  html{font-size:12px;}
  .header-left{flex:1;}
  .header-right{flex:1.5;}
  footer img{max-width:300px;float:right;margin-bottom:1rem;}
}

@media (max-width:1400px){
  .button-box{height:18rem;border:8px var(--color2) solid;}
  .button-box a{font-size:1.6rem;}
}


/* PHONE LAYOUT */

@media (max-width:1200px){

/* HIDE THESE ELEMENTS ON MOBILE */

.above-header,
.feature-accent
{display:none;}

html{font-size:16px;}
body{overflow-x:hidden;padding-bottom:4rem;
  background: url(https://dev.computerguru.me/acg2025/wp-content/uploads/2025/08/acg-phone-bg.png) top center fixed repeat;
  background-size: cover;
  position:relative;
	padding-top:0!important;
}
.wrapper{width:100%;}

/* HEADER / LOGO */

	header{
		position:static;
	}
header .flexwrap{
  flex-direction:column;
}
header .logo{
  width:100%;
  margin:2rem 0 2rem 0;
}
header h1{margin:0;}

/* FEATURE AREA */

.feature .flexwrap{
  flex-direction:column;
}
.feature .feature-content{
  padding:1rem;
}
.home .feature .widget h1{
  font-size:3rem;
  text-align:center;
}
.home .feature .widget h1 div{
  font-size:2rem;
  line-height:3em;
}
.feature-content{
  text-align:center;
}
.feature .more-link{
  width:80%;
  margin:2rem auto 1rem auto;
}
.landing-page-feature .wrapper{
  margin:0;
  padding:1rem;
  width:100%;
}
.page-template-page-landingpage .more-link{
  width:75%;
  margin:1rem auto 1rem auto;
}
.page-template-page-landingpage .above-content{
  padding:1rem;
}
.breakout-icon{
  display:none;
}

/* UPPER COLUMNS */

.columns-upper .flexwrap{
  flex-direction:column;
}

.columns-upper .widget {
  flex: 1;
  background: var(--color2);
  color: var(--color4);
  padding: 1rem;
  margin:1rem 0 0 0;
  min-height: 10rem;
  font-weight: 200;
  font-size: 2rem;
  line-height: 1.2em;
}

/* ABOVE CONTENT AREA */

.home .above-content{
  padding:1rem;
}

.above-content .widget{
  padding:1rem;
  text-align:center;
}

.home .above-content h2{
  font-size:2rem;
}

/* MAIN CONTENT AREA */

.page main article{
  padding:1rem;
}

main article .title{
  padding:0;
}

.page-title .title {
  font-size: 2rem !important;
  line-height: 2em;
  padding-top:0;
  text-align:center;
}

/* BELOW CONTENT AREA */

.below-content{}
.below-content .flexwrap{
  flex-direction:column;
}
.below-content .flexwrap > div:nth-of-type(1){
  padding:1rem!important;
}
.home .below-content h2{
  padding:1rem;
  font-size:3rem;
}

/* FOOTER */

footer .flexwrap{
  flex-direction:column;
}
footer .widget{
  padding:1rem 1rem 4rem 1rem!important;
}

footer img{
  float:none;
  display:block;
  width:90%;
  margin:1rem auto 1rem auto;
}

/* EXTRAS */

.alignleft,
.aligncenter,
.alignright,
.home .gurucube{
  float:none;
  display:block;
  width:100%;
  margin:0;
  padding:1rem;
}

.button-row.flexwrap{
  flex-direction:column;
}
.button-box{width:90%;}

/* NAVIGATION */

nav{height:auto;}
nav .menu{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  background:var(--color2);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transform:translateY(-100%);
  opacity:0;
  padding:1ch;
  z-index:9999;
}
nav .menu li{width:100%;margin:0.5ch 0 0.5ch 0;}
nav .menu li a,.scrolled nav .menu li a{font-size:1rem;color:var(--color4);text-align:center!important;font-size:1.4rem;line-height:1.6em;}
nav .menu li:hover a{background:var(--color2);color:var(--color4);}
nav .menu li:hover .sub-menu, nav .menu li:active .sub-menu{width:100%!important;}
nav .menu li:hover a, nav .menu li:active a, nav .menu li.current-menu-item a{color:var(--color3);}
.mobile-menu-icon{display:block;z-index:100;border-top:2px var(--color3) solid;}
.nav-active{transform:translateY(0%)!important;opacity:1!important;position:fixed!important;z-index:100000;}
nav ul li a{}
nav ul li:hover .sub-menu, nav ul li:active .sub-menu{
  position:static;
  display:block;
}
nav ul li:hover .sub-menu li, nav ul li:active .sub-menu li{
  background:;
  line-height:1.6rem;
  width:100%;
  margin:0;
}
.menu-active .line{display:none;}
.menu-active .close{display:block;}
.menu .sub-menu{
  flex-direction: column;
  transform: none;
}
.menu .menu-item .sub-menu .menu-item a{
  background:none;
}
.menu .menu-item:hover a{
  color:var(--color4);
}

.social-float{
  position:fixed;
  bottom:4rem;
  left:0;
  width:100vw;
  min-height:0;
  border-top:1px var(--color3) solid;
}
.social-float ul{
  display:flex;
  justify-content:space-around;
}

}