@charset "utf-8";
/* CSS Document */

/* scroll */


.slideRight {
    animation-name: slideRight;
    animation-duration: 0.9s;   
    animation-timing-function: ease-in-out; 
    visibility: visible !important; 
}

.slideLeft {
    animation-name: slideLeft;
    animation-duration: 0.9s;   
    animation-timing-function: ease-in-out; 
    visibility: visible !important; 
}

.slideTop {
    animation-name: slideTop;
    animation-duration: 0.9s;   
    animation-timing-function: ease-in-out; 
    visibility: visible !important; 
}

@keyframes slideRight {

    0% {
        transform: translateX(-50%);
		opacity:0;
    }
    65%{
        transform: translateX(4%);
    }
    100%{
        transform: translateX(0%);
		opacity:1;
    }
}

@keyframes slideLeft {

    0% {
        transform: translateX(50%);
		opacity:0;
    }
    65%{
        transform: translateX(-4%);
		
    }
    100%{
        transform: translateX(0%);
		opacity:1;
    }

}

@keyframes slideTop {

    0% {
        transform: translateY(-5%);
		opacity:0;
    }
	65%{
        transform: translateY(1%);
		
    }
    100%{
        transform: translateY(0%);
		opacity:1;
    }
}

/* end scroll */

@keyframes header {
    from {top: -75px;}
    to {top: 0px;}
}

@keyframes effect-img {
    from {bottom: 25px;opacity:.9; transform:scale(1.2,1.2)}
    to {bottom: -20px;opacity:0; transform:scale(.8,.8)}
}

@keyframes text {
	0% {bottom: 50px;
			opacity:0;}
    30% {bottom: 50px;
			opacity:0;}
    100% {bottom: 0px;
	opacity:1;}
}

a {
    text-decoration: none;
    color: #000;
	display:block;
}

h1 {
	font-size:45px;
	text-align:center;
}

h2 {
	font-size:35px;
}

h3 {
	font-size:45px;
	text-align:center;
	margin-bottom:60px;
}

body, html {
	width:100%;
}

* {
	box-sizing:border-box;
	margin:0;
	padding:0;
	font-family: HPFont;
	font-weight:100;
}


Body {
	margin: 0;
	padding: 0;
}

.text-bold {
	font-weight:bold;
}

.wrapper-header {
	display:flex;
	height: 75px;
	width: 1000px;
	margin: 0 auto;
	padding:0 20px;
	z-index:2;
	justify-content:space-between;
}

.left-logo {
	height:75px;
	width:190px;
	background-image:url(images/jarcomputers-logo.svg);
	background-repeat:no-repeat;
	background-size:cover;
}

.right-logo {
	height:75px;
	width:50px;
	background-image:url(images/hp-logo.svg);
	background-repeat:no-repeat;
	background-size:cover;
}

header {
	height: 75px;
	background-color:#fff;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color:#B9C9D4;
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index:2;
	animation-name: header;
    animation-duration: 1s;    
    animation-fill-mode: forwards;
}

.container-main-image {
	position:relative;
	display:flex;
	justify-content:center;
	height:auto;
	width:100%;
	overflow: hidden;
}

.background-img {
	height:auto;
	width:1920px;
	margin: 0 auto;
}

.elitebook-img-container {
	position:absolute;
	display:flex;
	flex-direction:column;
	align-items:center;
	bottom:0;
	margin:0 auto;
	width:100%;
	height:auto;
}

.elitebook-text {
	position:relative;
	animation-name: text;
    animation-duration: 1.5s;    
    animation-fill-mode: forwards;
}
	
.white {
	color:#fff;
}

.effect-img {
	position:relative;
	display:block;
	width:1700px;
	height:auto;
	animation-name: effect-img;
    animation-duration: 6s;    
    animation-fill-mode: forwards;
}

.intel-container-background {
	background-color:#F0F4F7;
	padding:40px 0;
	display:flex;
	flex-direction:column;
	text-align:center;
	justify-content:center;
	margin-bottom:70px;
}


.intel-container-background img {
	height:123px;
	width:226px;
	margin:0 auto;
	animation-name: text;
    animation-duration: 1.5s;    
    animation-fill-mode: forwards;
}

.intel {
	display:flex;
	flex-direction:column;
	justify-content:center;
	width:50%;
}

.intel-text {
	position:relative;
	animation-name: text;
    animation-duration: 1.5s;    
    animation-fill-mode: forwards;
}

.video {
	width:1000px;
	height:auto;
	margin:0 auto;
	margin-bottom:70px;
}

video {
	width:90%;
	height:auto;
	display:block;
	margin:0 auto;
}

.performance {
	background-color:#20303C;
	width:100%;
	height:auto;
}

section {
	width:100%;
	margin:0 auto;
	padding:0 5px;
}

article {
	display:flex;
	flex-flow: row wrap;
	width:100%;
	margin: auto;
	justify-content:space-between;
	overflow: hidden;
}

.article-box01,
.article-box02,
.article-box03 {
	visibility:hidden;
	display:flex;
	flex-flow: row wrap;
	justify-content:center;
	width:33.33%;
	height:auto;
	padding:2%;
	margin-bottom: 40px;
	transition: box-shadow .6s;
	transition: transform .2s;
}

.article-box01 {
	background-color:#F8FAFC;
}
.article-box02 {
	background-color:#F0F4F7;
}
.article-box03 {
	background-color:#F8FAFC;
}

.article-box01:hover,
.article-box02:hover,
.article-box03:hover {
	box-shadow: 0px 0px 7px rgba(0,0,0,.1);
	transform:scale(1.03,1.03);
}

.text {
	width:100%;
	height:1000px;
	visibility:hidden;
}
.img-laptop {
	width:100%;
	height:auto;
	background-size:contain;
	background-position:top;
	background-repeat:no-repeat;
}

.text-box  {
	margin-bottom:20px;
}

.text-box p {
	font-size:20px;
	z-index:1;
	text-align:center;
}
.header-text {
	margin-bottom:10px;
	font-size:24px;
	font-weight:bold;
	text-align:center;
}

.bold {
	font-weight:bold;
}

.decoration {
	color:#0C96D4;
	font-weight:bold;
}

.price-box {
	display:flex;
	width:100%;
	align-items:center;
	justify-content:space-between;
}

.price-box a{
	width:55%;
}

.text-box {
	text-align:left;
}

.price {
	font-size:40px;
	font-weight:bold;
	color:#FF0004;
}

.button {
  display: block;
  border-radius: 2px;
  border:solid 2px #0C96D4;
  color: #fff;
  background-color:#0C96D4;
  text-align: center;
  font-size: 25px;
  padding: 5px 20px;
  width: 100%;
  transition: all 0.4s;
  cursor: pointer;
  margin: 5px;
  vertical-align:middle;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.4s;
}

.button:hover span {
  padding-right: 15px;
  color:#fff;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.section-container {
	margin:0 auto;
	width:1000px;
	margin-bottom:80px;
}

.button-back {
  display: block;
  border-radius: 2px;
  border:solid 2px #2C4390;
  color: #fff;
  background-color:#2C4390;
  text-align: center;
  font-size: 25px;
  padding: 5px;
  width: 100%;
  transition: all 0.4s;
  cursor: pointer;
  margin: 5px;
}

.button-back span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}

.button-back span:before {
  content: '\00ab';
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.4s;
}

.button-back:hover span {
  padding-left: 15px;
  color:#fff;
}

.button-back:hover span:before {
  opacity: 1;
  left: 0;
}

.button-back:hover {
  background-color:#2C4390;
  border:2px solid #2C4390;
}




@font-face {
   font-family: HPFont;
   src: url(fonts/cyrillic-light-ttf.woff);
   font-weight: normal;
}

@font-face {
   font-family: HPFont;
   src:url(fonts/cyrillic-regular-ttf.woff);
   font-weight: bold;
}

@media screen and (max-width: 1000px) {
  	.wrapper-header,
	.intel-container,
	section,
	article,
	.video	 {
		width: auto;
  	}
	.background-img {
		width:1200px;
		height:421px;
	}
	.effect-img {
		width:1200px;
		height:	421px;
	}
	.article-box {
		width:400px;
		height:700px;
	}
	.article-box:last-child {
		display:none;
	}
	h1 {
		font-size:30px;
	}
	h2 {
		font-size:25px;	
	}
	.section-container {
		width: auto;
	}
	.price {
		font-size:30px;
		}
	.text-box p {
		font-size:15px;
	}
	.header-text {
		font-size:20px;
	}
	
}


@media screen and (max-width: 850px) {
  	.wrapper-header,
	.intel-container,
	section,
	article	 {
		width: auto;
  	}	
	.intel {
		width:100%;
	}
	.intel-container-background {
		background-image:none;
	}
  	article {
		flex-direction:column;
	}

	.article-box01,
	.article-box02,
	.article-box03 {
		width:95%;
		height:auto;
	}
	h1 {
		font-size:30px;
	}
	
	.price {
		font-size:40px;
		}
	.text-box p {
		font-size:20px;
	}
	.header-text {
		font-size:25px;
	}
	.button-back {
    	width: 95%;
	}
}

@media screen and (max-width: 600px) {
  	h1 {
		font-size:30px;
	}
	h2 {
		font-size:24px;
	}
	h3 {
		font-size:30px;
	}

	.elitebook-img-container {
		width:480px ;
		margin:0 auto;
	}
	.background-img {
		width:1000px;
		height:351px;
	}
	.effect-img {
		width:1000px;
		height:	351px;
	}
	article {
		align-items: center;
	}

}


@media screen and (max-width: 360px) {
  	.wrapper-header,
	.intel-container,
	section,
	article	 {
		width: auto;
  	}
  	article {
	  justify-content:space-around;
	  align-items:center;
	}
	.article-box {
		width:310px;
		height:600px;
	}
	h1 {
		font-size:25px;
	}
	h2 {
		font-size:20px;
	}
	
	h3 {
		margin-bottom:10px;
	}
	
	.price {
		font-size:30px;
		}
	.text-box p {
		font-size:20px;
	}
	.header-text {
		font-size:20px;
	}
	.button {
		font-size:25px;
	}
	.intel-container-background {
		margin-bottom:10px;
	}

	
}


