:root {
  --nav-bg : #021932;
  --secondary-bg : #D3D3D3;
  --footer-bg : #EAEAEA;
  --primary-header-text-color: #021932;
  --primary-text-color: #645E5E;
  --button-bg: #023047;
}

.page-content h1 {
  color:  var(--primary-header-text-color);
  font-size: 2rem;
  font-weight: 600;
}

.page-content h2 {
  color: var(--primary-header-text-color);
  font-size: 1.8rem;
  font-weight: 600;
}

.page-content h3 {
  color: var(--primary-header-text-color);
  font-size: 1.6rem;
  font-weight: 600;
}

.page-content h4 {
  color: var(--primary-header-text-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.page-content h5 {
  color: var(--primary-header-text-color);
  font-size: 1.2rem;
  font-weight: 400;
}

.page-content h6 {
  color: var(--primary-header-text-color);
  font-size: 1rem;
  font-weight: 400;
}

.page-content p {
  color:  var(--primary-text-color);
}

.page-content blockquote {
  padding: 1rem;
  font-style: italic;
  border-left: 2px solid #31572c;
}

.page-content ul{
  list-style: disc inside !important;
}


.page-content ol{
  list-style-type: decimal;
  list-style-position: inside;
}
.page-content .image{
  padding: 1.2rem;
}

.page-content .image.image-style-align-center{
  margin: 0 auto;
}

.page-content .image figcaption{
  padding: 0.24rem;
  background: #444;
  color: #fff;
}

.page-content .image.image-style-align-left{
  float: left;
}

.page-content .image.image-style-align-right{
  float:right;
}

.bg-black-30{
  background-color: rgba(0, 0, 0, 0.3);
}

.h-128 {
  height: 32rem;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 100; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: rgba(255, 255, 255, 0.85); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--primary-header-text-color);
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  color: #818181;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left 0.5s;
  width: 100%;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.square-it {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-color: #cccccc;
}


.ar-16\:9 {
  width: 100%;
  padding-bottom: 56.666%;
  position: relative;
}

.ar-service-square {
  width: 100%;
  padding-bottom: 53%;
  position: relative;
}


.gallery-photo .hover-caption{
  opacity: 0;  
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}


.gallery-photo:hover .hover-caption{
  background-color: white;
  opacity: 1;
}



.glide__bullets{
  bottom: -1.2em !important;
}

.glide__bullets .glide__bullet{
  background-color: #aaa;
}

.glide__bullets .glide__bullet.glide__bullet--active{
  border: 1px solid #100A49 !important;
  background-color: var(--primary-header-text-color);
}
.dropdown-menu{
  position: relative;
  overflow: visible;
  z-index: 100;
}

.dropdown-items{
  margin-top: 10px;
  color: #000;
  border-radius: 5%;
  position: absolute;
  left: 0;
  background-color: white;
  width: 300px;
  visibility: hidden;
  opacity: 0;
  transition: 0.25s ease-in;
  overflow: hidden;
}

.dropdown-menu:hover .dropdown-items, .dropdown-menu:active .dropdown-items,
.dropdown-menu:focus-within .dropdown-items{
  visibility: visible;
  opacity: 1;
  box-shadow: 0px 2px 2px #E5E5E5;
}

.dropdown-menu .dropdown-item{
  padding: 0.5rem;
  transition: 0.5s ease-in-out;
}

.dropdown-menu .dropdown-item:hover{
  background-color: #eee;
  color: #333;
}