/* COMMON */
.text-uppercase {
  text-transform: uppercase;
}
.text-uderline {
  text-decoration: underline;
}
/* COMMON */

/* HEADER */
#gp-header {
    background-color: #091519;
  position: relative;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
}
/* ---------------------------------------- gp-head */
.gp-head {
    padding: 30px 0px 15px;
  position: relative;
  z-index: 3;
}
.gp-head .logo img{
    height: 34px;
}


/* ---------------------------------------- logo */
.gp-head .logo,
.navigation .logo {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  display: flex;
  color: #333333;
}
.gp-head a.logo,
.navigation a.logo {
  text-decoration: none;
}
/* ------------------------------ logo-icon */
.gp-head .logo .logo-icon,
.navigation .logo .logo-icon {
  display: block;
  flex: none;
}
.gp-head .logo .logo-icon svg,
.navigation .logo .logo-icon svg {
  height: 100%;
  width: auto;
}
.gp-head .logo .logo-icon .svg-fill,
.navigation .logo .logo-icon .svg-fill {
  fill: #c92317;
}
/* ------------------------------ logo-text */
.gp-head .logo .logo-text,
.navigation .logo .logo-text {
  display: block;
  flex: none;
}
/* -------------------- */
.gp-head .logo .logo-text .subtitle,
.navigation .logo .logo-text .subtitle {
  font-weight: 700;
  border-top: 1px solid #666666;
  padding-top: 5px;
}
/* -------------------- */
.gp-head .logo .logo-text sub,
.navigation .logo .logo-text sub {
  bottom: 0;
}


/* ---------------------------------------- navbar */
.gp-navbar {
  margin-bottom: 0;
}
/* -------------------- */
.gp-navbar li {
  position: relative;
}
/* -------------------- */
.gp-navbar a {
    font-size: 14px;
    text-transform: uppercase;
/*  font-weight: 700;*/
  text-decoration: none;
  position: relative;
  display: block;
    color: #ffffff;
}
.gp-navbar a:hover {
  color: #c92317;
}
/* -------------------- */
.gp-navbar a sup {
  color: #c92317;
  top: -0.35em;
}


/* ---------------------------------------- gp-enter */
.gp-enter {
  align-items: center;
  margin-bottom: 0;
  display: flex;
    color: #ffffff;
}
.gp-enter{
    
}
.gp-enter .login-btn{
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 20px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
    height: 34px;
    border-radius: 8px;
    background-color: transparent;
    transition: 200ms;
    line-height: normal;
}
/*.gp-enter .login-btn:hover{
    background-color: #ed2d1a;
    transition: 200ms;
}*/
.gp-enter .sign-btn{
    line-height: normal;
    text-decoration: none;
    padding: 0 20px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
    height: 34px;
    text-transform: uppercase;
    background-color: #ed2d1a;
    border-radius: 8px;
}


/* ------------------------------ login-link */
.login-link {
  font-weight: 700;
  text-decoration: underline;
  line-height: 30px;
  color: #000;
}
/* -------------------- */
.login-link:hover {
  text-decoration: none;
  color: #c92317;
}
/* ------------------------------ sign-link */
.sign-link {
  font-weight: 700;
  justify-content: space-between;
  text-transform: uppercase;
  align-items: center;
  position: relative;
  line-height: 30px;
  display: flex;
  color: #fff;
}
a.sign-link {
  text-decoration: none;
}
/* -------------------- */
.sign-link::after,
.sign-link::before {
/*  transition: all 0.5s;*/
  position: absolute;
  content: "";
  width: 200%;
}
.sign-link::after {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  background-color: #c92317;
  bottom: 0;
  left: 0;
  top: 0;
}
.sign-link::before {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  border: 1px solid #fff;
  bottom: 3px;
  z-index: 2;
  left: 3px;
  top: 3px;
}
/* -------------------- */
.sign-link span {
  position: relative;
  z-index: 5;
}
/* -------------------- */
.sign-link span.btn-border {
  border-bottom-left-radius: 0px;
  border: 1px solid transparent;
  border-top-left-radius: 0px;
  transform: translateY(-50%);
/*  transition: all 0.5s;*/
  position: absolute;
  height: 100%;
  width: 200%;
  opacity: 0;
  top: 50%;
  left: 0;
}
.sign-link:hover span.btn-border {
  border-color: #ffafaf;
  height: 130%;
  width: 204%;
  opacity: 1;
  left: -4%;
}
/* -------------------- */
.sign-link .icon-w .svg-fill {
  fill: #fff;
}
/* -------------------- */
.sign-link:hover {
  color: #c92317;
}
.sign-link:hover::before {
  background-color: #fff;
}
.sign-link:hover .icon-w {
  margin-left: 10px;
}
.sign-link:hover .icon-w .svg-fill {
  fill: #c92317;
}


/* ---------------------------------------- mobile navigation */
#navigation-block {
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: flex-end;
  overflow: hidden;
  position: fixed;
  display: flex;
  z-index: 1030;
  height: 100vh;
  width: 0;
  right: 0;
  top: 0;
}
#navigation-block.show {
  width: 100vw;
}
.navbar-open {
  overflow: hidden;
  height: 100vh;
}
/* ------------------------------ navigation-bg */
#navigation-bg {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
/*  transition: linear 0.5s;*/
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
/* ------------------------------ navigation */
.navigation {
  background-color: #fff;
  padding: 15px 25px 50px;
/*  transition: linear 0.3s;*/
  white-space: nowrap;
  overflow-x: hidden;
  position: absolute;
  overflow-y: auto;
  max-width: 465px;
  height: 100vh;
  z-index: 5;
  opacity: 0;
  width: 0;
}
.navigation.navbar-show {
/*  transition: linear 0.5s;*/
  width: 100vw;
  opacity: 1;
}
/* ------------------------------ nav-content */
.nav-content {
  flex-direction: column;
/*  transition: all 0.25s;*/
  position: relative;
  display: flex;
  min-height: 100%;
  opacity: 0;
  z-index: 3;
}
.navbar-show .nav-content {
/*  transition: all 0.8s;*/
  opacity: 1;
}
/*.nav-content::after {
  background: url(/assets/image/temp/guest/logo-general-bg.png) right center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -50px;
  height: 425px;
  width: 455px;
  left: -225px;
  content: "";
  z-index: -3;
}*/
/* ------------------------------ close-nav */
#close-nav.navbar-toggler {
  margin-right: -10px;
}
/* ------------------------------ navbar button */
.navbar-toggler .icon-w {
  width: 20px;
}
/* -------------------- */
.navbar-toggler .icon-w .svg-fill {
  fill: #353535;
}
.navbar-toggler:hover .icon-w .svg-fill {
  fill: #e70000;
}


/* ---------------------------------------- protection-status */
.protection-status {
  font-weight: 700;
  line-height: 1.25;
}


/* HEADER END */

/* CONTENT */
.gp-page {
/*  background-color: #fff;*/
}
/* ---------------------------------------- guest-content */
.guest-content {
  max-width: 1115px;
    padding-left: 15px;
    padding-right: 15px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto;
}


/* ---------------------------------------- guest-title */
.guest-title {
  text-transform: uppercase;
}
/* -------------------- guest-title h1 */
.guest-title h1 {
/*  font-weight: 300;*/
    font-weight: 300;
  position: relative;
  line-height: 1;
}
/* -------------------- */
.guest-title h1::after {
  background-color: #c92317;
  position: absolute;
  content: "";
  width: 200%;
  height: 2px;
  bottom: 0;
  left: 0;
}
/* -------------------- guest-title h2 */
.guest-title h2 {
/*  font-family: "pf_baseline_proregular";*/
  position: relative;
  line-height: 1;
  margin: 0 auto;
}
.guest-title h2 .arrow-icon .svg-fill {
  fill: #000000;
}
.guest-title h2 .arrow-icon {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}


/* ---------------------------------------- guest-side */
.guest-side {
  position: relative;
  height: 100%;
}
/* ------------------------------ guest-nav */
.guest-nav li:nth-child(1) a::after {
  background-color: #c92317;
}
.guest-nav li:nth-child(2) a::after {
  background-color: #c60e0e;
}
.guest-nav li:nth-child(3) a::after {
  background-color: #a61c1c;
}
.guest-nav li:nth-child(4) a::after {
  background-color: #862a2a;
}
.guest-nav li a.active::after {
  background-color: #464646;
}
/* -------------------- */
.guest-nav {
  margin-bottom: 0;
}
.guest-nav a {
  justify-content: space-between;
  text-decoration: none;
  align-items: center;
  position: relative;
  display: flex;
  line-height: 1;
  color: #fff;
}
.guest-nav a::after {
  position: absolute;
  content: "";
  width: 200%;
  bottom: 0;
  right: 0;
  top: 0;
}
/* -------------------- */
.guest-nav a span {
  position: relative;
  z-index: 3;
}
/* -------------------- */
.guest-nav a span.arrow-icon {
  transform: translateY(-50%);
  position: absolute;
  opacity: 0;
  right: 0;
  top: 50%;
}
.guest-nav a:hover span.arrow-icon,
.guest-nav a.active span.arrow-icon {
  right: 30px;
  opacity: 1;
}
/* -------------------- */
.guest-nav a span.arrow-icon .svg-fill {
  fill: #fff;
}
/* ------------------------------ guest-info */
.guest-info {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.guest-info li:last-child {
  padding-top: 25px;
}
/* ------------------------------ guest-right */
.guest-right {
  background-color: #f1f1f1;
  position: relative;
}
.guest-right::after {
  background-color: #f1f1f1;
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 99%;
  top: 0;
}


/* CONTENT END */

.btn-site{
    background-color: rgb(0, 0, 0);
    height: 40px;
     border: 1px solid #f11a28;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    color: #ffffff;
    line-height: normal;
}
.btn-site:hover{
    background: #f11a28;
}


/* FOOTER */
#gp-footer {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #4b555d;
  font-weight: 400;
  background-color: #0c2430;
}
#gp-footer .href-footer{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
    padding-bottom: 70px;
}
#gp-footer .href-footer a{
    font-size: 14px;
}
#gp-footer .href-footer a:hover {
    color: #f11a28;
}
#gp-footer .href-footer span{
    color: #f11a28;
}    
#gp-footer .footer-copyright{
    color: #707d87;
    font-size: 13px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
#gp-footer .footer-copyright a{
    margin-left: 45px;
}

/* FOOTER END */
