.navbar-brand {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 1.125rem;
}

.navbar-brand-logo {
  width: 20rem;
  height: 4.5rem;
  cursor: pointer;
}

.navbar-brand-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-contact-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-contact-list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-contact-list-item:first-child {
  margin-right: 8rem;
}


.navbar-contact-list-item:last-child {
  margin-right: 6rem;
}

.navbar-contact-list-item > img {
  margin-right: .625rem;
  height: 1.375rem;
  width: 1.375rem;
}

.navbar-contact-list-item > div {
  cursor: pointer;
  font-size: 1.375rem;
  font-family: 'Arial';
  color: rgb(33, 132, 198);
}

.navbar-contact-list-item > div:hover {
  color: rgb(0, 114, 184);
}

.navbar-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 80%;
  z-index: 2000;
  background-color: white;
  user-select: none;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: 3rem;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.12);
}

.navbar-logo {
  width: 250px;
  height: 80px;
  display: none;
  cursor: pointer;
}  

.navbar-space {
  flex: 1;
  display: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.navbar-space {
  flex: 1;
}

.navbar-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.375rem;
}

.navbar-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  color: black;
}

.navbar-item {
  position: relative;
  cursor: pointer;
  font-size: 0.9375rem;
  border-bottom: .0625rem transparent solid;
  font-weight: bolder;
  padding-left: .25rem;
  padding-right: .25rem;
  padding-bottom: .625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.navbar-item-icon {
  width: .4375rem;
  height: .25rem;
  margin-left: .9375rem;
  background-image: url(../images/navbar-down.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-item:hover > .navbar-item-icon {
  background-image: url(../images/navbar-up.png);
}

@media screen and (max-width: 1920px) {
  .navbar-item {
    font-size: 18px;
  }
  
  .navbar-item-search > input {
    padding-left: 8px;
    height: 35px;
    font-size: 20px;
  }
  
  .navbar-item-search > img {
    cursor: pointer;
    height: 18px;
    top: .9px;
  }
}

.navbar-item-active {
  color: rgb(0, 114, 184);
}

.navbar-item::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0rem;
  width: 0;
  height: .0625rem;
  background-color: rgb(0, 114, 184);
  transition: width 0.3s ease-in-out;
}

.navbar-item:hover::before{
  width: 100%;
}

.navbar-item:hover {
  transition: .3s all;
  color: rgb(0, 114, 184);
}

.navbar-item-search {
  position: relative;
  padding-left: .25rem;
  padding-right: .25rem;
  padding-bottom: .625rem;
}

.navbar-item-search > input {
  padding-left: .5rem;
  height: 2.1875rem;
  width: 100%;
  border: 0px;
  border-bottom: 1px solid rgb(129, 129, 129);
  outline: none;
  font-size: 1rem;
}

.navbar-item-search > img {
  height: 1rem;
  position: absolute;
  top: .5rem;
  right: 0;
}

.navbar-sub-items {
  visibility: hidden;
  position: absolute;
  background-color: rgb(248, 248, 248);
  margin-top: 2rem;
  left: -1.9375rem;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2000;
  color: black;
  padding-top: 1rem;
}

.navbar-sub-item {
  margin-bottom: .625rem;
  text-align: left;
  padding-right: 1.25rem;
  padding-top: .625rem;
  padding-bottom: .625rem;
  width: 6.25rem;
  font-size: .875rem;
  font-weight: normal;
  border-bottom: 1px solid rgb(214, 214, 214);
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.navbar-sub-item:hover {
  transition: all .3s;
  color: rgb(26, 132, 212);
  border-bottom: 1px solid rgb(26, 132, 212);
}

.navbar-item:hover > .navbar-sub-items {
  visibility: visible;
  opacity: 1;
}

.navbar-sub-items-custom {
  display: flex;
  flex-direction: row;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
}

.navbar-sub-items-custom-item {
  margin-left: .5rem;
  margin-right: .5rem;
}

.navbar-sub-items-custom-item-title {
  color: #0072b8;
  margin-bottom: .625rem;
  text-align: left;
  padding-top: .5rem;
  padding-bottom: .5rem;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid rgb(214, 214, 214);
}

.navbar-sub-items-custom-item-item {
  margin-bottom: .5rem;
  text-align: left;
  padding-top: .5rem;
  padding-bottom: .5rem;
  width: 8rem;
  font-size: .75rem;
  font-weight: normal;
  border-bottom: 1px solid rgb(214, 214, 214);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-sub-items-custom-item-item:hover {
  color: rgb(0, 114, 184);
  border-bottom: 1px solid rgb(0, 114, 184);
}

.custom-square {
  width: 0.25rem;
  height: 0.25rem;
  margin-right: .625rem;
  transform: rotate(45deg);
  border-top: 1px solid rgb(0, 114, 184);
  border-right: 1px solid rgb(0, 114, 184);
}

.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: end;
}

.navbar-toggler > svg {
  height: 32px;
  width: 32px;
  padding: 8px 12px;
  cursor: pointer;
  color: rgb(0, 0, 0);
}

.navbar-toggler > svg:hover {
  border-radius: 10px;
  box-shadow:
    0px 0px 0.9px rgba(0, 0, 0, 0.038),
    0px 0px 2.5px rgba(0, 0, 0, 0.055),
    0px 0px 6px rgba(0, 0, 0, 0.072),
    0px 0px 20px rgba(0, 0, 0, 0.11)
  ;
}

.navbar-offcanvas {
  display: none;
  position: fixed;
  background-color: rgb(255, 255, 255);
  height: 0;
  width: 100%;
  top: 100px;
  right: 0;
  text-align: left;
  z-index: 2000;
}

.navbar-offcanvas-body {
  display: flex;
  flex-direction: column;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
}

.offcanvas-item {
  cursor: pointer;
  margin-bottom: 12px;
  font-size: 14px;
  border-bottom: 1px solid rgb(214, 214, 214);
  min-height: 30px;
}

.offcanvas-item:hover {
  color: rgb(94, 175, 238);
}

.offcanvas-item-icon-open {
  display: none;
}

.offcanvas-item-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.offcanvas-sub-items {
  display: none;
  color: black;
  margin-top: 30px;
}

.offcanvas-sub-item {
  padding-left: 30px;
  height: 30px;
  font-size: 14px;
}

.offcanvas-sub-item:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid rgb(214, 214, 214);
}

.offcanvas-sub-item:hover {
  color: rgb(94, 175, 238);
}

@media screen and (max-width: 950px) {
  .navbar-brand {
    display: none;
  }

  .navbar-container {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0;
    height: 80px;
    position: fixed;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-top {
    height: 100px;
  }

  .navbar-items { 
    display: none;
  }

  .navbar-toggler { 
    display: flex;
  }

  .navbar-logo {
    display: block;
  }

  .navbar-space {
    display: block;
  }
}