@charset "UTF-8";


.size-100 {
  width: 100px;
  height: 100px;
}
.size-150{
  width: 150px;
  height: 150px;
}
/* header */
#mainNav {
  font-family: '500';
  letter-spacing: 0.1em;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 3px 20px rgb(0 0 0 / 12%);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  transition: padding-top 0.3s, padding-bottom 0.3s;
}
#mainNav.navbar-shrink {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  /* background-color: #181438; */
}
#mainNav .navbar-brand {
  color: #545454;
  font-family: '700';
}
#mainNav .navbar-nav {
  margin-top: 1rem;
}
#mainNav .navbar-nav li.nav-item a.nav-link {
  color: #545454;
}
#mainNav .navbar-nav li.nav-item a.nav-link:hover {
  color: #efb90a;
}
#mainNav .navbar-nav li.nav-item a.nav-link:active, #mainNav .navbar-nav li.nav-item a.nav-link:focus {
  color: #fff;
}
#mainNav .navbar-nav li.nav-item a.nav-link.active {
  color: #efb90a;
}
#mainNav .navbar-toggler {
  width: 42px;
  height: 42px;
  background-color: #efb90a;
  border-radius: 100%;
  color: #fff;
  font-size: 30px;
}
#mainNav .navbar-toggler:focus{
  outline: none;
}
.shadow_innerpage{
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}
.menu-button-icon{
  display: flex;
  width: 20px;
  height: 15px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.menu-line-top{
  max-height: 2px;
  min-height: 2px;
  padding: 0px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background-color: #fff;
}
.menu-line-middle{
  max-height: 2px;
  min-height: 2px;
  padding: 0px;
  background-color: #fff;
}
.menu-line-bottom{
  max-height: 2px;
  min-height: 2px;
  padding: 0px;
  background-color: #fff;
}
/* header */

/* footer */
.footer {
  padding-top: 3rem;
  background-color: #282454;
  color: #fff;
}
.copyright {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.logo_footer{
  font-size: 1.3em;
  transition: font-size 0.3s;
  font-family: '700';
  text-decoration: none !important;
  color: #fff !important;
  margin-bottom: 50px;
}
.width_footer{
  width: 70%;
}
.footer h2{
  font-size: 18px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.footer h2::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #e0dff1;
  width: calc(100% + 20px)
}
.menu_footer a{
  color: #fff;
  font-family: '700';
  font-size: 14px;
  line-height: 1.45em;
  text-decoration: none !important;
  transition: color 350ms ease;
}
.menu_footer a:hover{
  color: #efb90a;
}
.grid_menu_footer{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact_footer .form-control{
  border: 1px solid #ddd;
  background-color: transparent;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.18);
}
.btn_send{
  background-color: #efb90a;
  height: 42px;
  transition: transform 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
}
.btn_send:hover{
  background-color: #ca8611;
  color: #fff !important;
  transform: scale3d(0.95, 0.95, 1.01);
}
/* footer */

@media (min-width: 992px) {
  #mainNav .navbar-brand {
    font-size: 1.75em;
    transition: font-size 0.3s;
  }
  #mainNav .navbar-nav {margin-top: 0;}
  #mainNav .navbar-nav > li.nav-item > a.nav-link.active {
    color: #fff;
    background: #1abc9c;
  }
  #mainNav .navbar-nav > li.nav-item > a.nav-link.active:active, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:focus, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:hover {
    color: #fff;
    background: #1abc9c;
  }
  #mainNav.navbar-shrink .navbar-brand {font-size: 1.5em;}
}

@media (max-width: 991px){
  #mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 767px){
  .footer h2{display: inline-flex;}
  .footer h2::before{
    width: calc(100% + 20px);
  }
}