.dropdownMenu {
    background-color: transparent;
    color: var(--bs-btn-border-color);
    transition: border-color .2s, color .2s;
}
.dropdownMenu:hover {
    border-color: black;
    background-color: transparent;
    color: black;
}

.dropdownMenuWhite {
    background-color: transparent;
    border-color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
    transition: border-color .2s, color .2s;
}
.dropdownMenuWhite:hover {
    border-color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    background-color: transparent;
}

@media (max-width: 991px) {
    .navbar-scroll-wrapper {
		max-height: 100vh;
		overflow-y: scroll;
    }
}

@media (max-width: 1463px) and (max-height: 829px){
	.navbar-scroll-wrapper2 {
		max-height: 85vh;
		overflow-y: scroll;
    }
}

.alignTextButton{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

/* background container fix the size for images. It doesnt include overflow which cna be enabled with .img-bg-overflow/overflowP

   Don't set --image-bg-w-var which is driven by the other variable. 
   Div with this class should:
   1)  set the --image-bg*-w varibles as % if the default 100% is not desirable.   
   2)  "height" can be set in two ways, depending the w/h ratio of the image
    2.1) height should normally be set with  --iamge-bg-*-aspect-ratio variable
    2.2) height be set to 100% to fill the image-bg area
*/
.img-bg-base {
    --image-bg-default-w: 100%;
    --image-bg-sm-w: var(--image-bg-default-w);
    --image-bg-md-w: var(--image-bg-sm-w);
    --image-bg-lg-w: var(--image-bg-md-w);
    --image-bg-xl-w: var(--image-bg-lg-w);
    --image-bg-xxl-w: var(--image-bg-xl-w);

    --image-bg-w-var: var(--image-bg-default-w); /* don't set this variable in tags */

    --image-bg-default-aspect: 1/1;
    --image-bg-sm-aspect: var(--image-bg-default-aspect);
    --image-bg-md-aspect: var(--image-bg-sm-aspect);
    --image-bg-lg-aspect: var(--image-bg-md-aspect);
    --image-bg-xl-aspect: var(--image-bg-lg-aspect);
    --image-bg-xxl-aspect: var(--image-bg-xl-aspect);

    --image-bg-aspect-var: var(--image-bg-default-aspect); /* don't set this variable in tags */

    height: auto;
    width:  var(--image-bg-w-var); 
    max-width: 100%;
    aspect-ratio: var(--image-bg-aspect-var);
    position: relative;
    overflow: hidden;
    container-type:size;
}

/* this class should be used together with .img-bg-base. 
   it allows image to overflow on x */ 
.img-bg-overflow {
    overflow-x:visible;
    overflow-y:clip;
    position:static;
}
/* this class should be used together with .img-bg-base. 
   This is the 2nd way to overflow on x by using .img-placement and top/left/right */
.img-bg-overflowP {
    overflow-x:visible;
    overflow-y:clip;
    position:relative;
}

/* Used with img-bg-base, optionally img-bg-placement. You can set image width and height in style to overriding defaults here*/
.img-placement {
    width: auto;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: left top;
}


@media (min-width: 576px) {
    .img-bg-base {
	--image-bg-w-var: var(--image-bg-sm-w);
	--image-bg-aspect-var: var(--image-bg-sm-aspect);
    }
}

@media (min-width: 768px) {
    .img-bg-base {
	--image-bg-w-var: var(--image-bg-md-w);
	--image-bg-aspect-var: var(--image-bg-md-aspect);
    }
}

@media (min-width: 992px) {
    .img-bg-base {
	--image-bg-w-var: var(--image-bg-lg-w);
	--image-bg-aspect-var: var(--image-bg-lg-aspect);
    }
}

@media (min-width: 1200px) {
    .i-container {
	margin-left: 15vw;
	margin-right: 15vw;
    }
    .i-container-wide {
        margin-left: 8vw;
        margin-right: 8vw;
    }
    .navbar .inetsoft-nav-container {
	margin-left: 15vw;
	margin-right: 15vw;
    }

    .page-title-spacer {
	max-width: 80%;
    }

    .img-bg-base {
	--image-bg-w-var: var(--image-bg-xl-w);
	--image-bg-aspect-var: var(--image-bg-xl-aspect);
    }
}

.bg-black-1 {
    background:#050505;
}

.bg-black-2 {
    background:#101010;
}

.bg-gray-1 {
    background: #E4E4E4;
}

.page-text-small {
    font-size: calc(0.3rem + 0.3vw);
    font-weight: 300;
    line-height: calc(0.5em + 0.5ex);
}

.page-title-0 {
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 300;
    line-height: calc(1em + 1ex);
}

.page-title-1 {
    font-size: calc(1rem + 1vw);
    font-weight: 550;
    line-height: calc(1em + 0.5ex);
}

.page-title-2 {
    font-size: calc(1.5rem + 1.6vw);
    font-weight: 550;
    line-height: calc(1em + 0.2ex);
}
.page-title-3 {
    font-size: calc(2rem + 3vw);
    font-weight: 600;
    line-height: calc(1em + 0.5ex);
}


/*Alternate image fade start */
:root {
    --fade-out-opacity: 0;
    --bleed-left-x: visible; 
}

@media (max-width: 999px){:root{
			      --fade-out-opacity: 0.4;
			  }}

@media (max-width: 450px){:root{
			      --fade-out-opacity: 0.6;
			  }}

@keyframes fade-out {
    from {
	opacity: 1;
    }
    to {
	opacity: var(--fade-out-opacity);
    }
}

.fade-out-delay {
    animation: fade-out 2000ms;
    opacity: var(--fade-out-opacity);
}

.band-current {
    transition: opacity 2s ease-in-out;
}
/*Alternate image fade end */
