@font-face {
	font-family: 'Gotham Greek';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url('../fonts/GothamGreek-Medium.eot');
	src: url('../fonts/GothamGreek-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamGreek-Medium.woff2') format('woff2'),
		url('../fonts/GothamGreek-Medium.woff') format('woff');
  }
  :root {
	--red: #da2128;
  }
  * {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
  }
  html {
	font-size: 62.5%;
  }
  body {
	font: 500 1.6rem/2.4rem 'Gotham Greek', sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-feature-settings: "kern" 1;
			font-feature-settings: "kern" 1;
	background: var(--red);
  }
  img {
	max-width: 100%;
	height: auto;
  }
  figure {
	line-height: 0;
  }
  iframe {
	border: 0;
  }
  a {
	text-decoration: none;
	color: inherit;
  }
  header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	padding: 0 30px;
	background: var(--red);
	z-index: 1;
  }
  header div {
	width: 175px;
	text-align: right;
  }
  header div a {
	margin-left: 10px;
  }
  .newsbomb {
	width: 175px;
  }
  h1 {
	width: 210px;
	margin: 0 10px;
  }
  .share a {
	  cursor: pointer;
  }
  .main {
	position: relative;
	padding-top: 60px;
	overflow: hidden;
	height: calc(100% - 130px);
  }
  .main__card {
	position: fixed;
	top: 70px;
	left: 0;
	width: 300px;
  }
  .main__meassage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	position: fixed;
	top: 60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
			transform: translateX(-50%);
	padding: 15px;
	max-width: 340px;
	width: 100%;
	height: 120px;
	background-image: url(../images/bg.png);
	background-size: cover;
	border-radius: 0 0 5px 5px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
			box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
  }
  .main__meassage p {
	font-size: 1.6rem;
	line-height: 2rem;
	text-align: center;
	opacity: 1;
	color: #fff;
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
  }
  .main__meassage p.hide {
	opacity: 0;
  }
  .article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
  }
  .room {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	position: relative;
	-webkit-box-flex: 1;
		-ms-flex: 1 0 100%;
			flex: 1 0 100%;
	overflow: auto;
  }
  .room__cover {
	position: relative;
	width: 100%;
  }
  .room__container {
	display: inline-block;
	position: relative;
	width: 100%;
  }
  .room__cover img {
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: bottom;
	   object-position: bottom;
	width: 100%;
	height: 100%;;
  }
  .room__link {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.9);
	-webkit-box-shadow: -10px 10px 25px 0 rgba(0, 0, 0, 0.6);
			box-shadow: -10px 10px 25px 0 rgba(0, 0, 0, 0.6);
	-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
			transform: translateY(0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: -webkit-transform 0.4s;
	-o-transition: transform 0.4s;
	transition: transform 0.4s;
	transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .room__link:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	z-index: 1;
	background: -o-radial-gradient(rgba(218, 33, 40, 0.4), transparent 75%);
	background: radial-gradient(rgba(218, 33, 40, 0.4), transparent 75%);
  }
  .room__link:after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 50%;
	border: 15px solid rgba(218, 33, 40, 0.4);
  }
  .room__link:hover {
	-webkit-transform: rotate(180deg) scale(1.1);
	-ms-transform: rotate(180deg) scale(1.1);
	transform: rotate(180deg) scale(1.1);
	}
  .room__link svg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	fill: #fff;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 24px;
	}
  .room__link--dehumidifier {
	left: 44%;
	bottom: 10vw;
  }
  .room__link--tv {
	left: 72%;
	bottom: 30vw;
  }
  .room__link--drone {
	left: 25%;
	bottom: 30vw;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	}
  .room__link--vacuum {
	left: 30%;
	bottom: 7vw;
  }
  .room__link--camera {
	left: 78%;
	bottom: 18vw;
  }
  .room__link--coffee {
	left: 38%;
	bottom: 21vw;
  }
  .room__link--blender {
	left: 56%;
	bottom: 10vw;
  }
  .room__link--fryer {
	left: 70%;
	bottom: 23vw;
  }
  .room__link--mobile {
	left: 66%;
	bottom: 29vw;
  }
  .room__link--console {
	left: 75%;
	bottom: 15vw;
  }
  .room__link--gym {
	left: 6%;
	bottom: 7vw;
  }
  .room__link--treadmill {
	left: 30%;
	bottom: 3vw;
  }
  footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	height: 130px;
	padding: 0 20px;
	background: var(--red);
  }
  nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  .navigation {
	position: relative;
	width: 70px;
	height: 50px;
	background: #000;
	margin: 0 10px;
	cursor: pointer;
	outline: none;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .navigation:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 25px;
	-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
			transform-origin: top left;
	border: 1px solid #fff;
  }
  .navigation.disabled {
	opacity: 0.6;
	cursor: default;
  }
  .navigation--prev:before {
	-webkit-transform: rotate(-45deg) translate(-25%, -25%);
		-ms-transform: rotate(-45deg) translate(-25%, -25%);
			transform: rotate(-45deg) translate(-25%, -25%);
	border-right: none;
	border-bottom: none;
  }
  .navigation--next:before {
	-webkit-transform: rotate(-45deg) translate(-75%, -75%);
		-ms-transform: rotate(-45deg) translate(-75%, -75%);
			transform: rotate(-45deg) translate(-75%, -75%);
	border-top: none;
	border-left: none;
  }
  .sponsor {
	width: 160px;
	height: 100px;
  }
  .sponsor img {
	-o-object-fit: contain;
	   object-fit: contain;
	width: 100%;
	height: 100%;
  }
  .pagination {
	position: relative;
	margin: 0 10px;
	z-index: 1;
  }
  .pagination:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	border-top: 2px dashed #fff;
	z-index: -1;
	opacity: 0.4;
  }
  .pagination__bullet {
	display: inline-block;
	position: relative;
	width: 90px;
	height: 90px;
	margin: 0 40px;
	border-radius: 50%;
	border: 10px solid #bebebe;
	background: #fff;
	cursor: pointer;
	outline: none;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .pagination__bullet:first-child {
	margin-left: 0;
  }
  .pagination__bullet:last-child {
	margin-right: 0;
  }
  .pagination__bullet:hover,
  .pagination__bullet.active {
	border-color: #fff;
	background: var(--red);
  }
  .pagination__bullet svg {
	position: absolute;
	width: 65%;
	height: 65%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	fill: var(--red);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .pagination__bullet:hover svg,
  .pagination__bullet.active svg {
	fill: #fff;
  }
  
  @media (orientation: portrait) {
	.room__container {
	  width: auto;
	}
	.room__cover img {
	  -o-object-fit: unset;
		 object-fit: unset;
	  max-width: none;
	  width: auto;
	}
	.room__link--dehumidifier {
	  bottom: 15%;
	}
	.room__link--tv {
	  bottom: 60%;
	}
	.room__link--drone {
	  bottom: 53%;
	}
	.room__link--vacuum {
	  bottom: 10%;
	}
	.room__link--camera {
	  bottom: 34%;
	}
	.room__link--coffee {
	  bottom: 33%;
	}
	.room__link--blender {
	  bottom: 18%;
	}
	.room__link--fryer {
	  bottom: 43%;
	}
	.room__link--mobile {
	  bottom: 58%;
	}
	.room__link--console {
	  bottom: 27%;
	}
	.room__link--gym {
	  bottom: 14%;
	}
	.room__link--treadmill {
	  bottom: 11%;
	}
  }
  @media only screen and (max-width: 1440px) {
	.room__link {
	  width: 100px;
	  height: 100px;
	}
  }
  @media only screen and (max-width: 1200px) {
	.pagination__bullet {
	  margin: 0 20px;
	}
  }
  @media only screen and (max-width: 1030px) {
	.navigation {
	  width: 50px;
	  height: 50px;
	  margin: 15px 5px;
	}
	.pagination__bullet {
	  width: 75px;
	  height: 75px;
	  margin: 0 10px;
	}
  }
  @media only screen and (max-width: 990px) {
	.main__card {
	  display: none;
	}
  }
  @media only screen and (max-width: 900px) {
	.sponsor {
	  position: absolute;
	  bottom: 0;
	  right: 0;
	  width: 100px;
	  height: 50px;
	}
  }
  @media only screen and (max-width: 768px) {
	h1 {
	  width: 170px;
	}
	.newsbomb,
	header div {
	  width: 120px;
	}
	footer {
	  position: relative;
	  overflow: hidden;
	}
  }
  @media only screen and (max-width: 660px) {
	header {
	  padding: 0 10px;
	}
	header div a {
	  display: inline-block;
	  width: 20px;
	}
	.main {
	  height: calc(100% - 125px);
	}
	.room__link {
	  width: 80px;
	  height: 80px;
	}
	footer {
	  padding: 0;
	  height: 125px;
	}
	.navigation {
	  display: none;
	}
	.pagination__bullet {
	  width: 70px;
	  height: 70px;
	  border: 5px solid #bebebe;
	}
	nav {
	  margin-bottom: 15px;
	}
  }
  @media only screen and (max-width: 450px) {
	.pagination__bullet {
	  width: 52px;
	  height: 52px;
	  margin: 0 10px;
	}
	.main__meassage {
	  max-width: none;
	  width: 90vw;
	  height: 90px;
	  padding: 5px;
	}
	.main__meassage p {
	  font-size: 1.4rem;
	  line-height: 1.8rem;
	}
	.main {
	  height: calc(100% - 100px);
	}
	footer {
	  height: 100px;
	}
	.sponsor {
	  height: 40px;
	}
  }
  @media only screen and (max-width: 375px) {
	.pagination__bullet {
	  margin: 0 5px;
	}
	.room__link {
	  width: 60px;
	  height: 60px;
	}
	.room__link:before {
	  top: -2px;
	  left: -2px;
	  right: -2px;
	  bottom: -2px;
	}
	.room__link:after {
	  border: 10px solid rgba(218, 33, 40, 0.4);
	}
	.room__link svg {
	  padding: 15px;
	}
  }