/*
 * Header main
 */
/* Header -> Header top */
.header .container{
  max-width: 1700px;
}
.header-top,
.header {
  padding: 0;
    width: 100%;
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    padding-right: 60px;
    box-shadow: -1px -2px 9px 2px #9d9d9d;
    z-index: 15;

}
.header-top-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          gap: 1rem;
          flex-wrap: wrap;
}
.region-header-top-left,
.region-header-top-right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.header-top-block p:last-of-type {
  margin: 0;
}
.header-top ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
.header-top-block .block-title {
  font-size: 1.2rem;
}
/* Header -> Header main */
.header-main {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
/* Header -> Site branding */
.site-branding {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1rem;
}
.site-logo {
  padding-right: 5px;
}
.site-logo img {
  display: block;
  width:120px;
}
.site-name-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-name,
.site-slogan {
  line-height: 1.1;
}

/* Header -> header right */
.header-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.menu-wrap {
  position: fixed;
  background-color: var(--dark);
  color: #ffffff;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  max-width: 320px;
  box-shadow: none;
  z-index: 25;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.menu-wrap .menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}
.menu-wrap .menu li {
  position: relative;
  padding: 0;
}
.menu-wrap a {
  display: block;
  color: #ffffff;
  padding: 0.5rem 0;
}
.menu-wrap .menu > li a::after {
  content: none;
}
.menu-wrap .submenu {
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  margin: 0;
  padding: 0;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}
.menu-wrap .submenu li a,
.menu-wrap .submenu li > span {
  display: flex;
  width: 100%;
  padding: 0.5rem;
}
.menu-wrap .menu-item a,
.menu-wrap .menu-item > span {
  border-bottom: 1px solid var(--border);
}
.menu-wrap .submenu li > a,
.menu-wrap .submenu li > span {
  padding-left: 1.5rem;
}
.menu-wrap .submenu .submenu .menu-item > a,
.menu-wrap .submenu .submenu .menu-item > span {
  padding-left: 3rem;
}
/* Mobile Menu */
.mobile-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 28px;
  overflow: hidden;
  cursor: pointer;
}
.mobile-menu span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform-origin: left;
  transition: all 0.5s ease;
}
.mobile-menu span:nth-child(2) {
  background-color: var(--secondary);
}
.menu-icon-active span:first-child {
  transform: rotate(45deg);
}
.menu-icon-active span:last-child {
  transform: rotate(-45deg);
}
.menu-icon-active span:nth-child(2) {
  display: none;
}
.close-mobile-menu {
  display: grid;
  place-content: center;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  z-index: 48;
  cursor: pointer;
}
.active-menu .menu-wrap {
  overflow-y: scroll;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  padding: 1rem;
  box-shadow: 6px  0 1rem #111111;
}
.active-menu .menu {
  display: block;
}
/*slide up */
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
/* Header -> header search form */
.full-page-search {
  position: relative;
  margin: 0;
  padding: 0;
}
.search-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.search-icon i {
  font-size: 24px;
}
.search-box {
  position: fixed;
  background-color: var(--light);
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.search-box.open {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.search-box-content {
  position: relative;
  padding: 2rem 0;
  text-align: center;
  z-index: 60;
}
.search-box-content form {
  margin: 0;
}
.header-search-close {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--dark);
  border: 3px solid var(--dark);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}
.search-box-content .block {
  width: 100%;
  margin: 0;
}
.search-box-content .block-title,
.search-box-content form label {
  display: none;
  color: #000000;
}
.search-box-content input[type="search"] {
  width: 100%;
  margin: 2rem 0;
  padding: 0 2rem 4px 0;
  font-size: 1.4rem;
  background: url("../images/icons/search.svg") center right no-repeat;
  background-size: contain;
  border: 0;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  outline: 0;
}
.search-box-content input[type="submit"] {
  display: block;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}
/* Header -> Page Header */
.page-header {
  margin-top: 85px;
        background: rgb(48 51 59);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}
.region-page-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
              gap: 20px;
}
/* Header -> Page Header-> breadcrumb */
.breadcrumb {
  position: relative;
  width: 100%;
}
.breadcrumb-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-item {
  padding: 0;
  color: #fff;
}
.breadcrumb-item a {
  color: #dadada;
}
.breadcrumb-item a:hover{
  color:#f9b233;
}
.breadcrumb-item span {
  font-size: 14px;
  margin: 0 5px;
  color: #fff;
}
.skiptranslate {
  display: none;
  height: 0;
}
.language__img {
  cursor: pointer;
}
/*
language style...
*/
.language{
	color:black;    
	font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.language2 a{
	color:black;    
	font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.header_desc {
  padding-left: 24px;
  font-size: 10px;
  line-height: 11px;
  width: 100px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-transform: uppercase;
  color: rgb(0 0 0);
border-left: 1px solid rgb(0 0 0 / 80%);
}
.header-download_icon {
background: rgba(22, 196, 235, 1);
}
.header-download_name {
color: rgb(255, 255, 255);
}

.header-phone_content a {
color: rgb(0, 0, 0);
}
.header-phone_content a:hover {
color: #ffac0b;
}
.header_btn {
display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    padding: 12px 20px;
    background: #f9b233;
    border-radius: 144px;
    border: none;
    color: #333;
    gap: 10px;
}

.header-phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-phone_icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}
.header-phone_time {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: rgb(0, 0, 0);
}
 .header-phone_number {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.header-phone_content{
margin-right:25px;	
}
.header-phone_first {
  display: flex;
  flex-direction: column;
}
.header-glyphicon-map-marker {
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  display: flex;
    gap: 5px;
    align-items: center;
}

.main-header__first-bar, .main-header__second-bar, .main-header__third-bar{
  width: 30px;
  height: 6px;
  transition: width 0.2s 0.1s;
  background-color: rgb(0 0 0);
}
.main-header__anim{
  display: flex;
    flex-direction: column;
    gap: 5px;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  transition-delay: 0.9s;
}
.main-header__second-bar {
  transition: visibility 0s ease 0.3s;
}
.main-header__first-bar {
  transition: transform 0.3s ease, background-color 0.7s ease, top 0.2s ease 0.35s;
}
.main-header__third-bar {
  transition: transform 0.3s ease, background-color 0.7s ease, color 0.7s ease, top 0.2s ease 0.35s;
}
.navpanel-top_sandwich:hover .main-header__first-bar, .navpanel-top_sandwich:hover .main-header__second-bar {
  background-color: rgb(255, 106, 0);
  z-index: 1;
  transition: width 0.2s;
}
.navpanel-top_sandwich:hover .main-header__second-bar {
  background-color: rgb(255, 106, 0);
  z-index: 1;
  transition: width 0.2s 0.1s;
}

.navpanel-top_sandwich:hover .main-header__third-bar {
  background-color: rgb(22, 196, 235);
  z-index: 1;
  transition: width 0.2s 0.2s;
}

.navcontent {
    background-image: url(/themes/mric/images/bg_navibar.jpg);
    background-color: rgb(255, 255, 255);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    display: none;
    width: 100%;
    z-index: 8;
    color: rgb(33, 33, 33);
    overflow: hidden;
    height: 100vh;
    padding-top: 80px;
    top: 0px;
    z-index: 12;
}
.navcontent-middle {
    background-color: rgba(216, 216, 216, 0);
    width: 100%;
    height: 80vh;
}
.vertical-align_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-header.expand {
    overflow: visible;
}
.menu{
  list-style: none;
}
.menu-item {
    z-index: 1;
    position: relative;
}
.vertical-align_center .menu-item a {
    font-size: 40px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    position: relative;
    z-index: 2;
}
.vertical-align_center .menu-item:before{
  content:'';
    width: 100%;
    background-color: #f9b233;
    height: 30px;
    max-height: 0;
    transition: max-height 0.6s linear, transform 0.6s cubic-bezier(0.31, 0.15, 0.61, 0.38);
    position: absolute;
    bottom: -0.2em;
    z-index: 0;
    transform: translateY(0.9375rem);
}
.vertical-align_center .menu-item:hover:before {
    max-height: 30px;
    transform: translateY(0);
    transition: max-height 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.page-header:before {
    content: '';
    background-image: url(/themes/mric/images/pg_header.svg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 334px;
    pointer-events: none;
    height: 100%;
        background-repeat: no-repeat;
}
.page-header:after {
    content: '';
    background-image: url(/themes/mric/images/right-dots-o.svg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 800px;
        background-repeat: no-repeat;
}

.gin--horizontal-toolbar .header-top, .gin--horizontal-toolbar  .header {
    top: 50px;
}