@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@500&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

*{
border-box: box-sizing;
padding: 0;
maring: 0;
}
html {
	scroll-behavior: smooth;
	--main-c: #517a8b;
	font-family: 'Roboto Condensed', sans-serif;
}
::-moz-selection {
 	 background: #517a8b;
}
::selection {
	/*color: #000;*/
  	background: #fae782;
}
/* width */
body::-webkit-scrollbar {
  width: 8px;
  height: 9px;

}

body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 0;
  background-color: transparent;
}

body::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
  opacity: 0.2;

  /* Here */
  display: none;

  -webkit-border-radius: 0;
/*  -webkit-border-bottom-right-radius: 14px;
  -webkit-border-bottom-left-radius: 14px;*/
}

body::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #517a8b;

  -webkit-border-radius: 0px;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	background-color: #FCFCFC;
}
nav {

	width:100%;
	justify-content: center;
	align-items:center;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff; 
	transition: padding 700ms;
	z-index: 100;
}
footer {
	z-index: 999;
    position: relative;
}

.paragraph{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
}
.article{
	margin-top: 5px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 150%;  
}
p {
	line-height: 150%; 
}
.paralax {
	background-image: url("./images/wallpaper1.jpg");
	filter: brightness(50%);
	background-repeat: no-repeat;
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 570px;
	max-height: 650px;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 50% 100%, 0 90%);
}
.paralax2 {
	background-image: url("./images/wallpaper2.jpg");
	filter: brightness(50%);
	background-repeat: no-repeat;
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 570px;
	max-height: 650px;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 50% 100%, 0 90%);
}
.content {
	min-height: 400px;
	
}
.citation {
	min-height: 400px;
	width: 100%;
	word-wrap: break-word;
}
.citation p {
	line-height: 200%;
}
@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(60px);
	}
}
.ppWrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 515px;
	text-align: center;
	left: 0;
	right: 0;
	margin-bottom: 10px;
}

.avatar {
  	background-image: url('images/pp.png');
   
    width: 75px;
    height: 75px;
    background-size: cover;
    background-position: top center;
    border-radius: 50%;
    border: 5px #FCFCFC solid;
}
/*animation of buttons*/

svg #wheel {
	animation: scroll ease 2s infinite;
}
nav #status {
	top: 0;
	left: -100%;
	width: 0%;
	height: 2px;
	background: #517a8b;
	text-align: left;
	align-items: left;
	align-self: left;
	/*background: linear-gradient(90deg,transparent,#517a8b);*/
}
.ssWrapper {
	width: 100%;
	height: auto;
	margin-right: 50px;
}
.socialShare {
	display: inline;
	position: sticky;
	top: 200px;
	left: 50px;

}
.statusWrapper {
	width: 100%;
	display: flex;
	align-items: left;
}
.socialShare__box {
	width: 60px;
	height: 60px;
	border: 1px #bbbbbb solid;
	border-width: 0 1px 1px 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #bbbbbb;
	margin-left: 50px;
}

.socialShare__box:nth-child(1) {
	background-color: black;
	border: 1px #000 solid;
	color: white;
	font-size: 22px;
	font-weight: bold;
}

a span{
	position:absolute;
	display: block;
	
}
a span:nth-child(1){
		top: 0;
		left: -100%;
		width: 100%;
		height: 2px;
		background: linear-gradient(90deg,transparent,#517a8b);
}
a:hover span:nth-child(1){
	left: 100%;
	transition:1s;
}


a span:nth-child(3){
		bottom: 0;
		right: -100%;
		width: 100%;
		height: 2px;
		background: linear-gradient(270deg,transparent,#517a8b);
}
a:hover span:nth-child(3){
	right: 100%;
	transition:1s;
	transition-delay: 0.5s;
}


a span:nth-child(2){
		top: -100%;
		right: 0;
		width: 2px;
		height: 100%;
		background: linear-gradient(180deg,transparent,#517a8b);
}
a:hover span:nth-child(2){
	top: 100%;
	transition:1s;
	transition-delay: 0.25s;
}



a span:nth-child(4){
		bottom: -100%;
		left: 0;
		width: 2px;
		height: 100%;
		background: linear-gradient(360deg,transparent,#517a8b);
}
a:hover span:nth-child(4){
	bottom: 100%;
	transition:1s;
	transition-delay: 0.75s;
}


.spa {
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-decoration: none;
	font-size: 24px;
	text-align: center;
	overflow: hidden;
	transition: 0.2s;
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	margin: 8px;
	margin-top:16px;
	margin-bottom: 16px;
}

.spa:hover {
	color: #fff;
	background: #517a8b;
	box-shadow:0 0 10px #517a8b, 0 0 40px #517a8b ,0 0 80px #517a8b;
	transition-delay: 1s;
}

.nav-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items:center;
	width: 100%;
	max-width: 650px;
}
.down-arrow{
	margin: 10px;
}
#main {
	padding-left: 18%;
	padding-right: 27%;
	padding-bottom: 4%;
	padding-top: 60px;
	display: flex;
}
.deliver-main {
	padding-left: 25%;
	padding-right: 25%;
	padding-bottom: 4%;
}
.socialShare__box:hover{
	cursor: pointer;
}


.link {
	color: #000;
	text-decoration: none;
}
.link:hover {
	text-decoration: underline;
}
.link:link , .link:visited {
	color: #000;
}
.socNet {
	margin-right:  1%;
	transition: all 0.2s ease-out;
}
.socNet:hover {
	transform: scale(1.2);
}
.socNetCon {
	margin-top: 3%;
}
.scrMain:link , .scrMain:visited {
	color: #fff;
}
.down-arrow {
	display: flex;
	justify-content: center;

}
.quote{
	border-left: 1px solid;
	display: flex;
	word-wrap: wrap;
	padding: 10px;

}
.quote-container {
	background-color: #F3F3F3;
	padding: 20px;
	max-width: 500px;
	margin: 20px;
}
.buy-item {
	width: 30%;
	height: 175px;
	min-width:400px;
	margin: 20px;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	cursor: pointer;
	background-color: #fff;
	transition: all 0.4s ease;
	transition-delay: 0s; 
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border: 1px solid #e6e6e6;

}
.buy-item:hover {
	transform: scale(1.1);
}
.new {
	position: absolute;
	z-index: 2;
}
.cube-img{
	position: absolute;
	top: 20px;
	left: 20px;


	z-index: 1;

}
.stars-best {
	position: absolute;
	top: 55px;
	left: 150px;
}
.content-buy {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	top: 0;
}
.main-buy{
	margin:4% 10%;
}
.buy-items-text{
	font-size: 30px;
	position: absolute;
	top: 10px;
	right: 20px;
	margin: 3px;
}
.buy-items-span {
	position: absolute;
	top: 0px;
	right: 20px;
}
.buy-money {
	font-size: 25px;
	position: absolute;
	bottom: 10px;
	right: 160px;
	color: #48CF75;

}
.actual-price {
	width: 90px;
	height: 40px;

	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	box-sizing: border-box;	

	font-size: 20px;
	background-color: #E1FCDE;
	border-radius: 5px;
}
.cubes-name {
	font-family: sans-serif;
	font-size: 10px;
	color: grey;

	position: absolute;
	top: 45px;
	right: 50px;
}

.not-actula-price {
	position: absolute;
	color: grey;
	bottom: 35px;
	right: 185px;
	font-family: sans-serif;
}
.buy-now {
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	color: #fff;
	position: absolute;
	bottom: 10px;
	right: 20px;
	border: none;
	width:120px;
	height: 40px;
	border-radius: 5px;
	background-color: #E16E65;
	cursor: pointer;
}
.buy-now:hover {
	animation-name: buttonanim;
	animation-duration: 0.5s;
	background-color: #517a8b;
}
.cubes-link , .cubes-link:link , .cubes-link:visited {
	color: #000;

}
.cubes-link:hover {
	text-decoration: none;
}

.color-gamma {
	position: absolute;
	top: 45%;
	right: 57px;
}
.for-you-cont{
	margin: 0;
	position: relative;
	z-index: -2;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.sales-cont {
	
	margin: 0;
	position: relative;
	z-index: -2;
	justify-content: center;
	align-items: center;
}
#forYou {
	opacity: 1;
}
@keyframes buttonanim {
	from {
		background-color: #E16E65;
	}
  	to {
  		background-color: #517a8b;
  	}
}
.feedback {
	margin: 20px;
	color: #fff;
}
.lang-list {
	margin-left:  10%;
}
.video-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p-footer {
	display: flex;
	flex-wrap: wrap;
	color: #999;
	line-height: 25px;
	word-wrap: break-word	;
	overflow-wrap: break-word;
}
.h-footer {
	color: #fff;

}
.h2-footer {
	font-size: 18px;
}
.footer-top {
	padding: 80px 0;
	margin: 0 50px;
	display: flex;
	flex-wrap: wrap;
	flex-flow: row wrap;
	word-wrap: break-word;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 999;

}
.segment-one h3 {

	color: #fff;
	letter-spacing: 3px;
	margin: 10px;
}
.segment-two h2 {
	color: #fff;
	border-left:1px solid #517a8b;
	padding-left: 10px;

}
.container div {
	width: 499px;
	max-width: 600px;
	min-width: 100px;
}
.segment-two ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.segment-two ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	line-height: 40px;
}
.segment-two ul li a {
	color: #999;
	text-decoration: none;
}
.segment-three h2{
	color: #fff;
	text-transform: uppercase;
	border-left:1px solid #517a8b;
	padding-left: 10px;
}
.segment-three a img{
	background-color: #517a8b;
	padding: 5px;
	width: 30px;
	height: 30px;
	font-size: 15px;
	border-radius: 5px;
	border: none;
	display: inline-block;
}
.segment-four h2{
	color: #fff;
	text-transform: uppercase;
	border-left:1px solid #517a8b;
	padding-left: 10px;	
}
.segment-four form input[type=submit] {
	background-color: #517a8b;
	border: none;
	padding: 3px 15px;
	margin-left: -5px;
	color: #fff;
	text-transform: uppercase;
	height: 35px;
}
.segment-four form input[type=email] {
	height: 35px;
	border: none;
}

footer {
	background: #111;
	overflow: hidden;
	clip-path: polygon(47% 7%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.footer-bottom-text {
	background-color: #111;
	text-align: center;
	line-height: 75px;
	color: #fff;
}



.deliver-content h1{
	margin: 50px 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.deliver-content form div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.deliver-content form .required-info input {
	display: inline-block;
	width: 25%;
	padding: 10px;
	margin: 20px 20px;
	background-color: #FAFAFA;
	border: none;
	border-radius: 2px;
	font-size: 15px;
	border-bottom: 1px solid #517a8b; 
}
input, textarea , button select { 
    outline: none;
}
button:focus {
	outline: none;
}
.other-info input{
	display: inline-block;
	width: 25%;
	padding: 10px;
	margin: 20px 20px;
	background-color: #FAFAFA;
	border: none;
	border-radius: 2px;
	border-bottom: 1px solid #517a8b;
	font-size: 15px;
}
.country label {
	font-size: 20px;
	margin: 0 20px;
}
.country select {
	display: inline-block;
	width: 25%;
	padding: 10px;
	margin: 20px 20px;
	background-color: #FAFAFA;
	border: none;
	border-radius: 2px;
	border-bottom: 1px solid #517a8b;
	font-size: 15px;
}
.topics h2 {
	margin: 50px 20px 40px 20px;
}
.topics {
	text-align: center;
}
.topics hr{
	height: 0.1px;
}
.add-ser label {
	margin: 10px 10px;
}
.submit {
	width: 25%;
	padding: 10px;
	margin: 20px 20px;
	background-color: #FAFAFA;
	border: none;
	cursor: pointer;
	border-bottom: 1px solid #517a8b;
	border-radius: 2px;
	font-size: 15px;
}
.video-container div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.to-top {
	position: sticky; 
	bottom: 30px; 
	float: right; 
}
.img-cen {
	float: right; 
	margin: 10px;
}
.article-title{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 72px;
}
.article-time{
	font-family: 'Merriweather','Georgia',serif;
	font-size:80%;
	color: grey;
}
.dot {
	color:#517a8b; 
	display:inline-block;
}
.second-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 30px;
}
.parx {
	position: relative;
}
.parWrapper {
	width: 100%;
	min-height: 570px;
	max-height: 650px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	flex-direction: column;
	top: 0;
	left: 0;
	color: #fff;
}
.par-topic {
	font-size: 100px;
	line-height: 80px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	/*position: absolute;
	top: 50px;
	left: 200px;*/
	color: #fff;
}
h1 .mean {
	line-height: 10px;
	font-size: 15px;
	font-family: serif;
	letter-spacing: 6px;
	
	position: absolute;
	left: 5px;
	word-wrap: nowrap;
}
@media screen and (max-width: 500px) {
	body{
		overflow-x: hidden;
	}
	nav:hover{
	padding-top: 10px; 
	}
	.par-topic {
		left: 50px;
	}
	.nav-wrapper{
	width:190px;
	max-width: 200px;
	margin: 30px 0;
	}
	#main , .main-buy {
	padding-left: 6%;
    padding-right: 6%;
    padding-bottom: 5%;
	}
	.deliver-main{
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom: 5%;
	}
	.soc-wrap , .socNetCon {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.socNetCon a {
		margin: 0 7px;
	}
	.article {
		font-size: 18px;
	}
	article p {
		font-size: 18px;
	}
	.article-title{
		font-size: 36px;
	}
	.img-cen {
		display: flex;
		justify-content: center;
		margin: 0 auto;
		float: center;
		align-items: center;
		text-align: center;
		margin: 0;
	}
	footer {
		width: 100%;
	}
	.footer-wrapper , .p-footer {
		max-width: 250px;
	}
	.buy-item {
	height: 175px;
	min-width: 275px;
	max-width: 300px;
	margin: 20px;
	}
	.buy-item:hover {
		transform: scale(1);
	}
	.buy-items-text {
		font-size: 15px;
	}
	.cubes-name {
		top: 23px;
	}
	.ssWrapper {
		display: none;
	}
	.sales-cont , .for-you-cont{
		width: 100%;
	}
	.not-actula-price {
		right: 10px;
	}
	iframe {
		margin: 10px 0;
	}
	.required-info {
		flex-direction: column;
	}
	.deliver-content form .required-info input , .other-info input , .country select {
		width: 200px;
	}
	.break {
		display: block;
	}
	.chose-wrapper {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}
}
	.required-info , .other-info , .country {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	}