@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css");


 /* Flex Gallery */
.row-flex {
--bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}

/* Rotate Device */
.rotatedevice-contain {
width:100%;
}

.rotatedevice {
max-width:35%;
justify-items:center;
}

.show-sm {
display:none;
}

/* Modal Tooltip Popover */

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: 55%;
  margin: 0.5rem;
  pointer-events: none;
  z-index:1060;
}


.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  align-items: right;
  justify-content: space-between;
  /*padding: 1rem 1rem;*/
  /*background-color: #ebf7e6;*/
  /*border-bottom: 1px solid #dee2e6;*/
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  /*margin: -0.5rem -0.5rem -0.5rem auto;*/
  
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  margin: 5px;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 2rem 2rem 2rem;
}

.modal-footer {
  /*display: flex;*/

  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.75rem 0 0.75rem;
  /*border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);*/
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 50px) {
  .modal-dialog {
    margin: auto;
    width: 90%;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    margin: auto;
    width: 55%;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1060;
  display: block;
  width: 70%;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}


/*---------------------- end modal tooltip popover -----------------*/
/* Flex Organization */

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

/*---------------end flex organization-------------*/
/* Found Classes */

.featurette {
margin-bottom:50px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
.featurette {margin-bottom: 20px;}

}

@media only screen and (max-width:479px) {
.featurette {margin-bottom: 20px;}

}

.found-text {
font-size: 21px;
color:#767676;
line-height: 1.4;
margin-bottom: 15px;
padding:5px 20px 0 20px;
}

.found-photo-full{
width:75%;
margin:10px 0px;
}


.fount-photo-tiny {
width:40px;
margin:10px 0px;
}

.found-photo-vertical {
width:50%;
margin:10px 0px;
}

relpos {
position: relative;
}


#shadowbox img.abspos {
position: absolute;
top:0;
/*width:73.87%;*/
}

#shadowbox img.relpos {
position: relative;
}

#shadowbox img {

  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity:0;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

#shadowbox img.opaque {
  opacity:1;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=1);
}

#shadowbox img.transparent {
  opacity:0;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

#shadowbox img.top:hover {
  opacity:0;
}

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
.found-photo-full {width:95%;}

}

@media only screen and (min-width: 480px) and (max-width: 767px) {
.found-photo-full {width:100%;}
.found-photo-half {width:100%;}
.featurette-divider {margin: 0.5rem 0;}
.found-text{font-size:18px;}

}

@media only screen and (max-width:479px) {
.found-photo-full {width:100%;}
.featurette-divider {margin: 0.5rem 0;}
.found-photo-half {width:100%;}
.found-text{font-size:18px;}
.found-submenu{margin-top:20px;}

}

.found-container-center {
position: relative;
display: inline-flex;
flex-direction: row;
flex-wrap: wrap;
width:100%;
justify-content: center;
align-items: center;
}

.found-container-left {
display: flex;
width:100%;
justify-content: left;
align-items: left;
}

.found-container-right {
display: flex;
width:100%;
justify-content: right;
align-items: right;
}

.found-title {
margin:0 4px;
font-style: italic;
color: #333;
}

.found-author {
font-weight: 500;
color: #777;
margin:0 4px;
}

.found-hidden {
display:none;
}

.found-submenu {
display: flex;
flex-wrap:wrap;
flex-direction: row;
justify-content:left;
margin-bottom:20px;
margin-top: 0px;
}

.found-submenu-item {
margin: 5px 5px;
}

.found-submenu-link {

font-weight: 600;
color: #bbb;
font-size: 20px;
}

.found-submenu-link-active {
color: #59805c;
font-weight: 500;
}

/* STOP MOTION OCEAN */
.click-me {
color:#999;
margin:auto;
z-index:1;
}

.projector-screen {
overflow-x: auto;
margin-top:-50px;
z-index:11;
}

.slide-projector-image {
display: none;
z-index:1200;
}

@media only screen and (max-width:931px) {
  .slide-projector-image {
    width: 110% !important;
  }
  .projector-screen > img {
    max-width: 110% !important;
  }
}

@media only screen and (max-width:768px) {
.found-submenu{margin-top:20px;}
.projector-screen{margin-top:-20px;}
.slide-projector-image{width:130% !important;}
.projector-screen > img{max-width:130% !important;}
}


/* 2008 / 2010 */
.found-wrapper {
margin:0px 0px;
}

.float-end {
  float: right !important;
}


/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  /* rtl:remove */
  letter-spacing: -.05rem;
}

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}


/*-----------------end found classes-----------*/


/* LAYOUT CONTAINERS */
.content-full {
padding:1% 5% 5% 5%;
background-color: #fff;
width:100%;
}

.end-float {
clear:both;
margin-bottom:50px;
}

.horiznontal-scroll {
display: flex !important;
overflow-x: auto !important;
flex-wrap: none !important;
height: 800px;
}


.start-slide {
display: block;
}

@media only screen and (max-width:1264px) {
.translation-page {width:75%;}
.arrow-left {margin-left:9%;}
.arrow-right {margin-right:9%;}
.experimentsin {width: 75%; margin-bottom:0px;}
}

@media only screen and (max-width:931px) {
.translation-page {width:90%;}
.arrow-left {margin-left:1%;}
.arrow-right {margin-right:1%;}
.experimentsin {width: 88%; margin-bottom:0px;}
}

@media only screen and (max-width:768px) {
.arrow-left {display:none;}
.arrow-right {display:none;}
.translation-page {width:100%}
}

@media only screen and (max-width:768px) {
.arrow-left {margin-left:0;}
.arrow-right {margin-right:0;}
.translation-page {width:100%}
}


@media only screen and (max-width:479px)
{
.content-full {padding:3px;}

}

input[type="text"]
{
    font-size:20px;
    padding:3px;
    width: 90%;
}

.me-auto {
  margin-right: auto !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
  .mb-md-0 {
    margin-bottom: 0 !important;
  }

.mt-6 {
margin-top: 6px;
}
  
alignleft{
align-items:flex-start;
}

/* ------------------end alignment-------------------- */
/* TOP NAV */

.topnav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.6rem;
  padding-bottom: 0.4rem;
  width: 100%;
  border-bottom: solid 1px #f2f2f2;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.headernav {
width: 100%;
margin-top:1rem;
}

.topnav > .container,
.topnav > .container-fluid,
.topnav > .container-sm,
.topnav > .container-md,
.topnav > .container-lg,
.topnav > .container-xl,
.topnav > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.topnav-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 3.9rem;
  margin-left: .5rem;
  font-size: 1.85rem;
  text-decoration: none;
  white-space: nowrap;
}


.topnav-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.topnav-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  font-size:22px;
}
.topnav-nav .dropdown-menu {
  position: static;
}

.topnav-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.topnav-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.topnav-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .topnav-toggler {
    transition: none;
  }
}
.topnav-toggler:hover {
  text-decoration: none;
}
.topnav-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.topnav-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.topnav-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .topnav-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .topnav-expand-sm .topnav-nav {
    flex-direction: row;
  }
  .topnav-expand-sm .topnav-nav .dropdown-menu {
    position: absolute;
  }
  .topnav-expand-sm .topnav-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .topnav-expand-sm .topnav-nav-scroll {
    overflow: visible;
  }
  .topnav-expand-sm .topnav-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .topnav-expand-sm .topnav-toggler {
    display: none;
  }
}
@media (min-width: 833px) {
  .topnav-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .topnav-expand-md .topnav-nav {
    flex-direction: row;
  }
  .topnav-expand-md .topnav-nav .dropdown-menu {
    position: absolute;
  }
  .topnav-expand-md .topnav-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .topnav-expand-md .topnav-nav-scroll {
    overflow: visible;
  }
  .topnav-expand-md .topnav-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .topnav-expand-md .topnav-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .topnav-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .topnav-expand-lg .topnav-nav {
    flex-direction: row;
  }
  .topnav-expand-lg .topnav-nav .dropdown-menu {
    position: absolute;
  }
  .topnav-expand-lg .topnav-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .topnav-expand-lg .topnav-nav-scroll {
    overflow: visible;
  }
  .topnav-expand-lg .topnav-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .topnav-expand-lg .topnav-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .topnav-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .topnav-expand-xl .topnav-nav {
    flex-direction: row;
  }
  .topnav-expand-xl .topnav-nav .dropdown-menu {
    position: absolute;
  }
  .topnav-expand-xl .topnav-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .topnav-expand-xl .topnav-nav-scroll {
    overflow: visible;
  }
  .topnav-expand-xl .topnav-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .topnav-expand-xl .topnav-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .topnav-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .topnav-expand-xxl .topnav-nav {
    flex-direction: row;
  }
  .topnav-expand-xxl .topnav-nav .dropdown-menu {
    position: absolute;
  }
  .topnav-expand-xxl .topnav-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .topnav-expand-xxl .topnav-nav-scroll {
    overflow: visible;
  }
  .topnav-expand-xxl .topnav-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .topnav-expand-xxl .topnav-toggler {
    display: none;
  }
}
.topnav-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.topnav-expand .topnav-nav {
  flex-direction: row;
}
.topnav-expand .topnav-nav .dropdown-menu {
  position: absolute;
}
.topnav-expand .topnav-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.topnav-expand .topnav-nav-scroll {
  overflow: visible;
}
.topnav-expand .topnav-collapse {
  display: flex !important;
  flex-basis: auto;
}
.topnav-expand .topnav-toggler {
  display: none;
}

.topnav-light .topnav-brand {
  color: #59805c;
}
.topnav-light, .topnav-light .topnav-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.topnav-light .topnav-nav .nav-link {
  color: #aeaeae;
}
.topnav-light .topnav-nav .nav-link:hover, .topnav-light .topnav-nav .nav-link:focus {
  color: rgba(89, 128, 92, 0.7);
}
.topnav-light .topnav-nav .nav-link.disabled {
  color: rgba(89, 128, 92, 0.3);
}
.topnav-light .topnav-nav .show > .nav-link,
.topnav-light .topnav-nav .nav-link.active {
  color: #59805c;

}
.topnav-light .topnav-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.topnav-light .topnav-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.topnav-light .topnav-text {
  color: rgba(0, 0, 0, 0.55);
}
.topnav-light .topnav-text a,
.topnav-light .topnav-text a:hover,
.topnav-light .topnav-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.bg-dark {
  background-color:#59805c;
}

.bg-light {
background-color: transparent;

}

.topnav-dark .topnav-brand {
  color: #fff;
}
.topnav-dark .topnav-brand:hover, .topnav-dark .topnav-brand:focus {
  color: #fff;
}
.topnav-dark .topnav-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.topnav-dark .topnav-nav .nav-link:hover, .topnav-dark .topnav-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.topnav-dark .topnav-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.topnav-dark .topnav-nav .show > .nav-link,
.topnav-dark .topnav-nav .nav-link.active {
  color: #fff;
}
.topnav-dark .topnav-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.topnav-dark .topnav-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.topnav-dark .topnav-text {
  color: rgba(255, 255, 255, 0.55);
}
.topnav-dark .topnav-text a,
.topnav-dark .topnav-text a:hover,
.topnav-dark .topnav-text a:focus {
  color: #fff;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
/*------------- END TOP NAV ----------------*/

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  color: #5a5a5a;
  overflow-x: hidden;}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  text-align: center;
  justify-content: center;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  height:32rem;
}

.carousel-photo {
width:90%;
}

/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */


.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}




.d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }
   .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  body::before {
    display: block;
    content: '';
    height: 0px;
    font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  }
  
  .sash-navbar {
    background-color: #fff;
    opacity: 0.98;
  }
  
  .sash-navbar-brand {
    color: #59805c;
    font-size: 1.9rem;
    /*font-weight: 300 !important;*/
    margin-right: 4rem !important;
    padding-bottom: 0% !important;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  }
  
  .sash-navbar-brand:focus {
    color: #59805c;
  }
  
  .sash-navbar-brand:hover {
    color: #59805c;
  }
  
  .sash-nav-link {
    color: #aaa;
    font-size: 1.32rem;
    font-weight: 400 !important;
    padding-right: 1.1rem !important;
    padding-left: 1.2rem !important;
    padding-bottom: 0 !important;
    text-decoration: none;
  
    @media screen and (max-width: 576px) {
      padding-left: 0 !important;
    }
  
    font-family:"Source Sans Pro",
    Helvetica,
    Arial,
    sans-serif;
  }
  
  .sash-nav-link:hover {
    color: #59805c !important;
    font-weight: 400 !important;
  }
  
  .sash-nav-link:focus {
    color: #59805c !important;
    font-weight: 400 !important;
  }
  
  .sash-active {
    color: #59805c;
    font-weight: 400 !important;
  }
  
  .sash-typewriter {
    font-family: "American Typewriter", Helvetica, Arial, sans-serif;
    color: rgb(153, 0, 0);
    font-size: 2.4rem;
    /*font-weight: 550 !important;*/
    /*font-size:34px;*/
  }
  
  .sash-typewriter-field {
    font-family: "American Typewriter", Helvetica, Arial, sans-serif;
    font-size: 22px;
    color: #660000;
    font-weight: 400 !important;
  }
  
  .sash-typewriter-field:focus {
    box-shadow: 0 0 5px #5e9f79;
  }
  
  .sash-border {
    border: solid 2px #993366;
  
    @media screen and (max-width: 767px) {
      border: 0;
    }
  }
  
  .sash-found-quote {
    font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
    color: #767676;
    line-height: 1.8rem;
    margin-bottom: 15px;
  }
  
  .fade-image {
    transition: opacity 1s ease;
  }
  
  .fade-image:hover {
    opacity: 0;
  }
  
  