/*FEATURED IMAGE*/
#home {
   /* background-image: url('../images/NYC-skyline.jpg');*/
    /*background-image: url('/img/470.jpg');*/
    background-image: url('/img/ny.jpeg');
   /* background-image: url('/img/470CENTERS.jpeg');*/
    background-size: cover;
    background-position: center;
    /*background: linear-gradient(50deg, #FFD86F, #FC6262);*/
    /*background: #FC6262;*/
}

/*label for forms*/
.etiquette {
    color: #083194;
    font-weight: 400;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #bdbdbd;
    border-radius: 0;
    outline: none;
    padding: 1px;
    line-height: 2.1rem;
    height: 2.1rem;
    width: 100%;
    font-size: 1rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

 #toplogo {
                top:50px;
         display: block;
            }

#bottomlogo {
    display:none !important;
}
/*MAKE THE NAVBAR BACKGROUND SHOW BY DEFAULT*/
.peach-gradient-nav {
    background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262) !important;
    background: linear-gradient(40deg, #FFD86F, #FC6262) !important;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
       }

/*REMOVE TEXT-SHADOW FROM NAV BAR DROPDOWN*/
.navbar .dropdown-menu a {
    text-shadow: none !important;
}


/* CENTER THE LOADING WHEEL */
.loadingwheel {
    position: absolute;
    z-index: 9;
   top: 50%;
   left: 50%;
   width: 200px;
   height: 200px;
   margin-top: -100px; /* Half the height */
   margin-left: -100px; /* Half the width */
}


/* PUT THE NAVBAR IN BLACK WHEN SCROLLING DOWN
.navbar { 
    background-color: #23242a;
} */

/* PUT THE NAVBAR IN PEACH WHEN SCROLLING DOWN */
.navbar { 
    /*background: -webkit-linear-gradient(50deg, #45cafc, #303f9f);
    background: linear-gradient(40deg, #45cafc, #303f9f);*/
    background: #d6d4d4;
}

.mapflag {
    width: 40px;
    border-color: #F2F2F0 grey grey #F2F2F0;
    border-style: solid;
    border-width: 2px;
    display: inline-block !important;
}

/* PAGE FOOTER IN PEACH */
.page-footer{
    background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262) !important;
    background: linear-gradient(40deg, #FFD86F, #FC6262) !important;
}

/* REMOVE THE BOX SHADOW OF NAVBAR ON PORTRAIT 
.navbar:not(.top-nav-collapse) {
    -webkit-box-shadow: none;
    box-shadow: none;
}*/

/*NAVIGATION IN WHITE*/
.navbar-dark .navbar-brand, .navbar.navbar-dark .breadcrumb .nav-item .nav-link, .navbar.navbar-dark .navbar-nav .nav-item{
    color: orange !important;
    font-weight: bold !important;
    text-shadow: -1px 1px 0px black !important;
} 

.nav-link {
    color: floralwhite !important;
    font-weight: bold !important;
    text-shadow: -1px 1px 0px black !important;
} 

/*3 MENU BARS ON MOBILE IN WHITE*/
.navbar.navbar-dark .navbar-toggler {
    color: white !important;
}

.navbar-toggler>.fa {
        text-shadow: -1px 1px black;
}

/*PUT THE TABS IN THE SERVICES PAGE WITH YELLOW COLOR*/
.md-pills .nav-item .nav-link.active {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: gold;
    text-shadow: -1px 1px 0px black;
    background-color: transparent;
}

.md-pills .nav-item .nav-link {
    background-color: transparent !important;
    color: #000;
}

/* PAGE FOOTER IN BLACK
.page-footer, .navbar {
    background-color: #23242a !important;
} */


.navbar:not(.top-nav-collapse) {
    -webkit-box-shadow: none;
    box-shadow: none;
}


.gold-text {
    color:gold;
}

.text-shadowB {
    text-shadow: -3px 3px 3px black;
}

.text-shadowM {
    text-shadow: -2px 2px 1px black;
}

.text-shadowS {
    text-shadow: -1px 1px 0px black;
}

.text-shadow0 {
    text-shadow: none !important;
}

.h-auto {
    height:auto !important;
}

.hr-white {
    border-top: 1px solid white;
}

/*RIPPLE BUTTON EFFECT*/
/*.ripplebutton {
    height: 50px;
    width: fit-content; 
    border-radius: .3rem;
    background-color: #FED631;
    color: white;
    text-shadow: -2px 2px black;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    position: relative;
    cursor: pointer;
    margin: 20px auto;
    padding: 0px 20px;
}

.ripplebutton:hover{
  border:1px solid black;
  box-shadow:-2px 2px 5px black;
}

.ripplebutton:before,
.ripplebutton:after {
  content:'';
  display:block;
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  border-radius:.3rem;
  border:2px solid #FED631;
}

.ripplebutton:before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}
.ripplebutton:after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.ripplebutton:hover:before,
.ripplebutton:hover:after {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes ripple{
  0% {-webkit-transform:scale(1); }
  50% {-webkit-transform:scale(1.25); opacity:1;}
  100% {-webkit-transform:scale(1.5); opacity:0;}
}

@keyframes ripple{
  0% {transform:scale(1); }
  50% {transform:scale(1.25); opacity:1;}
  100% {transform:scale(1.5); opacity:0;}
}*/

/*TABS BACKGROUND IN SERVICES*/
.construction-lp .md-pills .nav-item .nav-link {
    background-color: transparent !important;
}


span.anchor {
    margin-top: -90px; /* height of nav, in this case 54px */
    display: block;
    height: 90px; /* height of nav, in this case 54px */
    visibility: hidden;
    position: relative;
}

/*PUSH THE LABEL OFF THE CHECKBOX TO ALIGN WITH FORMS*/
input[type='checkbox'] {
    margin-right: 2rem;
}

/*ALL LABELS SAME FONT AND WEIGHT*/
label {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

/*MAKE THE TEXT AREA 100% IN CONTACT US FORM*/
table[class*='cbFormTextArea']{
    width: 100% !important;
}

/* REMOVE THE LEFT PADDING FOR FIXED-SN BODY*/
.fixed-sn footer, .fixed-sn main {
    padding-left: 0 !important;
}

/* BIG ICON IN DASHBOARD */
.cascading-admin-card {
  margin-top: 20px; }
  .cascading-admin-card .admin-up {
    margin-left: 4%;
    margin-right: 4%;
    margin-top: -20px; }
    .cascading-admin-card .admin-up .fa {
      padding: 1.7rem;
      font-size: 2rem;
      color: #fff;
      text-align: left;
      margin-right: 1rem;
      border-radius: 3px; }
    .cascading-admin-card .admin-up .data {
      float: right;
      margin-top: 2rem;
      text-align: right; }
      .cascading-admin-card .admin-up .data p {
        color: #999999;
        font-size: 12px; }

.classic-admin-card .card-body {
  color: #fff;
  margin-bottom: 0;
  padding: 0.9rem; }
  .classic-admin-card .card-body p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 0; }
  .classic-admin-card .card-body h4 {
    margin-top: 10px; }
  .classic-admin-card .card-body .float-right .fa {
    font-size: 3rem;
    opacity: 0.5; }

.classic-admin-card .progress {
  margin: 0;
  opacity: 0.7; }

.page-item.active .page-link {
    background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262);
    background: linear-gradient(40deg, #FFD86F, #FC6262);
    z-index: 2;
    color: #fff;
    border-color: #FFD86F;
}

/*LIVE CHAT BUTTON SUBTITLE*/
.livechat {
    font-size: 0.2rem;
    position: absolute;
    top: 1rem;
    /* left: 0; */
    margin-left: 1.3rem;
    /* z-index: 999; */
    color: black;
}

.p-absolute {
    position: absolute;
}

.progress .progress-bar {
    background: linear-gradient(40deg, #FFD86F, #FC6262) !important;
    text-shadow: -1px 1px 0px black;
}

input[type="checkbox"] {
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    padding: 10px;
}

.border_black {
        border: 1px solid black !important;
}

.mt-lg-minus-5 {
    margin-top: -5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: initial;
    flex-basis: initial !important;
}

.centernavbar {
    justify-content: center !important;
}

.section-preview {
    border: 1px solid white;
    padding: 15px;
}

.fixed-action-btn {
    bottom: auto;
}

.btn {
    text-shadow: -1px 1px 0px black;
    
}

#newlog:before {
content:"";
display:block;
height:90px; /* fixed header height*/
margin:-90px 0 0; /* negative fixed header height */
}

.overflow-1 {
    overflow-x: visible;
    overflow-y: visible;
}   

.fa.peach-gradient, .text-peach-gradient {
    background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262);
background: linear-gradient(40deg, #FFD86F, #FC6262);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.md-form label{
    color:#083194 ;
    
}
/*       --------------------------------------------------------------     BIG  PORTRAIT   IPAD    -------------------------------------------------------------- */
            
@media (min-width:641px)
and (orientation : portrait) { 
            
    .display-3 {
        font-size: 4.5rem !important;
        color: red;
    }
    
}
            
/*       --------------------------------------------------------------     BIG  LANDSCAPE   IPAD    -------------------------------------------------------------- */
            
            @media only screen 
and (min-device-width : 850px) 
and (orientation : landscape) { 
            
    .display-3 {
        font-size: 4.5rem !important;
    }
    
}

/*       ----------------------------------------------------------------      PORTRAIT       ---------------------------------------------------------------- */
        @media screen and (orientation: portrait) {
        /*@media (max-width: 740px) {*/
            
            /*#home {
    background-image: url('/img/470CENTERSp.jpeg');
            }*/
            
            .buttonhomepage {
                    font-size: .8rem;
            }
            
            .mapflag {
    width: 30px;
            }
            
            .peach-gradient-nav-mobile {
    background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262) !important;
    background: linear-gradient(40deg, #FFD86F, #FC6262) !important;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
       }
            
           #toplogo {
                display:none;
            }
            
            #bottomlogo {
                    bottom:70px;
                    display: block !important;
}
            .modal .modal-full-height { 
min-height: 100%;
height: 100% !important;
} 
 
            .nav-link {
                font-size: 1.25rem !important;
                margin: .9rem;
            }
            
            .full-height,
            .full-height body,
            .full-height header,
            .full-height header .view {
                height: 100%; 
            } 
            
            .fixed-sn main {
                padding-top: 4.5rem;
            }
            
            .navbar {
                /*background:-webkit-linear-gradient(50deg, #FFD86F, #FC6262);*/
                    background: #d6d4d4 !important;
            }
            
             .display-3 {
                font-size: 2.5rem !important;
            }
            
              .jarallax {
                min-height: 100% !important;
        }
            
            .text-xs-justify {
                text-align: justify !important;
            }
            
            /*LIVE CHAT BUTTON SUBTITLE*/
            .livechat {
                margin-left: 1.4rem;
                font-size: .5rem;
                margin-top: .2rem;
            }
            
            /*CALENDAR TIME SLOT FOR MOBILE*/
            select[id*='InsertRecordTime'] {
                background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262) !important;
                font-size: 2rem;
                font-weight: 300;
            }
            
            .mt-minus-2 {
                margin-top: -2rem;
            }
            
            /* navbar on each side*/
            .navbar-collapse {
                -ms-flex-preferred-size: 100%;
                flex-basis: 100% !important;
            }
            
            .centernavbar {
                justify-content: space-between !important;
            }
                
            
        }

/*       ----------------------------------------------------------------      LANDSCAPE       ---------------------------------------------------------------- */

        /*@media only screen and (max-width: 850px) and (min-width: 740px) and (orientation: landscape)*/
        @media screen and (orientation: landscape){
           
           
            .display-3 {
                font-size: 2.5rem;
            }
            
            .jarallax {
                min-height: 100% !important;
            }
            
            .livechat {
                font-size: .6rem;
                margin-top: .2rem;
            }
            
            .call4action {
                    line-height: 1 !important;
            }
            
            .mt-md-minus-4 {
                margin-top: -4rem;
            }
            
             .buttonhomepage {
                    font-size: .8rem;
            }
      
            #centerlandscape {
                top:60px;
            }
            
        }

/*       ----------------------------------------------------------------      LANDSCAPE       ---------------------------------------------------------------- */

        /*@media only screen and (max-width: 850px) and (min-width: 740px) and (orientation: landscape)*/
        @media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) 
  and (orientation: landscape) {
            /*CALENDAR TIME SLOT FOR MOBILE*/
            select[id*='InsertRecordTime'] {
                background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262) !important;
                font-size: 2rem;
                font-weight: 300;
            }
      
       .buttonhomepage {
                    font-size: .8rem;
            }
      
             #home {
    background-image: url('/img/470CENTERSl.jpeg');
            }
      
      /* navbar on each side*/
            .navbar-collapse {
                -ms-flex-preferred-size: 100%;
                flex-basis: 100% !important;
            }
            
            .centernavbar {
                justify-content: space-between !important;
            }
            
       .buttonhomepage {
                    font-size: .8rem;
            }
      
             #home {
    background-image: url('/img/470CENTERSl.jpeg') !important;
            }
            
            
        }


/*       --------------------------------------------------------------      SMALL PORTRAIT       ---------------------------------------------------------------- */
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : portrait)  
{ /* smartphones, iPhone, portrait 480x320 phones */ 
    
    .full-height,
            .full-height body,
            .full-height header,
            .full-height header .view {
                min-height: 100%; 
            }
    
    .display-3 {
        font-size: 2.5rem !important;
    }
        
      .jarallax {
                min-height: 100% !important;
        }
    
    .text-xs-justify {
        text-align: justify !important;
    }
}


/*       --------------------------------------------------------------     SMALL  LANDSCAPE       ---------------------------------------------------------------- */
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) { 
    .display-3 {
        font-size: 2.5rem !important;
    }
        
    .jarallax {
                min-height: 100% !important;
        } 
}
            
