@import url('https://fonts.cdnfonts.com/css/montserrat');

/* Color Defines */
:root {
    --orange:#f15a24;
}

/* Body */
body{
    color: white;
    background-color: #333;
}
 
.heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
}

.text-orange {
    color: var(--orange);
}

.text-black {
    color: black;
}

.context-max-width{
    max-width: 2000px;
}

.maxw-600{
    max-width: 600px;
}

/* enlarge fonts for large screens (xl+) */
@media only screen and (min-width: 1200px) {
    /* For desktop: */
    body {
        font-size: 1.25rem;
    }
    .heading {
        font-size: 2.5rem;
    }
}



/* Navbar */
.navbar, .navbar img {
    transition: all 0.5s;
}

.navbar-unscrolled {
    background-color: black;
    padding-left: 1em; 
}
.navbar-unscrolled img {
    max-height: 2.4em;
}

.navbar-scrolled {
    background-color: black;
    padding-left: 1em;
}
.navbar-scrolled img {
    max-height: 2.4em;
}


/* Buttons */
.btn {
    border-radius: 0;
}

.btn-orange-solid {
    color: #eee;
    background-color: var(--orange);
    border-color: var(--orange);
    border-width: 2px;
}
.btn-orange-solid:hover {
    color: #fff;
    border-color: #fff;
}


.btn-orange-outline {
    color: #ee9473;
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--orange);
    border-width: 2px;
}
.btn-orange-outline:hover {
    color: #fff;
    border-color: #ed8661;
}

.btn-grey-outline {
    color: #ccc;
    background-color: rgba(0, 0, 0, 0);
    border-color: #ccc;
    border-width: 2px;
}
.btn-grey-outline:hover {
    color: #fff;
    border-color: #fff;
}



/* BG Color Classes */
.bg-222 {
    background-color: #222;
}

.bg-333 {
    background-color: #333;
}


.bg-464646 {
    background-color: #464646;
}

.bg-888 {
    background-color: #888;
}


/* Icons */
.icon-size{
    max-width: 2em;
    aspect-ratio: 1/1;
}

.social-icon{
    width: 40px;
    height: 40px;
    margin: 0;
}

#footer-icons-table {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    margin-bottom: 16px;
}

#footer-icons-table td {
    padding: 3px;
}

.feature-card-img {
    aspect-ratio: 1/1;
    max-width: 140px;
}


#testimonials{
    height: 80vh;
}

#quote{
    background-color: #464646;
}
 #app{
    background-color: #323232;
 }

 #text{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: inline;
    overflow-wrap: break-word;
    
 }

 #text_R{
    position: relative;
    top: 50%;
    
    display: inline;
    overflow-wrap: break-word;
    
 }


 /* Footer Menu */
.footer-menu {
    background-color: #222;
    /* border-top: 1px solid #555; */
}

.footer-menu a {
    color: #ccc;
}

.footer-menu a:hover {
    color: white;
}


/* Container */
.pad-for-navbar-above{
    padding-top: 90px;
    min-height: calc(100vh - 348px);  /* footer height (348 for phones) */
}
@media only screen and (min-width: 768px) {
    /* For tablet & small desktop: */
    .pad-for-navbar-above{
        min-height: calc(100vh - 224px);  /* footer height (254 with smaller font) */
    }
}
@media only screen and (min-width: 1200px) {
    /* For desktop: */
    .pad-for-navbar-above{
        min-height: calc(100vh - 254px);  /* footer height (254 with larger font) */
    }
}


/* General Form Validation Styling */
.has-error { color: #ee0000; }
.has-error input{
  border: 2px solid #dd0000;
}
.has-error textarea{
  border: 2px solid #dd0000;
}
.has-error select{
  border: 2px solid #dd0000;
}

.has-success input{
  border: 2px solid #00dd00;
}
.has-success textarea{
  border: 2px solid #00dd00;
}
.has-success select{
  border: 2px solid #00dd00;
}
.grecaptcha-badge{
    visibility: hidden; 
}
.recaptcha-text-dark{
    font-size: xx-small;
    margin-top: 6px;
    margin-bottom: 0;
    color: #444;
}
.recaptcha-text-dark a{
    text-decoration: none;
}
.recaptcha-text-light{
    font-size: xx-small;
    margin-top: 6px;
    margin-bottom: 0;
    color: #bbb;
}
.recaptcha-text-light a{
    text-decoration: none;
}