:root {
  --bs-light-2: #eeecff;
}

html,
body {
  background-color: var(--bs-light);
  color: var(--bs-primary);
  overflow-x: hidden;
}

/* typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-primary);
  font-weight: 600;
}

h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}

/** main nav top **/
#main-logo {
  position: absolute;
  top: 0px;
  right: 0;
}

#navbar-main .nav-link {
  padding: 0 0.5rem;
  line-height: 2rem;
  font-weight: 600;
}

#navbar-main .nav-link:hover,
#navbar-main .nav-link:focus,
#navbar-main .nav-link.active,
#navbar-main .nav-link.active {
  color: var(--bs-primary);
  background-color: var(--bs-light);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.navbar-main-toggler {
  display: flex;
  width: 100%;
  justify-content: inherit;
  box-shadow: none !important;
  text-decoration: none;
}

@media (min-width: 1200px) {
  #main-nav-top {
    padding: 0px;
    height: 117px;
  }

  .navbar-expand-xl .navbar-collapse {
    align-self: end;
  }

  .navbar-main-toggler {
    display: none;
  }

  #navbar-main .nav-link {
    margin-right: .5rem;
  }
}

@media (max-width: 1199px) {
  #navbar-main .nav-link {
    padding: 0 0.75rem;
    line-height: 2.5rem;
  }
}

/* sidebar-left */
#sidebar-left .list-group .list-group-item {
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.25rem;
  background-color: var(--bs-light-2);
  border: none;
  color: var(--bs-primary);
  font-weight: 600;
}

@media (max-width: 1199px) {
  #sidebar-left .list-group {
    margin-top: 1rem;
  }
  #sidebar-left .list-group .list-group-item {
    font-size: 1rem;
    padding: 0.5rem .75rem;
  }
}

#sidebar-left .list-group .list-group-item:hover,
#sidebar-left .list-group .list-group-item:focus,
#sidebar-left .list-group .list-group-item:active,
#sidebar-left .list-group .list-group-item.active {
  color: var(--bs-primary);
  background-color: var(--bs-secondary);
}

.sidebar-left-toggler {
  background-color: var(--bs-light-2);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

.sidebar-left-toggler .fa-angle-down {
  transition: transform 0.2s ease-in-out;
}

.sidebar-left-toggler.collapsed .fa-angle-down {
  transform: rotate(-90deg);
}

/* sidebar-right */

/* cards */
.card {
  background-color: var(--bs-light-2);
  border: none;
}


/* contact form */
.form-label {
    font-weight: 600;
}

/* gallery */
.gallery>.col>.ratio {
  background-color: var(--bs-light-2);
}
.gallery>.col>.ratio>a {
  display: flex;
  justify-content: center;
}
.gallery>.col>.ratio>a>img {
  align-self:center;
  max-width: 100% !important;
  max-height: 100% !important;
  height: auto;
  width: auto;
}

/*iframes*/
#video1,#video2 {
  position: relative; 
  padding-bottom: 56.25%; /* ratio 16x9 */
  height: 0; 
  overflow: hidden; 
  width: 100%;
  height: auto;
}
#video1 iframe,#video2 iframe {

  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

/* ratio 4x3 */
.embed-container.ratio4x3 {
  padding-bottom: 75%;
}