:root {
  --accent-color: #009687;
  --accent-border: #25372a;
  --text-color: #FFFFFF;
  --site-bg-color: #000000;
  --info-bg-color: #0e1812;
  --info-bg-dark: #060a08;
  --bright-border: #08461c;
  --highlight: yellow;
  --button-color: #cddc39;
  --button-color2: #e40036;
  --button-text: #000000;
  --button-color-hover: #cddc39;
  --button-text-hover: #000000;
}
* {
    box-sizing: border-box;
}
blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
    margin: 0;
    padding: 0;
}
html {
  background-color: var(--site-bg-color);
  font-size: 14px;
  min-width: auto;
}
body {
  color: var(--text-color);
  font-family: 'IBM Plex Sans', sans-serif;
}
.input, input {
  font-family: 'IBM Plex Sans', sans-serif;
}
.clickable:hover {
  cursor: pointer;
}
main-free {
  display: block;
  min-height: 300px;
  margin: 0 auto;
  padding: 10px 10px 0px 10px;
  text-align: center;
  position:relative;
}
content-min {
  display: block;
  padding:10px;
  max-width:1100px;
  margin: 0 auto;
  text-align:center;
  position:relative;
}
main-free > * {
  max-width: 1100px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: var(--text-color);
}
.center {
  text-align: center !important;
}
.button {
  color: var(--button-text);
  text-transform: uppercase;
  border-radius: 5px;
  background-color: var(--button-color);
  padding: 8px 16px;
  line-height: 26px;
  font-weight: bold;
  display: inline-block;
}
.button:hover {
  color: var(--button-text-hover);
  background-color: var(--button-color-hover);
}

.button-arrow {
  min-width: 200px;
  position: relative;
  line-height: 45px;
  padding-right: 42px;
  height: 60px;
}
.button-arrow::after {
  content: '';
  position: absolute;
  background-image: url('/img/arrow_white_right.png') !important;
  width: 40px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
}
.button-arrow:hover::after {
  background-image: url('/img/arrow_black_right.png') !important;
}
nav#menu-top-nav li#menu-cta a, nav#menu-top-nav li#mobile-menu-cta a {
  background-color: var(--button-color);
  color: var(--button-text);
}
nav#menu-top-nav li a {
  padding: 6px 16px 0px 16px;
}

logo img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#free_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /*border-bottom: 1px solid var(--accent-border);*/
  padding-bottom: 10px;
  /* margin-bottom: 10px; removed while mobile banner is shown */

}
#free_menu_cta {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--accent-border);
  padding-left: 20px;
}
/* #free_menu_cta > * {
  margin: 0 10px;
} */
#free_menu_cta > div {
  border-right: 1px solid var(--accent-border);
  padding: 10px 20px;
}
#free_menu ul#menu-main {
  list-style-type: none;
  display:block;
  margin: 0;
  padding: 0;
  z-index: 100;
  position: relative;
  line-height: 23px;
  white-space: nowrap;
  font-weight: 700;
}
ul#menu-main li {
  text-align: center;
  font-size: 14px;
  float:left;
}
ul#menu-main li a.menu-main-item {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  text-decoration: none;
  margin: 0;
  line-height: 50px;
}
ul#menu-main li a.menu-main-item:hover {
  /* background-color: #231f20; */
  color: var(--accent-color);
}
#free_menu #mobile-menu {
  display:none;
  align-items: center;
  border-left: 1px solid var(--accent-border);
  padding-left: 20px;
}

.mobile_nav_x {
  background-color: transparent;
}
.mobile_nav {
  display: inline-block;
  position: relative;
  float: right;
  overflow: hidden;
  margin-right: 10px;
  margin-top: 3px;
  width: 24px;
  height: 24px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background .3s;
}




.mobile_nav {
	display: inline-block;
	position: relative;
	float: right;
	overflow: hidden;
	margin-right: 10px;
	margin-top: 3px;
	width: 24px;
	height: 24px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}
.mobile_nav:focus {
	outline: none;
}
.mobile_nav span {
	display: block;
	position: absolute;
	top: 10px;
	left: 0px;
	right: 0px;
	height: 3px;
	background: white;
}
.mobile_nav span::before,
.mobile_nav span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	content: "";
}
.mobile_nav span::before {
	top: -8px;
}
.mobile_nav span::after {
	bottom: -8px;
}
.mobile_nav_x {
	margin-left: 20px;
}
.mobile_nav_x span {
	transition: background 0s 0.3s;
}
.mobile_nav_x span::before,
.mobile_nav_x span::after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}
.mobile_nav_x span::before {
	transition-property: top, transform;
}
.mobile_nav_x span::after {
	transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.mobile_nav_x.is-active {
	background-color: rgba(0,0,0,0);
}
.mobile_nav_x.is-active span {
	background: none;
}
.mobile_nav_x.is-active span::before {
	top: 0;
	transform: rotate(45deg);
}
.mobile_nav_x.is-active span::after {
	bottom: 0;
	transform: rotate(-45deg);
}
.mobile_nav_x.is-active span::before,
.mobile_nav_x.is-active span::after {
	transition-delay: 0s, 0.3s;
}


.alert-notice {
  padding: 10px;
  background-color: var(--accent-color);
  color: black;
  text-align: center;
}
.alert-notice span {
  font-weight: bold;
}
.alert-notice a{
  font-weight: bold;
  color: white;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  color: var(--text-color);
  font-size: 16px;
  border: none;
  outline: none;
  padding: 14px 30px 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  position: relative;
  text-align: left;

  min-width:100px;
}

/*style the arrow inside the select element:*/
.dropdown .dropbtn:after {
  position: absolute;
  content: "";
  top: 15px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAB7SURBVDhPYxgFaGC6RgLDTLUAKA8TgOTQ5JmgNAQw/Z/PwMC4HqgoHiqCACDDQXJgjACoBvxjTIQwGBegGALSDDYcBP4DDUIARiiNAOiK/zExovDTby2EsCEA0wAQQDEEBjA1gwB2A0AA3SVYNBMGkFDHDNBRQE3AwAAAh3Ypq2qR+f8AAAAASUVORK5CYII=') no-repeat right transparent;
}
.dropdown:hover .dropbtn {
  color: var(--accent-color);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--site-bg-color);
  min-width: 100px;
  box-shadow: 0px 0px 5px 0px var(--accent-border);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: var(--accent-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}

#login_link {
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: bold;
  padding: 18px 10px;
  margin-right: 10px;
}
#login_link:hover {
  color: var(--accent-color);
}
select::-ms-expand {
  display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
select{
  width: 70px;
  color: var(--text-color);
  border: 0;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAB7SURBVDhPYxgFaGC6RgLDTLUAKA8TgOTQ5JmgNAQw/Z/PwMC4HqgoHiqCACDDQXJgjACoBvxjTIQwGBegGALSDDYcBP4DDUIARiiNAOiK/zExovDTby2EsCEA0wAQQDEEBjA1gwB2A0AA3SVYNBMGkFDHDNBRQE3AwAAAh3Ypq2qR+f8AAAAASUVORK5CYII=') no-repeat right transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position-x: right;
  outline: none;
  outline-offset: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
option {
  background-color: var(--site-bg-color);
}

.title {
  font-size: 50px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: normal;
  text-align: left;
  text-transform: uppercase;
}
.smltitle {
  font-size: 34px !important;
}
.title strong {
  font-weight: 600;
}
.subtitle {
  font-size: 50px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1em;
  letter-spacing: normal;
  text-align: left;
  color: var(--accent-color);
}
.text {
  height: 80px;
  flex-grow: 0;
  margin: 24px 0 76px;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: 0.3px;
  text-align: left;
}
.smltext {
  font-size: 16px;
}
#cta_text {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--accent-color);
  min-width: 120px;
  max-width: auto;
}
#hero_banner {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
}
#free_hero {
  display: flex;
  flex-direction: row;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size:100%;
  margin: 0 auto;
}
#hero_container {
  max-width: 1100px;
  padding: 40px 0px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#vertical_layout_speedmeter {
  display: none;
}
#hero_speedmeter img {
  padding-bottom: 40px;
  margin-top: -60px;
  margin-right: -100px;
}


#free_hero #cta {
  text-align: left;
}
/* #free_hero .button {
  float: left;
} */
#free_hero .text {
  height: 80px;
  flex-grow: 0;
  margin: 20px 0 50px;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: 0.3px;
  text-align: left;
  max-width: 500px;
}

#free_hero #download_links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#free_hero #download_links > div {
  padding: 5px;
}
#free_hero #download_links img {
  height: 40px;
}

#cpe {
  padding: 0px;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  justify-content: center;
  display: flex;
}
#cpe_box {
  display: flex;
  margin: 0px auto;
  max-width: 1200px;
  padding-top: 60px;
  padding-bottom: 60px;
}
#cpe_router {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}
#cpe_router img {
  width: 500px;
}
#cpe_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  min-width: 500px;
}
#cpe_title {
  font-size: 24px;
  text-transform: uppercase;
  color:var(--accent-color);
  font-weight: bold;
  margin-bottom: 20px;
}
#cpe_text {
  font-size: 15px;
  text-align: center;
}
#cpe_text a {
  text-transform: uppercase;
  color:var(--accent-color);
  text-decoration: underline;
}
#cpe_consoles {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin: 20px auto 60px auto;
}
#cpe_consoles img {
  height: 30px;
}
#cpe_buynow {
  margin-top: 25px;
  background-color: var(--accent-color);
  color: black;
}
#black_friday_box {
  border: 3px solid white;
  border-radius: 5px;
  text-align: center;
  padding: 30px 40px;
  line-height: 25px;
  box-shadow: rgba(42, 239, 87, 0.8) 0px 0px 6px 2px,
  inset rgba(42, 239, 87, 0.8) 0px 0px 6px 2px;
}
#black_friday_title {
  font-size: 25px;
  color:white;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: rgba(42, 239, 87) 0px 0px 10px
}

#free_gpn {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px auto;
}

#promotion {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px auto;
}

#free_gpn .subtitle {
  text-align: center;
}

#free_video {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px auto;
}

#gpn_map {
  margin-top: -20px;
  width: 100%;
}
#free_gpn .text{
  margin: 14px 10px 0 10px;
  max-width: 530px;
  text-align: center;
  height: auto;
}
#info_blocks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  flex-wrap: wrap;
}
.info-block {
  padding:50px;
  max-width: 345px;
  text-align: center;
  border: 1px solid var(--accent-color);
  margin: 10px;
}
.info-block-header {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 0;
  text-align: center;
  width: 200px;
  margin: 0 auto;
  height: 148px;
  justify-content: flex-end;
}
.info-block-header img {
  width: 60px;
  margin: 10px auto;
}
.info-block-text {
  padding-top: 0px;
  font-weight: bold;
}
#free_partners {
  margin: 30px auto 70px auto;
  text-align:center;
}
#partner_images {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  margin: 20px auto;
  max-width: 800px;
}
#partner_images img {
  max-height: 40px;
  margin: 15px;
}
#free_download {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius: 10px;
  padding: 30px 0;
  background-image: url("/img/free_download_bg.png");
  background-repeat: no-repeat;
  background-size: center;
  height: 256px;
  max-height: 256px;
  max-width: 1100px;
  margin: 0 auto;
}
#free_download .title, #free_games .title{
  text-transform: uppercase;
}
#free_download .text {
  margin-bottom: 0px;
}
#free_download > * {
  flex-grow: 0;
  text-align: center;
}
#free_games {
  display: flex;
  flex-direction: column;
  padding: 150px 0;
  position:relative;
  background-image: url('/img/bg_games_layer.png');
  background-size: cover;
}
#free_games .text {
  margin: 10px auto;
}
#free_games > * {
  text-align: center;
}
#game_images {
  max-width: 1100px;
  margin: 0 auto;
}
#game_images img {
  max-height: 40px;
  padding: 4px 15px;
}
#games_download {
  margin: 30px auto;
}
#free_reviews {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  margin: 100px auto;
}
#free_reviews > div:first-child {
  max-width: 800px;
  margin: 30px auto;
}
#free_reviews #header .subtitle {
  text-align: center;
}
#free_reviews #header .text {
  text-align: center;
  margin-bottom: 0px;
}
.cust-reviews {
  display: flex;
  flex-direction: column;
}
.review-avatar {
  border-radius: 50%;
  width: 80px;
  margin: -60px auto 20px auto;
}
#review_blocks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 40px 0;
  flex-wrap: wrap;
}
#review_blocks_sml {
  display: none;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 10px 0;
}
#review_blocks_sml .review-block {
  background-color: #111;
  padding-bottom: 30px;
}
#review_blocks_sml .review {
  padding-top: 30px;
}
#slider_dots {
  display: none;
}
.review-block {
  width: 345px;
  margin: 10px;
}
.review {
  font-size: 16px;
  padding: 70px 35px;
  background-color: #111;
  margin-bottom: 20px;
}
.author {
  text-transform: uppercase;
}
.country {
  text-transform: capitalize;
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

#reviews_download {
  margin: 30px auto;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

#free_getstarted {
  margin: 0 auto;
  background-image: url('/img/bg_connection_layer.png');
  background-size: cover;

}
#free_getstarted > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
#free_getstarted .text {
  margin-bottom: 20px;
}
#getstarted_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33%;
}
#getstarted_img {
  padding: 100px 0;
}

#free_blog {
  margin: 30px auto;
  text-align:center;
}
#free_blog .subtitle {
    text-align: center;
}

#blog_blocks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.blog-block {
  padding:10px;
  max-width: 345px;
  text-align: center;
  margin: 10px;
}
.blog-block-header {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 0;
  text-align: center;
  width: 300px;
  margin: 0 auto;
  justify-content: flex-start;
}
.blog-block-header img {
  width: 300px;
  margin: 10px auto;
}
.blog-block-text {
  padding-top: 0px;
  font-weight: bold;
}
#rocket_row {
  background-image: url("/img/free_rocket_path.svg");
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: contain;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#rocket_row div:first-child {
  padding-left: 60px;
  display: inherit;
}
#rocket_row div:first-child img{
  text-align: center;
}
#free_footer {
  display: flex;
  flex-direction: row;
  padding: 30px 0;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}
#free_footer > div div:first-child {
  font-weight: bold;
  margin-right: 60px;
  width: 450px;
}
#free_footer #social_blocks {
  padding-top: 10px;
  min-width: 200px;
  text-align: right;
}
#free_footer #footer_copyright {
  padding-bottom: 10px;
}
#free_footer #footer_trademark {
  line-height: 22px;
}


@media screen and (max-width: 1150px) {
  #info_blocks, #free_footer, #free_getstarted, #free_gpn,
  #free_hero, #free_reviews, #free_games > *  {
    padding-left: 20px;
    padding-right: 20px;
  }
  .info-block {
    padding: 20px;
    max-width: 300px;
  }
  .info-block-text {
    padding-bottom: 10px;
  }
  #getstarted_text {
    width: auto;
    text-align: center;
  }
  #free_getstarted > div {
    justify-content: center;
    padding-top: 50px;
  }
  #free_getstarted .subtitle {
    text-align: center;
  }
  #free_getstarted .text {
    height: auto;
    text-align: center;
  }
  #getstarted_img {
    padding: 30px 0;
  }
  #review_blocks {
    display: none;
  }
  #review_blocks_sml {
    display: flex;
  }
  #slider_dots {
    display: block;
  }


}
@media screen and (max-width: 930px) {
  #hero_container {
    padding-top: 40px;
  }
  .subtitle {
    font-size: 34px;
  }
  #cta_action {
    font-size: 20px;
  }
  #free_hero .text {
    max-width: 580px;
  }
  #cpe_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 860px) {
  #free_hero .text, #free_hero .subtitle, #hero_action {
    text-align: center;
  }
  #cpe_box {
    flex-direction: column;
  }
  #cpe_info {
    padding-right: 0;
  }
  #cpe_router img {
    width: 350px;
    margin: 0 auto;
  }
  #free_games {
    padding: 100px 0;
  }
  #free_reviews {
    margin: 50px 0;
  }
  #free_reviews > div:first-child {
    margin: unset;
  }
  #hero_speedmeter {
    display: none;
  }
  #vertical_layout_speedmeter {
    display: block;
    margin: 20px auto 20px auto;
  }
  #hero_cta {
    margin-left: -30px;
  }
  #free_hero .text {
    margin-bottom: 0;
  }
  #free_hero #download_links {
    margin: 20px auto 0 auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  #partner_images img {
    max-height: 30px;
  }
}
@media screen and (max-width: 650px) {
  #free_games {
    padding: 50px 0;
  }
  #free_footer {
    text-align: center;
    flex-direction: column;
  }
  #free_footer > div div:first-child {
    margin-right: 0;
    width: auto;
  }
  #free_footer #social_blocks {
    text-align: center;;
  }
  #cpe_box {
    background-size: cover;
  }
}
@media screen and (max-width: 500px) {
  #cpe_title, #black_friday_title {
    font-size: 15px;
  }
  #cpe_info {
    min-width:auto;
  }
  #cpe_router img {
    width: 250px;
  }
  #cpe_text, #cpe_router {
    font-size: 12px;
  }
  #black_friday_box {
    margin: auto 20px;
    font-size: 12px;
  }
  #cpe_consoles {
    margin: 20px auto 40px auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  #partner_images img {
    max-height: 20px;
    margin: 10px;
  }
  .text {
    font-size: 14px;
  }
  .smltitle {
    font-size: 28px !important;
  }
  #gpn_map {
    margin-top: 0;
  }
  #review_blocks {
    margin: unset;
  }
  #free_hero .text {
    font-size: 14px;
  }
}
