/*
Theme Name: Tenant Vetted Theme
Theme URI: https://tenantvetted.com
Author: Anwar Baksh
Author URI: https://digitalspawn.com
Description: Custom theme developed for Tenant Vetted. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, and, the CSS is reset for cross-browser-compatability and no intrusive visual CSS styles have been added.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2023
Requires at least: 5.2
Tested up to: 6.1
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: tenantvetted_theme

BlankSlate WordPress Theme © 2011-2023 TidyThemes
BlankSlate is distributed under the terms of the GNU GPL
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}


/* New Styles */
:root {

	--black:#000000;
	--gray:#939597;
    --primary:#420880;
    --secondary:#860071;
    --dim-gray:#606060;
}

/* Fonts*/
/* Setup font links to font with name 'Metropolis' - format otf, all types */
@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

body {
    font-family: 'Metropolis', sans-serif;
    font-size:16px;
    color:var(--black);
    line-height:1.5;
}

.flex {
    display:flex;
}

h1 {
    font-size:56px;
    line-height:66px;
}

h2 {
    font-size:40px;
    line-height:50px;
}

h3 {
    font-size:32px;
    line-height:42px;
}

header#header {
    padding: 0px 20px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1efeb;
    height: 64px;
}

#site-title {
    height: 32px;
}
#site-title img {
    height:32px;
    width:auto;
}

nav#menu ul {
    display:flex;
    gap:40px;
    align-items: center;
}
nav#menu ul li a {
    text-decoration:none;
    color:var(--primary);
    font-weight:700;
    font-size:14px;
}

#menu-item-22 {
    border: 2px solid #1e4636;
    padding: 0px 5px;
}

body.home .header h1, a.post-edit-link {
    display:none;
}

body.home #header h1{
    line-height:0px;
}

button {
    background:var(--secondary);
    color:white;
    padding:10px 20px;
    border:none;
    border-radius:5px;
    margin-bottom:10px;
}

.prime-banner{
    margin-bottom:40px;
}

.prime-banner img {
    width:100%;
    height:auto;
}

main#content {
    padding:20px;
    max-width:1350px;
    margin:auto;
}

body.home main#content {
    max-width:1920px;
    padding:0px;
}

.main-content, .custom-content {
    padding:20px;
    max-width:1350px;
    margin:0 auto;
    margin-bottom:100px;
}

main#content h1{
    text-align:center;
    margin-bottom:60px;
}

.entry-content p {
    margin-bottom:30px;
}

.entry-content form.wpcf7-form {
    max-width:500px;
    margin:auto;
}

.entry-content form.wpcf7-form p{
    border:1px solid #ccc;
    padding:10px 20px;
    border-radius:3px;
}

.entry-content form.wpcf7-form label {
    font-size:12px;
    font-weight:600;
    margin-bottom:10px;
    color:#6B707B;
}

form.wpcf7-form > p:nth-child(7), #post-18 form.wpcf7-form > p:nth-child(6) {
    border:none;
    padding:0px ;
}

.entry-content form.wpcf7-form input, .entry-content form.wpcf7-form textarea{
    border:none;
    color:#999;
    width:100%;
}

.entry-content form.wpcf7-form input[type="submit"], a.wp-block-button__link {
    background:var(--primary);
    color:white;
    padding:20px 20px;
    border:none;
    border-radius:5px;
    margin-top:20px;
	cursor:pointer;
}

.entry-content form.wpcf7-form input[type="submit"]:hover, a.wp-block-button__link:hover {
    background:#000;
    color:white;
}


/* Temp */

body.home .front-page .custom-content p {
    max-width:700px;
    font-size:30px;
    line-height:40px;
    margin:auto;
}

body.home h1 {
    font-size:36px;
    line-height:48px;
    font-weight:700;
}

.big-footer {
    background:var(--primary);
    color:white;
    padding:40px 60px;
}

.big-footer ul li a {
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

.footer-top {
    justify-content: space-between;
}
.footer-top h2 {
    font-size:16px;
    margin-bottom:20px;
    font-weight:700;
    line-height:20px;
}

.footer-top ul li {
    margin-bottom:10px;
}

.foot-about {
  max-width:240px;
}

.foot-about img {
    height:41px;
    width:auto;
}

.foot-about p{
    font-size:14px;
    font-weight:400;
}

footer.flex {
    justify-content: space-between;
    align-items: center;
    border-top:1px solid var(--gray);
    padding:20px 0px;
    margin-top:40px;
}

footer.flex ul {
    display:flex;
    gap:20px;
}

.home-action-btns {
	max-width:700px;
	margin:auto;
}


.wpcf7-select {
  width: 100%;
  background: none;
  border: none;
  margin-top: 20px;
}



/* Mobile Styles */
@media (max-width: 768px) {
    header#header {
        flex-direction:column;
        gap:20px;
    }
    nav#menu ul {
        flex-direction:column;
        gap:10px;
    }
    .prime-banner img {
        width:100%;
        height:auto;
    }
    main#content {
        padding:20px;
    }
    .main-content, .custom-content {
        padding:20px;
    }

    .big-footer {
        padding:20px;
    }

    .big-footer .flex, footer.flex {
        flex-direction:column;
        gap:10px;
        flex-wrap:wrap;
        justify-content: center;
        text-align:center;
    }

    .big-footer .flex {
        gap:30px;
    
    }

    .big-footer .flex div {
        flex-basis:100%;
        width:100%;
        max-width:100%;
    }
    footer.flex ul {
        flex-direction:column;
        gap:10px;
    }
}