/* CSS Document */
/*---1. IdxHeader Bg,InnerHeader Bg---*/
/*---2. Header Menu css---*/
/*---3. Responsive Menu CSS---*/
/*---4. Footer CSS ---*/
/*---4.1 social icons---*/
/*---4.2 FooterLinks,copy,developedby---*/
/*---1. IdxHeader Bg,InnerHeader Bg---*/
/* 
.IdxHeaderBg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
} */
/*---2. Header Menu css---*/
/*---3. Responsive Menu CSS---*/
/*---4. Footer CSS ---*/
/*---4.1 social icons---*/
/*---4.2 FooterLinks,copy,developedby---*/
/*---4.1 social icons---*/
/** new manu **/
/* piyush */
.TopHeader {
  position: absolute;
  z-index: 9999;
  width: 100%;
  left: 0px;
  top: 0px;
  --bg: 155px;
  background: -webkit-gradient(linear, right top, left top, from(var(--site-color-2)), to(transparent));
  background: linear-gradient(to left, var(--site-color-2) var(--bg), transparent var(--bg));
  padding: 22px 0 0;
}

.TopHeader #sidemenu {
  position: fixed;
  width: 0px;
  height: 100%;
  top: 0px;
  right: 0px;
  background-color: var(--site-color-2);
  z-index: 9999;
  -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: center; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
  /* opacity: 0; */
  visibility: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
}

.TopHeader #sidemenu .MainWrapper {
  width: 100%;
  /* padding: 50px 0 0; */
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 30px;
}

.TopHeader #sidemenu .MainWrapper::-webkit-scrollbar {
  width: 7px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50px
}

.TopHeader #sidemenu .MainWrapper::-webkit-scrollbar-thumb {
  background-color: var(--site-color-1);
  border-radius: 50px
}

.TopHeader .FSocialIcon {
  margin: 0;
}

.TopHeader #sidemenu ul li {
  line-height: 1;
  position: relative;
}

.TopHeader #sidemenu ul li+li {
  margin-top: 20px;
}

.TopHeader #sidemenu ul li:last-child {
  border-bottom: 0px solid #1a1a1a;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.TopHeader #sidemenu ul li a {
  display: inline-block;
  color: #ffffff;
  font-family: var(--site-font-b);
  font-size: clamp(20px, 7vw, 26px);
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 6px solid transparent;
  padding: 0 0 8px;
  position: relative;
}

.TopHeader #sidemenu ul li a:hover {
  color: var(--site-color-1);
  border-color: var(--site-color-1);
}

.TopHeader #sidemenu ul li ul {
  margin: 0;
  text-align: left;
  position: relative;
  /* top: 0px;
  left: 20px; */
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: all .3s ease-in-out;
}

.TopHeader #sidemenu ul li ul.active {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  padding-top: 5px;
}

.TopHeader #sidemenu ul li ul li {
  display: block;
  border-bottom: none;
  padding-left: 20px;
  /* padding-bottom: 0px; */
  /* margin-bottom: 0px; */
  /* margin-left: 0px; */
  /* margin-right: 35px; */
  /* vertical-align: super; */
  /* padding-right: 40px; */
  /* border-right: 1px solid #1a1a1a; */
  /* opacity: 0; */
}

.TopHeader #sidemenu ul li ul li a {
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 20px;
  text-transform: capitalize;
  font-family: var(--site-font-r);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.TopHeader #sidemenu ul li ul li+li {
  margin-top: 15px;
}

.TopHeader #sidemenu ul li ul li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: 0px solid #1a1a1a;
}

.TopHeader #sidemenu ul li ul li .Icon {
  width: 41px;
  height: 41px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 0;
}

.TopHeader #sidemenu ul li ul li .Icon .ResIcon {
  display: none;
}

.TopHeader #sidemenu ul li ul li .Text {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--site-font-r);
  vertical-align: super;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.TopHeader #sidemenu ul li ul li a:hover .Text {
  color: var(--site-color-1);
}

.TopHeader #sidemenu ul li ul li a:hover .Icon .WhiteIcon {
  display: none;
}

.TopHeader #sidemenu ul li ul li a:hover .Icon .ResIcon {
  display: block;
}

.TopHeader #sidemenu ul li:hover ul li {
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

/* .TopHeader #sidemenu ul li:hover ul li:nth-child(1) {
  -webkit-transition-delay: 0.29s;
  transition-delay: 0.29s;
}

.TopHeader #sidemenu ul li:hover ul li:nth-child(2) {
  -webkit-transition-delay: 0.38s;
  transition-delay: 0.38s;
}

.TopHeader #sidemenu ul li:hover ul li:nth-child(3) {
  -webkit-transition-delay: 0.47s;
  transition-delay: 0.47s;
} */

/* .TopHeader #sidemenu ul li:nth-child(1) {
  -webkit-transition-delay: 0.49s;
  transition-delay: 0.49s;
}

.TopHeader #sidemenu ul li:nth-child(2) {
  -webkit-transition-delay: 0.42s;
  transition-delay: 0.42s;
}

.TopHeader #sidemenu ul li:nth-child(3) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
} */

.TopHeader #sidemenu ul li a.on {
  color: var(--site-color-2);
}

.TopHeader #sidemenu.active {
  width: 50vw;
  /* min-height: -webkit-max-content;
  min-height: -moz-max-content; */
  /* min-height: max-content; */
  height: 100vh;
  /* padding: 100px max(7%, 20px); */
  padding: 100px 30px 50px 50px;
  opacity: 1;
  visibility: visible;
}

.TopHeader #sidebar.active span:last-child {
  display: none;
}

.TopHeader #sidebar.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -9px;
  background-color: white;
}

.TopHeader #sidebar.active span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 8px;
  background-color: white;
}

.HomeTop {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.IdxHeaderBg {
  position: relative;
  z-index: 0;
}

.IdxHeaderBg img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.IdxHeaderBg .slides li {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}

.InnerHeaderBg {
  position: relative;
  background-position: left top;
  z-index: 0;
  min-height: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  display: table;
  width: 100%;
  background-repeat: no-repeat;
}

.InnerHeaderBg:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  --bg: 155px;
  z-index: 2;
  background: -webkit-gradient(linear, right top, left top, from(var(--site-color-2)), to(transparent));
  background: linear-gradient(to left, var(--site-color-2) var(--bg), transparent var(--bg));
}

.InnerHeaderBg h1.Title {
  color: #ffffff;
  font-size: clamp(34px, 7vw, 70px);
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--site-font-r);
  margin-left: 45px;
  margin-top: 130px;
}

.text-overlay {
  z-index: 3;
}

.InnerHeaderBg .ImgWrap {
  position: relative;
  line-height: 0;
}

.InnerHeaderBg .ImgWrap:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.InnerHeaderBg .ImgWrap img {
  width: 100%;
}

.Wrapper {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  bottom: -11px;
  text-align: left;
  z-index: 11;
}

.Wrapper .Title {
  text-transform: uppercase;
  color: white;
  line-height: 1;
}

.IdxHeaderBg .slides li {
  position: relative;
}

.IdxHeaderBg {
  position: relative;
}

.IdxHeaderBg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  --bg: 155px;
  z-index: 2;
  background: -webkit-gradient(linear, right top, left top, from(var(--site-color-2)), to(transparent));
  background: linear-gradient(to left, var(--site-color-2) var(--bg), transparent var(--bg));
}

.IdxHeaderBg .slides li .ImgWrap {
  position: relative;
  line-height: 0;
}

.IdxHeaderBg .slides li .ImgWrap:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.Header {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  bottom: 110px;
  text-align: left;
  z-index: 11;
}

.Header .Title {
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
}

.Header .Title+.short-desc {
  margin-top: 10px;
}

.Header .short-desc {
  color: #ffffff;
  font: 24px/1.4 var(--gilroy-r);
}

#my-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  background-position: center center;
  background-size: contain;
  -o-object-fit: cover;
  object-fit: cover;
}

.Logo {
  float: left;
  --logo-size: 240px;
  --logo-height: 118px;
  width: var(--logo-size);
}

.Logo a {
  display: block;
  width: var(--logo-size);
  height: var(--logo-height);
  background: url(../images/imgs/main-logo.svg) no-repeat left top;
  background-size: contain;
  text-indent: -999999px;
}

.LogoCenter {
  position: absolute;
  top: 0;
  left: calc(50% - var(--logo-size) / 2);
  z-index: 10000;
}

.LogoCenter a {
  display: block;
  width: var(--logo-size);
  height: var(--logo-height);
  background: url(../images/imgs/main-logo.svg) no-repeat left top;
  text-indent: -999999px;
  background-size: 100%;
}

.TopMainRight {
  float: right;
  width: 60%;
  text-align: right;
  padding: 0 105px 0px;
  margin: -5px 0 0;
}

.PhoneImg {
  font-family: var(--site-font-b);
  padding: 5px 0px;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.1;
  color: #071a2b;
}

.PhoneImg i {
  color: var(--site-color-2);
  font-size: 1.5em;
  vertical-align: middle;
  margin: -11px 2px 0;
}

.PhoneImg a {
  color: inherit;
}

.PhoneImg a:hover {
  color: var(--site-color-2);
}

#navigation:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#navigation li {
  display: inline-block;
  vertical-align: top;
  background-image: none;
  padding: 0px;
  margin: 0px 15px;
  position: relative;
}

#navigation li a {
  font-family: var(--site-font-b);
  font-size: clamp(20px, 8vw, 30px);
  letter-spacing: 0px;
  line-height: 2;
  color: #ffffff;
  font-weight: 800;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 99999;
}

#navigation li a i {
  color: var(--site-color-2);
  font-size: 1.1em;
  vertical-align: middle;
  margin: -13px 5px 0;
}

#navigation li a:hover {
  color: var(--site-color-1);
}

/* #navigation li a:hover i {
  color: var(--site-color-1);
} */

#navigation li:first-child {
  margin-left: 0px;
}

#navigation li:last-child {
  margin-right: 0px;
}

.menu {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  position: relative;
  display: inline-table;
  font-size: 14px;
  line-height: 38px;
  text-transform: uppercase;
  z-index: 400;
}

.menu ul li {
  margin: 0px;
  position: relative;
  padding: 0px;
  background-image: none;
}

.menu ul li>a {
  padding: 0px 22px;
}

.menu ul li:hover>ul {
  display: block;
}

.menu ul:after {
  content: "";
  clear: both;
  display: block;
}

.menu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  width: 170px;
  text-align: left;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.menu li ul li {
  display: block;
  vertical-align: top;
  background-image: none;
  padding: 0px;
  margin: 0px;
  position: relative;
  border-bottom: 1px solid #d8d8d8;
}

.menu ul ul>li {
  position: relative;
}

.menu ul ul>li a {
  padding: 10px 12px !important;
  height: auto;
  text-transform: none;
  font-size: 13px;
  line-height: normal;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  display: block;
}

.menu ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}

.menu li .has-submenu {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 111;
  width: 38px;
  height: 38px;
  color: #fff;
  line-height: 38px;
  font-size: clamp(16px, 6vw, 18px);
  text-align: center;
  border-left: 1px solid #fff;
  cursor: pointer;
}

.menu>li>ul.sub-menu {
  padding: 0px 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.menu .LightGreenBtn.yellow a {
  --yellow: #027972;
  --lightgreen-4: #ebe726;
  --white: #2d2d2d;
}

.menu-link {
  display: none;
  float: right;
  text-decoration: none;
  padding: 19px 10px;
}

.ResponsiveMenu {
  position: relative;
  width: 100%;
  top: 0px;
  height: 50px;
  background-color: #d33b1c;
  display: none;
}

.ResponsiveMenu .PhoneImg {
  color: #fff;
  padding: 11.5px 0;
  padding-left: 25px;
  font-size: clamp(16px, 6vw, 17px);
  line-height: 27px;
}

.ResponsiveMenu .PhoneImg i {
  color: #fff;
}

.ResponsiveMenu .PhoneImg a {
  color: #fff;
}

.ResponsiveMenu .PhoneImg a:hover {
  color: #fff;
}

.NavLeft {
  float: left;
  width: 40%;
}

.NavRight {
  float: right;
  width: 40%;
}

.FSocialIcon {
  margin: 0 auto;
  text-align: center;
}

.FSocialIcon li {
  background-image: none;
  padding: 0px;
  margin: 0px 0px;
  display: inline-block;
  vertical-align: top;
}

.FSocialIcon .fa-stack {
  width: 1.2em;
  height: 1.39em;
  line-height: 40px;
}

.FSocialIcon .fa-stack-2x {
  top: 0px;
  font-size: 40px;
}

.FSocialIcon .fa-lg {
  background-color: transparent;
  border-radius: 50%;
  font-size: 23px;
  line-height: 30px;
}

.FSocialIcon a {
  color: white;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.FSocialIcon a .fa-inverse {
  color: #fff;
}

.FSocialIcon a:hover {
  color: #333;
}

.FSocialIcon a:hover .fa-inverse {
  color: var(--site-color-1);
}

.FooterLink {
  text-align: left;
}

.FooterLink li {
  display: inline-block;
  margin: 0px;
  padding: 0px 0px;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1;
  color: #5f5f5f;
  font-family: var(--gilroy-r);
  background-image: none;
}

.FooterLink li+li {
  border-left: 1px solid #5f5f5f;
}

.FooterLink li a {
  color: inherit;
  padding: 0px 12px;
  line-height: 1;
}

.FooterLink li a:hover {
  color: var(--site-color-1);
}

.FooterLink li:first-child a {
  padding-left: 0;
}

.FooterLink li:last-child a {
  padding-right: 0;
}

.copy,
.DevelopedBy {
  padding: 0px 0px;
  background-image: none;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: var(--site-font-r);
  display: block;
  line-height: 1.3;
  text-align: left;
  margin: 0 0;
  font-size: 11px;
  letter-spacing: 1px;
  color: #5f5f5f;
}

.copy+.DevelopedBy,
.DevelopedBy+.DevelopedBy {
  margin-top: 3px;
}

.copy br,
.DevelopedBy br {
  display: none;
}

.DevelopedBy a:hover {
  color: var(--site-color-1);
}

.DevelopedBy i {
  vertical-align: middle;
  margin-left: 8px;
}

.DevelopedBy i img {
  vertical-align: middle;
}

.FooterWrap .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.FooterWrap .flex-item.info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 362px;
  flex: 1 1 362px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--site-color-1);
}

.FooterWrap .flex-item.map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 62%;
  flex: 1 1 62%;
  line-height: 0;
}

.FooterWrap .info-container {
  width: 347px;
  display: inline-block;
  margin-left: auto;
  padding: 43px 30px 103px 9px;
}

.FooterWrap .text-box {
  margin-top: 31px;
  line-height: 0;
}

.FooterWrap .text-box+.text-box {
  margin-top: 17px;
}

.FooterWrap .text-box h6 {
  color: white;
  font-family: var(--gilroy-eb);
  font-size: var(--fz20);
  line-height: 1.2;
  text-transform: uppercase;
}

.FooterWrap .text-box:nth-child(1).IconWrap {
  margin: 1px 0 0px 0;
}

.FooterWrap address {
  color: white;
  font-size: var(--fz15);
  line-height: 26px;
  margin: 7px 0 0;
}

.FooterWrap .link a {
  color: white;
  font-family: var(--monts-m);
  font-size: var(--fz15);
  line-height: 1.2;
}

.FooterWrap a {
  display: inline-block;
}

.FooterWrap .InnerContainWrapper {
  padding: 18px 25px 24px;
}

#sidebar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: var(--site-color-2);
  padding: 35px 95px 35px 20px;
}

#sidebar span {
  width: 30px;
  height: 4px;
  background-color: white;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#sidebar.active {
  position: fixed;
}

.Logo.MenuLogo {
  margin: -80px 0 0 54px;
  width: 231px;
  background-color: transparent;
  padding: 0;
}

.Logo.MenuLogo a {
  background: url(../images/imgs/hover-logo.png) no-repeat left top;
  width: 231px;
  height: 130px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0.6s;
  transition: all 0.5s ease-in-out 0.6s;
}

.SideMenu.active .Logo.MenuLogo a {
  opacity: 1;
}

.ResponsiveLogo {
  display: none;
}

#navigation.active li a {
  color: white;
}

#navigation.active li a:hover {
  color: var(--site-color-1);
}

#navigation.active li a i {
  color: white;
}

.information-container {
  margin-top: 6px;
}

.information-container h6.Title {
  color: var(--site-color-2);
  font-family: var(--site-font-b);
  font-size: clamp(18px, 7vw, 22px);
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.information-container .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.information-container .flex-container .left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 37.5%;
  flex: 1 1 37.5%;
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.information-container .flex-container .right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 62.13%;
  flex: 1 1 62.13%;
}

.information-container .flex-container .right a {
  display: block;
  line-height: 0;
}

.information-container .flex-container .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.information-container .flex-container .fixed-right {
  max-width: 385px;
  padding: 61px 0;
  margin-left: auto;
  width: 100%;
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.information-container .info-block {
  color: #ffffff;
}

.information-container .info-block>h6.Title {
  margin-top: 12px;
}

.information-container .info-block>*+* {
  margin-top: 13px;
}

.information-container .info-block a {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 24px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
}

.information-container .info-block a:hover {
  color: var(--site-color-2);
}

.information-container .btn-group {
  margin-top: 20px;
}

.TopHeader.Sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 6px 0;
  background: white;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;

}

.TopHeader.Sticky .TopMainRight {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 22px 0 0;
}

.TopHeader.Sticky:not(:has(.PhoneImg)) .TopMainRight {
  padding-top: 35px;
}

.TopHeader.Sticky .Logo {
  width: 220px;
}

.TopHeader.Sticky .Logo a {
  background: url(../images/imgs/sticky-logo.svg) no-repeat left top;
  width: 220px;
  height: 98px;
}

.TopHeader.Sticky .menu {
  display: block;
}

.TopHeader.Sticky .menu a {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.3;
  color: #444444;
  font-family: var(--site-font-r);
}

.TopHeader.Sticky .menu a:hover {
  color: var(--site-color-2);
}

.TopHeader.Sticky .menu>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.TopHeader.Sticky .menu>ul li:last-child a {
  padding-right: 0;
}

.TopHeader.Sticky .menu>ul li>a {
  padding: 0 15px;
}

.TopHeader.Sticky .menu>ul::after {
  display: none;
}


.SideMenu span.has-subnav {
  display: block;
  font-size: 18px;
  line-height: 28px;
  position: absolute;
  right: -35px;
  padding: 0 0;
  top: 0;
  width: 35px;
  text-align: center;
  border-left: 1px solid #d8d8d8;
  color: #ffffff;
  cursor: pointer;
}


.SideMenu span.has-subnav.active {
  transform: rotate(180deg);
  border-left: 0px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

.TopHeader .FSocialIcon .SocialIcons {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 50px;
}

.TopHeader .FSocialIcon .SocialIcons li {
  margin-top: 0 !important;
}

.TopHeader #sidemenu .FSocialIcon .SocialIcons a {
  padding: 0 !important;
  border-bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 40px;
}

.TopHeader .FSocialIcon a .fa-inverse {
  color: var(--site-color-2);
  font-size: 22px;
}

.TopHeader .FSocialIcon a:hover .fa-inverse {
  color: #fff;
}

.Sticky .has-subnav {
  position: absolute;
  left: auto;
  right: 10px;
  top: -4px;
}

.TopHeader.Sticky .menu a:has(+.has-subnav) {
  padding-right: 25px;
}

body:has(#sidebar.active) {
  position: relative;
}

body:has(#sidebar.active) .TopHeader {
  position: fixed;
}

body:has(#sidebar.active) .TopHeader.Sticky {
  display: none !important;
}

body:has(#sidebar.active)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: -11;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 99;
}