html{
    --bgcolor:#ECE6DF;
    --darkbg: #DFD3C8;
    --formonly: #dbcec3;
    --color: #1E1E1E;
    --colorhover: #A6453C;
    --aimred: #731717;
    overflow-x: hidden;
}

body {
    background-color: var(--bgcolor);
    color: var(--color);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

OL { counter-reset: item }
/* LI { display: block } */
UL {margin: 0;}

p{
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
}

#navbar {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 24px 1.5rem;
    transition: 0.4s;
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 6;
  }

#navbar a, #navbar a:visited{
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

#navbar a:hover {
    color: var(--colorhover);
}

#navbar a.active {
    color: var(--aimred);
}

#navbar-right {
    float: right;
    display: flex;
    flex-wrap: wrap;
}

#navbar-right > .navbar-right-li {
    flex: 1 50%;
}

#navbar-right li {
    list-style-type: none;
    line-height: 0.82rem;
}

#navbar-right li a, a:visited{
    color: var(--color);
}

.logo-menu{
    width: 2.5rem;
}


.hero-img {
    background-image: url('../img/hero_img.jpg');
    height: 100vh; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center center; 
    border-bottom: 1px solid var(--color);
    z-index: 4;
    position: relative;
    max-width: 100%;
    animation: grow 10s infinite alternate;
}

  @keyframes grow {
    0% {
      background-size: 100% 100%;
    }
    100% {
      background-size: 120% 120%;
    }
  }

.hero-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo-hero-img{
    width: 14rem;
}

.vl {
    border-left: 1px solid var(--color);
    height: 6rem;
    margin-left: 5%;
}

.container-padding{
    padding: 0 8rem;
    background-color: var(--bgcolor);
    width: 100vw;
    position: relative;
}

#mission{
    background-color: var(--bgcolor);
    position: relative;
}

.mission{
    background-color: var(--bgcolor);
    border-bottom: 1px solid var(--color);  
    padding: 0 8rem;
    position: relative;
}

.mission-title h2{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.5rem;
}

.mission-title h3{
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1rem;

}

.centeralign{
    text-align: center;
}

.rightalign{
    text-align: right;
}

.mission-txt{
    margin: 2rem 0 0 5%;
    border-left: 1px solid var(--color);
    padding: 2rem 0 4rem 5%;
}

.about{
    background-color: var(--darkbg);
    border-bottom: 1px solid var(--color);  
    padding: 0 8rem;
    position: relative;
}

.about-tabs{
    display: flex;
}

.about-tab {
    width: 35%;
  }
  
.about-tab button {
    display: block;
    background-color: inherit;
    padding: 1rem 0;
    width: 100%;
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--aimred);
}
  
.about-tab button:hover {
    color: var(--colorhover);
}
  
.about-tab button.active {
    color: var(--color);
    font-weight: 600;
}
  
#more, #morej {
    display: none;
    transition: all 0.2s;
}

#aimgmore, #aimgmorej {
    display: none;
    transition: all 0.2s;
}

.about-img{
    border-radius: 1rem;
    width: 23vw;
    margin-top: 24px;
}

.admissions{
    border-top: 1px solid var(--color);
    width: 3rem;
    padding-top: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-team-title{
    text-transform: capitalize;
    font-weight: 550;
    padding-left: 19px;
    font-size: 15px;
}

.about-arrow, .about-arrowj, .about-arrowb, .about-arrowbl{
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    display: inline-block;
    transition: all 0.2s;

}


#read-more, #read-morej, #read-moreb, #read-morebl{
    border: 1px solid var(--aimred);
    background-color: var(--darkbg);
    color: var(--aimred);
    width: 70%;
    margin: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    margin: 2rem 0 8rem 0;
}

/* Style the tab content */
.about-tabcontent {
    padding-left: 6.2rem;
    width: 70%;
    border-left: none;
}

.about-tab-first{
    border-bottom: 1px solid var(--color) !important;
}


.services-content{
    display: flex;
}

.services-tab h2{
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 0 8rem;
}


.services-tab {
    border-right: 1px solid var(--color);
    background-color: var(--bgcolor);
    width: 55%;
    padding-top: 6rem;
  }
  
  
  .services-tab button {
    font-family: 'Poppins', sans-serif;
    display: block;
    background-color: inherit;
    color: var(--aimred);
    padding: 2rem 8rem 2rem 8rem;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 300;
    border-top: 1px solid var(--color);
  }

  .services-number{
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--colorhover);
  }
  
  .services-tab button:hover {
    background-color: var(--darkbg);
  }
  
  .services-tab button.active {
    background-color: var(--darkbg);
    color: var(--color);
  }

  .last-service{
    padding-bottom: 6rem !important;
  }

  .services-tabcontent {
    padding: 6rem 8rem 6rem 6rem;
    width: 45%;
    border-left: none;
    height: 100%;
  }
  

  .services-tabcontent p{
    text-align: left;
  }

  .services-tabcontent li{
    list-style: none;
    border-bottom: 1px solid var(--color);
    padding: 0.5rem 0;
    width: 90%;
}

  .strong-subtitle{
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4rem;
  }

  .buttons-more{
    border: 1px solid var(--aimred);
    background-color: transparent;
    color: var(--aimred);
    width: 70%;
    margin: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    margin-top: 4rem;
}

.buttons-more:hover{
    background-color: var(--darkbg);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(166, 69, 60); /* Fallback color */
    background-color: rgba(166, 69, 60,0.2); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
  }
  
  /* Modal Content */
  .modal-content {
    margin-top: 5% !important;
    background-color: var(--colorhover);
    width: 80%;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.4);
    margin: auto;
    overflow-y: scroll;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
  }
  
.tribalclose, .cannabisclose, .indianclose, .federalindianclose, .generalclose {
    border: 1px solid var(--bgcolor);
    background-color: transparent;
    color: var(--bgcolor);
    padding: 1rem 4rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    margin-top: 4rem;
}

.privacyclosebutton, .termsclosebutton {
    border: 1px solid var(--aimred);
    background-color: transparent;
    color: var(--aimred);
    padding: 1rem 4rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    margin-top: 4rem;
}

.modal-body {
    padding: 6rem 8rem;
    color: var(--bgcolor);
}

  .modal-body h4{
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.modal-body li{
    list-style: inherit;
    border-bottom: 1px solid var(--bgcolor);
    width: 90%;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

  
  /* Add Animation */
  @-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
  }
  
  @keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
  }
  
  @-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
  }
  
  @keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
  }


.contact{
    position: relative;
    background-color: var(--darkbg);
    border-bottom: 1px solid var(--color);  
    padding: 6rem 8rem;
    border-top: 1px solid var(--color) !important; 

}

.contact-form-wrapper{
    margin-top: 4rem;
}

.contact-input{
    display: inline;
}

input, textarea{
    font-family: 'Poppins', sans-serif;
    border: 0px transparent;
    border-bottom: 1px solid var(--color);
    border-radius: 0px;
    background-color: transparent;
    width: 49%;
    font-size: 1rem;
    font-weight: 300;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--darkbg);
    width: 1.2rem;
    color: var(--bgcolor);
    height: 1.2em;
    border: 0.15em solid var(--color);
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
  }
  
input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--bgcolor);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}
  
input[type="checkbox"]:checked::before {
transform: scale(1);
color: var(--bgcolor);
}

input[type="checkbox"]:checked {
background-color: var(--aimred);
border: 0.15em solid var(--aimred);
}

.contact-checkbox{
    margin-top: 2.5rem;
    width: 100%;
    display: inline-flex;
}
.label-checkbox{
    display: inherit;
    width: 100%;

}

.quform-required{
    color: var(--aimred);
}

input:focus, textarea:focus {
    color: var(--aimred);
    font-weight: 500;
    border: 1px solid transparent;    
    border-bottom: 2px solid var(--aimred);
    background-color: var(--formonly);
    outline: none;
  }

  .contact-break{
    height: 3rem;
  }

textarea{
 vertical-align: bottom;
}

.btnform {
    border: 1px solid var(--aimred);
    background-color: transparent;
    color: var(--aimred);
    padding: 1rem 4rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    margin-top: 4rem;
}

.btnform:hover {
    border: 1px solid var(--colorhover);
    background-color: var(--bgcolor);
    color: var(--colorhover);
}

input.error {
    border: none;
    outline: 1px solid red;
    background-color: var(--bgcolor);
}

textarea.error {
    border: none;
    outline: 1px solid red;
    background-color: var(--bgcolor);
}

/*Success message*/
.quform-success-message, .quform-outer-no-js .quform-success-message {
	background: #cef4a9 url('../quform/images/success.png') no-repeat 14px center;
	padding: 8px 20px 8px 45px;
	line-height: 18px;
	margin: 10px 0;
	border: 1px solid #80bb48;
	font-weight: normal;
	color: #000;
}


#formModalbtn{
    cursor: pointer;
}

.modalform {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 8; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
      -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
  }
  
  /* Modal Content */
  .modalform-content {
    background-color: var(--bgcolor);
    margin: auto;
    padding: 4rem;
    width: 80%;
  }
  
  /* The Close Button */
  .close, .privacyclose, .termsclose {
    color: var(--aimred);
    float: right;
    font-size: 40px;
    margin: 0 1rem 6rem 1rem;
  }
  
  .close:hover,
  .close:focus, 
  .privacyclose:hover,
  .privacyclose:focus,
  .termsclose:hover,
  .termsclose:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
footer{
    background-color: var(--aimred);
    padding: 4rem 8rem 4rem 8rem;
    z-index: 4;
    position: relative;
}

footer p{
    color: var(--bgcolor);
    margin: 0 0;
}

.footer-container{
    display: flex;
    justify-content: space-between;
}

.footer-info li{
    list-style: none;
    color: var(--bgcolor);
}

.footer-info li:before, .navbar-right-li li:before, .services-tabcontent li:before{
    content: none;
}

.footer-info a{
    list-style: none;
    color: var(--bgcolor);
    text-decoration: none;
}

.footer-info-contact{
    display: flex;
    column-gap: 24px;
    color: var(--bgcolor);
}

.footer-info-socials-n{
    text-transform: uppercase;
    font-weight: 600;
}

.footer-info-north{
    width: 80px;
}

.footer-legals{
    margin: 4rem -8rem 0rem -8rem;
    padding: 1rem;
    border-top: 1px solid var(--bgcolor);
    width: 100vw;
    text-align: center;
}

.footer-legals li{
    display: inline;
    color: var(--bgcolor);
    text-transform: uppercase;
    font-weight: 300;
    font-size: .75rem;
}

.legals, #privacyModalbtn2{
    cursor: pointer;
}

#privacyModalbtn2{
    color: var(--aimred);
}

.privacy-policy ul{
    list-style-position: outside;
}

/* .privacy-policy li{
    list-style-type: circle;
} */

.terms-list LI{ display: block;}
.terms-list LI:before { content: counters(item, ".") ". "; counter-increment: item; margin-left: -24px;font-weight: 600; }

.terms-list ol > li::marker { content: counters(list-item, '.') '. '; }

.mobile-only{display: none;}

@media screen and (max-width: 1235px) {
    .container-padding, .mission, .about, .services-tab h2{padding: 0 6rem;}
    .services-tab button{padding: 2rem 6rem}
    .strong-subtitle{margin-top:2.5rem}
    .services-tabcontent{padding:6rem 6rem 6rem 6rem}
    .services-tabcontent li{width: 90%;}
    .modal-body{padding: 8rem 6rem 6rem 6rem;}
    .about-tab{width: 45%;}
    #read-more, #read-morej{width: 100%;margin:2rem 0 6rem 0}
    .contact{padding: 6rem 6rem;}
    footer{padding: 4rem 6rem 4rem 6rem}
}

@media screen and (max-width: 1024px){
    .about-tabcontent{padding-left:2rem}
    .about-img{width: 28vw;}
    .hero-img{
        width: 100vw; 
        background-position: center center; 
        background-attachment:scroll;
        -webkit-background-size: cover; 
        -moz-background-size: cover; 
        -o-background-size: cover; 
        background-size: cover; 
    }
}

@media screen and (max-width: 820px) {
    .container-padding, .mission, .about, .services-tab h2{padding: 0 4rem;}
    .services-tab{ padding-top:4rem; width: 35%;}
    .services-tab button{padding: 1rem 4rem}
    .strong-subtitle{margin-top:1.5rem}
    .services-tabcontent{padding:4rem 4rem 4rem 4rem}
    .services-tabcontent li{width: 100%;}
    .modal-body{padding: 8rem 4rem 4rem 4rem;}
    #read-more, #read-morej{width: 100%;margin:2rem 0 4rem 0}
    .modal{width: 55%;}
    .contact{padding: 4rem 4rem;}
    .close, .privacyclose, .termsclose{margin: 0 1rem 12rem 1rem;}
    footer{padding: 2rem 4rem 2rem 4rem}
    .hero-img{
        background-size: 100%;
        -moz-background-size: 100%;
        -webkit-background-size: 100%; 
        -o-background-size: 100%; 
        background-position: center center; 
        background-attachment:scroll;
        -webkit-background-size: cover; 
        -moz-background-size: cover; 
        -o-background-size: cover; 
        background-size: cover; 
    }
}

@media screen and (max-width: 768px) {
    .container-padding, .mission, .about, .services-tab h2{padding: 0 2rem;}
    .services-tabcontent p{ margin-top: 0rem !important;}
    .services-tab{padding-top:0rem; width: 35%;}
    .services-tab button{padding: 0.5rem 2rem}
    .strong-subtitle{margin-top:1.5rem}
    .services-tabcontent{padding:2rem 2rem 2rem 2rem;width: auto;}
    .services-tabcontent li{width: 100%;}
    .last-service{padding-bottom: 0.5rem !important;border-bottom: 1px solid var(--color) !important;}
    .modal-body{padding: 6rem 2rem 2rem 2rem;}
    #read-more, #read-morej{width: 100%;margin:1rem 0 2rem 0}
    .modal{width: 55%;}
    .contact{padding: 2rem 2rem;}
    .close, .privacyclose, .termsclose{margin: 0 0.5rem 12rem 0.5rem;}
    footer{padding: 1rem 2rem 1rem 2rem}
    .services-tab h2{font-size: 2rem;}
    .services-tab button{font-size: 1rem;}
    .buttons-more{width: 100%;}
}

@media screen and (max-width: 580px) {
html, body{
    overflow-x: hidden;
}
.services-tab button {
    padding: 1rem 2rem;
    border-top: 1px solid var(--color);
    height: 82px;
}
#navbar {
    padding: 20px 10px !important;
}
#navbar a {
    float: none;
    display: block;
    text-align: left;
}
#navbar-right {
    float: none;
    margin-left: 2rem
}

.hero-img{
    width: 100vw;
    overflow-x: hidden;
    background-image: url('../img/hero_img_mobile.png');
}

.logo-menu{
    width: 1.5rem;
}

.container-padding{
    padding: 0 2rem;
}

.vl{
    height: 4rem;
}
.mission{
    padding: 0 2rem;
    z-index: 5;
}

.mission-title h2{
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.mission-title h3{
    line-height: 0;
}

.mission-txt{
    padding: 0.5rem 0 2rem 5%;
}

.about-tabs{
    display: block;
}

.about-tab{
    width: 100%;
}

.about-tabcontent{
    padding-left: 0;
    width: 100%;
    margin-top: 2.5rem;
}

.desktop-only{
    display: none !important;
    visibility: hidden;
}

.about-img{
    height: 0px;
    margin-top: 0px;
}

.mobile-only{
    display: block;
}

.about-img-mobile{
    width: 50vw;
    border-radius: 1rem;
}

.services-content{
    display: block;
}

.services-tab{
    width: 100%;
    border-bottom: 1px solid var(--color);
}

.services-tab h2{
    margin-top: 4rem;
}

#read-more, #read-morej{
    margin: 1rem 0 4rem 0;
}
.modal{
    width: 100vw;
    z-index: 6;
    position: fixed;
    padding: 0 0 0 0;
}

.modal-content{
    height: 100%;
    width: 100%;
    margin-top: 0% !important;
}
.modal-body{
    padding: 2rem 2rem 2rem 2rem;
}

input, textarea{
    width: 100%;
}

.contact-form-wrapper{
    margin-top: 2rem;
}

.services-tabcontent{
    padding: 4rem 2rem 4rem 2rem;
}

.contact{
    padding: 4rem 2rem 4rem 2rem;
}

.contact-break{
    display: none;
}

.contact-input{
    margin: 1rem 0;
    display: block;
}

input[type="checkbox"]{
    display: inline-grid;
}

footer{
    padding-top:4rem;
}

.footer-container{
    display: block;
}

.footer-info{
    margin-bottom: 2rem;
}

.last-service{
    padding-bottom: 1rem !important;
    border-bottom: 0px solid var(--color) !important;
}

.modalform{
    padding-top: 8px;
    width: 100vw;
}

.modalform-content{
    width: 84%;
    padding: 1rem;
}

.privacyclose, .termsclose{
    margin: 0 0.5rem 0.5rem 0.5rem;
}
ul, ol{
    padding-inline-start: 24px;
}

}

