/*

Theme Name: Blank Client Theme
Theme URI: http://www.azcomputerguru.com
Author: Arizona Computer Guru
Author URI: http://azcomputerguru.com;

Description: A custom blank theme for use with Guru web projects.
Version: 1.0

*/

/* COLORS */

:root {
  --color1:#7c7c7c;
  --color2:#fff;
  --color3:#efefef;
  --color4:#;
  --color5:#;
}

/* Reset */

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;
}

*{
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;
}

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:18px/1.4em Segoe UI, sans-serif;
}
body{
  font-family: 'Roboto', sans-serif;
  background:url(http://clients.computerguru.me/royalweedcontrol/dev/wp-content/uploads/2024/08/main-bg.png) top center fixed no-repeat;
  background-color:#3a3a3a;
  background-size:cover;
  padding-top:1rem;
}
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;}


/* Structure elements */

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

[class*='box-']{}

.box-10{width:10%;}
.box-20, .box-5{width:20%;}
.box-25, .box-4{width:25%;}
.box-30{width:30%;}
.box-40{width:40%;}
.box-50, .box-2{width:50%;}
.box-60{width:60%;}
.box-66{width:66.666666%;}.box-70{width:70%;}
.box-75{width:75%;}
.box-80{width:80%;}
.box-90{width:90%;}
.box-1{width:100%;}
.box-3{width:33.3333333%;}
.box-6{width:16.666666%;}
.box-7{width:14.285714%;}
.box-8{width:12.5%;}
.box-9{width:11.111111%;}


/* Outer Wrapper */

/* Above Header */

.above-header{
  width:100%;
}
.above-header .widget{
  flex:1;
  height:2rem;
}
.above-header p{
  line-height:2rem;
  font-weight:900;

  text-transform: uppercase;
  font-size:.8rem;
  color:var(--color4);
}
.above-header .widget:last-of-type p{
  text-align:right;
}

/* Header */

header{
  background:url(http://clients.computerguru.me/royalweedcontrol/dev/wp-content/uploads/2024/08/feat-bg.png) top center no-repeat;
}
header .flexwrap{
  flex-direction:row;
  justify-content:space-between;
}
header .flexwrap > div{
  flex:1;
}
header .flexwrap .logo-wrap{
  flex:4;
}
header .logo{
  display:block;
  padding-top:1rem;
}
header .logo span{
  display:block;
  font-size:2rem;
  color:var(--color2);
  font-style:italic;
}
header .logo a img{
  width:100%;
}
header h2{}
header .flexwrap .header-right{
	padding-left:2rem;
  flex:1;
  color:#fff;
}
.header-right .phone{
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size:2.6rem;
  line-height:1em;
  text-align:center;
  padding-top:8rem;
}
.header-right .phone span{
  font-size:1.8rem;
}

/* Header Right */

.header-right .phone-number{
    text-align:right;
    font-size:2rem;
    font-weight:900;
    line-height:6em;
    color:var(--color4);
    padding:1rem;
    margin-bottom:0;
}
.header-right .phone-number a{text-decoration:none;}

.phone-number .fa-solid, .fas{
  font-size:32px;
  margin-right:0.5rem;
}

/* Navigation */

nav{
  background: rgb(255,147,0);
  background: linear-gradient(180deg, rgba(255,147,0,1) 35%, rgba(255,207,0,1) 100%); 
  color:#fff;
}
nav ul li{
  width:50%;
}
nav .menu{
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  margin-right:1rem;
}
nav .menu > li{
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  list-style-type:none;
  position:relative;
}
nav .menu > li > a{
  display:block;
  text-decoration:none;
  text-align:center;
  padding:0 1rem 0 1rem;
  line-height:4rem;
  font-size:1.4rem;
  color:var(--color4);
  text-transform:uppercase;
}
nav .menu > li:hover > a{
  background:#ffd900;
  color:#330505;
}

/* Nav Second Level */

nav .menu .sub-menu{
  display:none;
}
nav .menu > li:hover > .sub-menu{
  display:flex;
  position:absolute;
  left:0;
  top:3rem;
  width:40rem;
  z-index:100;
  background:var(--color1);
}
nav .menu .sub-menu > li{
  flex:1;
  list-style-type:none;
}
nav .menu > li > .sub-menu > li > a{
  color:var(--color3);
  font-size:1rem;
  font-weight:bold;
  text-transform:uppercase;
  text-align:left;
  text-decoration:none;
  line-height:2rem;
  padding:0.5rem;
}

/* Tertiary Level */

nav .menu > li:hover > .sub-menu{
  display:flex;
}

nav .menu > li:hover > .sub-menu > li > .sub-menu{
  display:block;
}

nav .menu > li > .sub-menu > li > ul > li{
  width:100%;
}
nav .menu > li > .sub-menu > li > ul > li > a{
  display:block;
  color:var(--color4);
  line-height:2rem;
  padding:0.5rem;
  text-decoration:none;
  border-bottom:1px var(--color2) solid;
}
nav .menu > li > .sub-menu > li > ul > li:hover > a{
  background:var(--color2);
}

/* Nav Mobile */

.mobile-menu-icon{
  display:none;
  width:100%;
  background:;
  padding:1rem;
  position:fixed;
  bottom:0;
}
.mobile-menu-icon .line{
  width:25px;
  height:5px;
  background-color:;
  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:;
}
.close:before{transform: rotate(45deg);}
.close:after{transform: rotate(-45deg);}

/* Feature area */

.home .feature{
  position:relative;
  margin-bottom:2rem;
}

.feature .wrapper{
  width:60%;
}
.feature h1{
  text-align:center;
  font-size:3.5rem;
  line-height:2em;
  text-transform:uppercase;
  font-weight:bold;
  font-family:Georgia, 'Times New Roman', Times, serif;
  background: #FF8215;
  background: linear-gradient(to right, #FF8215 0%, #FFE120 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
  filter: drop-shadow(0px 0px 2px #000000);
  margin-top:2rem;
}

.feature p{
  text-align:center;
  font-size:1.4rem;
  line-height:1.6em;
}

.feature .more-link{
  display:block;
  width:35%;
  background:#d41515;
  color:#fff;
  font-size:2.2rem;
  line-height:1.4em;
  border-radius:25px;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin:8rem auto 2rem auto;
  border:2px #000 solid;
}
.feature .more-link:hover{

}

/* Columns: Upper */

.columns-upper{
	text-align:center;
  font-family: 'Roboto', sans-serif;
  font-weight:300;
  clear:both;
}
.columns-upper .wrapper{
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap:1rem;
}
.columns-upper .widget{
  position:relative;
  flex:1;
  text-align:left;
  border:5px #352222 solid;
  border-radius:25px;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
  overflow:hidden;
  height:20rem;
  background: rgb(179,150,105);
  background: linear-gradient(121deg, rgba(179,150,105,1) 35%, rgba(207,191,164,1) 100%); 
}
.columns-upper .widget p{
  font-size:1.4rem;
  color:#fff;
  text-align:center;
  padding:2rem;
  line-height:1.4em;
}
.columns-upper .widget a{text-decoration:none;}
.columns-upper .widget h2{
  font-size:2rem;
  color:#352222;
  text-transform:uppercase;
  text-align:center;
  line-height:1em;
  background: rgb(255,147,0);
  background: linear-gradient(0deg, rgba(255,147,0,1) 35%, rgba(255,209,70,1) 100%); 
  padding:1rem;
  margin:0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  -webkit-box-shadow: -1px 4px 13px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 4px 13px 0px rgba(0,0,0,0.75);
  box-shadow: -1px 4px 13px 0px rgba(0,0,0,0.75);
}
.columns-upper .more-link{
  display:block;
  width:60%;
  background:#d41515;
  color:#fff;
  font-size:1.6rem;
  line-height:1.4em;
  border-radius:25px;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
  font-family:Georgia, 'Times New Roman', Times, serif;
  border:2px #000 solid;
}
.columns-upper .more-link:hover{
  background:var(--color1);
  color:var(--color2);
}

/* Global content area */

.gridwrap{
}

main{
  color:#fff;
  padding-bottom:5rem;
}

main .title{
  margin-top:5rem;
}

article{
  font-size:1.2rem;
  line-height:2em;
  padding:1rem 1rem 5rem 0;
  flex:2;
}

article ul{margin:2rem;}

article .more-link{
  display:block;
}
article .more-link:hover{
}

aside .widget{
  position:relative;
  flex:1;
  text-align:left;
  border:5px #352222 solid;
  border-radius:25px;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
  overflow:hidden;
  background: rgb(179,150,105);
  background: linear-gradient(121deg, rgba(179,150,105,1) 35%, rgba(207,191,164,1) 100%); 
}
aside .widget a{text-decoration:none;}
aside .widget h2{
  font-size:2rem;
  color:#352222;
  text-transform:uppercase;
  text-align:center;
  line-height:1em;
  background: rgb(255,147,0);
  background: linear-gradient(0deg, rgba(255,147,0,1) 35%, rgba(255,209,70,1) 100%); 
  padding:1rem;
  margin:0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  -webkit-box-shadow: -1px 4px 13px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 4px 13px 0px rgba(0,0,0,0.75);
  box-shadow: -1px 4px 13px 0px rgba(0,0,0,0.75);
}

aside form{
  padding:2rem!important;
}

aside form button{
  display:block!important;
  width:60%!important;
  background:#d41515!important;
  color:#fff!important;
  font-size:1.6rem!important;
  line-height:1.4em!important;
  border-radius:25px!important;
  -moz-border-radius:25px!important;
  -webkit-border-radius:25px!important;
  font-family:Georgia, 'Times New Roman', Times, serif!important;
  border:2px #000 solid!important;
}

/* Front page template */

main > .flexwrap{
  flex-direction:row;
  justify-content:space-between;
}
main > .flexwrap > div{flex:3;}
main > .flexwrap > aside{flex:1;}

> section > h2, article .title, footer h2{
  font-size:3rem;
  line-height:1.5em;
  padding-top:1.5rem;
  font-weight:normal;
  text-transform:uppercase;
  text-align:center;
}
.front-page{}
.front-page article{
  margin:0 auto 0 auto;
}

/* Page template */

h1.title{
  font-family:Georgia, 'Times New Roman', Times, serif;
}
.page h2{
  color:;
  font-weight:600;
  font-size:1.6rem;
  line-height:2em;
}
.page iframe{
  width:100%;
  height:50vh;
}

/* Category Template */

.category{display:flex;}

.category .post{
  flex:1;
  border:1px var(--color1) solid;
  padding:1rem;
  margin:0.5rem;
}

/* Post template */

.single-post article{

}
.single-post .title{
  color:;
  font-size:3em;
  text-align:center;
  text-transform:uppercase;
}
.post-featured-img{
  display:block;
  margin:2rem auto 2rem auto;
  max-width:50%;
}

/* Below Content */

.below-content{
  background: rgb(255,147,0);
  background: linear-gradient(0deg, rgba(255,147,0,1) 35%, rgba(255,209,70,1) 100%); 
}
.below-content .widget{
	position:relative;
}
.below-content .section-heading{
	position:absolute;
	top:0;
	font-size:2rem;
	width:100%;
	line-height:75px;
	text-align:center;
	text-transform:uppercase;
}
.below-content .photo{
	float:left;
	border:5px #efefef solid;
	border-radius:10px;
	-moz-transform: rotate(348deg);
	-webkit-transform: rotate(348deg);
	-o-transform: rotate(348deg);
	-ms-transform: rotate(348deg);
	transform: rotate(348deg);
}
.below-content h2.heading{
	text-align:center;
	color:#efefef;
	font-weight:300;
}

/* Footer */

footer{
  width:100%;
  background:var(--color1);
  color:var(--color4);
  -webkit-animation: mainbg 49s ease infinite;
  -moz-animation: mainbg 49s ease infinite;
  animation: mainbg 49s ease infinite;
}
footer .widget{flex:1;}
footer .widget h2{
  font-size:1.4rem;
  font-weight:300;
  line-height:3em;
  text-transform:uppercase;
  text-align:center;
  margin:0!important;
}
footer .widget p{
  font-weight:300;
  line-height:1.6em;
  font-style:italic;
}
footer ul li{
	list-style-type:none;
	text-align:center;
}
footer ul li a{
  font-style:italic;
  line-height:2em;
	

}
footer form{
  margin:0 auto 0 auto!important;
  padding:0!important;
  width:80%!important;
}
footer input,
footer textarea{
  font-size:1.4rem!important;
  padding:1em!important;
}
footer input:hover,
footer input:active,
footer textarea:hover,
footer textarea:active,{
  opacity:1;
}
footer .forminator-label{display:none!important;}
footer button{
  display:block!important;
  margin:2rem auto 2rem auto!important;
  background:var(--color3)!important;
  color:var(--color4)!important;
  font-size:1.8rem!important;
  text-transform:uppercase;
  padding:1em!important;
  font-weight:900!important;
  border:5px var(--color3) solid!important;
}
footer button:hover{
  background:var(--color2)!important;
  border:5px var(--color4) dashed!important;
}
footer p{
  line-height:1.4rem;
}
footer ul{margin:1rem 0 1rem 0;}
footer ul li{list-style-position:inside;}

/* Copyright section */

.credit{
  text-align:center;
  color:#fff;
}
.credit p{
  font-size:.9rem;
  line-height:3em;
  margin:0px;
}

/* Global extras */

.clearfix{
  clear:both!important;
  float:none!important;
  width:0px!important;
  height:0px!important;
  margin:0px!important;
  padding:0px!important;
}

.more-link{
  display:block;
  text-transform:uppercase;
  text-decoration:none;
  text-align:center;
  padding:1.4rem;
  margin:1rem auto 1rem auto;
  max-width:100%;
}
.more-link:hover{
  background:;
}

.alignleft{
	float:left;
	margin:1rem 1rem 1rem 0rem;
}
.aligncenter{
	display:block;
	margin:1rem auto 1rem auto;
}
.alignright{
	float:right;
	margin:1rem 0rem 1rem 1rem;
}


/* Media Queries / Responsive */

@media (max-width:1920px){
  body{font-size:16px;}
  .wrapper{
    width:80%!important;
  }
  header .flexwrap .logo-wrap{flex:3;}
  header .logo{padding-top:0.5rem;}
  .header-right .phone-number{line-height:4em;}
  .columns-upper .widget h2{font-size:1.6rem;}
  h1.title{font-size:2.5rem;}
  .home .feature{min-height:56vh;}
  .feature h1{margin-top:.5em;}
  .feature .widget:nth-of-type(2) h2{font-size:1.4rem;}
  .columns-upper .widget{height:22rem;}
  .columns-upper .more-link{
    width:75%;
  }
}
@media (max-width:1800px){
  body{font-size:14px!important;}
  header .logo{padding-top:1rem;}
  .columns-upper .widget h2{font-size:1.4rem;}
  .feature h1{font-size:4rem;margin-top:3em;}
  .feature .widget:nth-of-type(1){flex:2;}
}
@media (max-width:1600px){
  body{font-size:12px!important;}
  .columns-upper .widget h2{font-size:1.2rem;}
  .feature .widget:nth-of-type(2) h2{font-size:1rem;}
}

@media (max-width:1200px){

  html{font-size:16px;}
  body{overflow-x:hidden;padding-bottom:4rem;}
  .wrapper{width:100%!important;z-index:1;}
  .above-header{display:none;}
  header, main, footer{padding:0.5rem 1rem 0.5rem 1rem;}
  header{
    background-size:cover;
  }

  header .logo img{
    display:block;
    margin:0 auto 0 auto;
  }
  header .flexwrap .header-right{
    padding:0!important;
  }
  .header-right .phone{
    font-size:1.8rem;
    padding-top:2rem;
  }
  .feature h1{
    font-size:1.6rem!important;
  }
  .flexwrap{display:block;}
  nav{height:auto;}
  nav .menu{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    transform:translateY(-100%);
    opacity:0;
    padding:1ch;
  }
  nav .menu li{width:100%;margin:0.5ch 0 0.5ch 0;}
  nav .menu li a{font-size:1rem;color:var(--color4);}
  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;}
  .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;}
  .home .feature{
    min-height:40vh;
  }
  .feature .flexwrap{
    padding:2rem;
  }
  .feature .flexwrap .widget{
    margin:0;
    width:100%;
    flex:1;
  }
  .feature .flexwrap .widget:nth-of-type(1){
    display:none;
  }
  .feature .widget:nth-of-type(2) h2{font-size:2rem;}
  .feature .forminator-field{
    display:block!important;
  }
  .feature .forminator-label{
    text-align:center!important;
    line-height:2rem!important;
  }
  .feature h1{
    font-size:3rem;
    margin-top:1em;
  }
  .feature h2{
    
  }
  .feature .more-link{
    width:80%;
  }
  .columns-upper .wrapper{
    display:block;
  }
  .columns-upper .widget{
    padding:1rem;
    height:auto!important;
  }
  h1.title{font-size:1.4rem;}
  .page h2{font-size:1.6rem;line-height:1.2em;}
  footer .widget h2{
    font-size:2.2rem;
    line-height:1.4em;
    margin-bottom:1em!important;
  }
  footer form{
    width:90%!important;
  }
  .credit p{line-height:1.4em;}

  nav, .mobile-menu-icon{display:none;}

  .gridwrap{
    display:block;
  }
  aside .widget{
    height:auto;
  }
  .forminator-ui#forminator-module-61.forminator-design--default .forminator-button-submit{
    width:100%!important;
    margin:2rem auto 2rem auto!important;
  }
  .below-content{
    display:none;
  }
}
