@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:200,300,400,500,600,700,800,900|Barlow:200,300,400,500,600,700,800,900&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* ---------- ERIC MEYER'S RESET CSS ---------- */
/* ---------- https://meyerweb.com/eric/tools/css/reset/ ---------- */

@import url(https://meyerweb.com/eric/tools/css/reset/reset.css);

body {
	background: #f4f4f4;
	color: #5a5656;
    font-family: "Barlow", sans-serif;
  line-height: 1.5;
  margin: 0;
}

a { text-decoration: none; }

h1 { font-size: 1em; }

h1, p {
	margin-bottom: 10px;
}

strong {
	font-weight: bold;
}

.uppercase { text-transform: uppercase; }

#login {
	max-width: 300px;
	margin: auto;
}

form fieldset input[type="text"],
input[type="password"], input[type="number"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	background: #e5e5e5;
	border: none;
	border-radius: 3px;
	color: #5a5656;
	font-family: inherit;
	font-size: 14px;
	height: 50px;
	outline: none;
	padding: 0px 10px;
	width: 100%;
}

fieldset{
  border: none;
  margin: 0;
  padding: 0;
}

form fieldset input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	background-color: #008dde;
	border: none;
	border-radius: 3px;
	color: #f4f4f4;
	cursor: pointer;
	font-family: inherit;
	height: 50px;
	text-transform: uppercase;
	width: 300px;
  font-weight: bold;
}

form fieldset a {
	color: #5a5656;
	font-size: 14px;
}

form fieldset a:hover { text-decoration: underline; }

.btn-round {
	background: #5a5656;
	border-radius: 50%;
	color: #f4f4f4;
	display: block;
	font-size: 12px;
	height: 50px;
	line-height: 50px;
	margin: 30px 125px;
	text-align: center;
	text-transform: uppercase;
	width: 50px;
}

.facebook-before {
	background: #0064ab;
	border-radius: 3px 0px 0px 3px;
	color: #f4f4f4;
	display: block;
	float: left;
	height: 50px;
	line-height: 50px;
	text-align: center;
	width: 50px;
}

.facebook {
	background: #0079ce;
	border: none;
	border-radius: 0px 3px 3px 0px;
	color: #f4f4f4;
	cursor: pointer;
	height: 50px;
	text-transform: uppercase;
	width: 250px;
}

.twitter-before {
	background: #189bcb;
	border-radius: 3px 0px 0px 3px;
	color: #f4f4f4;
	display: block;
	float: left;
	height: 50px;
	line-height: 50px;
	text-align: center;
	width: 50px;
}


.twitter {
	background: #1bb2e9;
	border: none;
	border-radius: 0px 3px 3px 0px;
	color: #f4f4f4;
	cursor: pointer;
	height: 50px;
	text-transform: uppercase;
	width: 250px;
}

body {
  scroll-behavior: smooth;
  line-height: 1.5;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  font-weight: bold;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: 1px solid;
  background-color: transparent;
}


.responsive-container {
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.header {
  border-bottom: 1px solid #d0d0d0;
  min-height: 60px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.header-content {
  display: flex;
  width: 100%;
  max-width: 2000px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.header-navigation {
  display: flex;
  align-items: center;
}
.header-navigation a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.link-button {
  display: flex;
  align-items: center;
  background-color: #008dde;
  border-radius: 0.375rem;
  padding: 0.5em 1.25em;
  color: #fff;
}
.link-button i {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
}

main {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-column {
  display: flex;
  flex-direction: column;
}
.grid-column > * + * {
  margin-top: 2rem;
}

.big-title{
  font-size: 23px;
}

.product {
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 400;
  transition: 0.15s ease;
  overflow: hidden;
  min-height: 397px;
  max-height: 397px;
}
.product:hover, .product:focus {
  outline: none;
  box-shadow: 0 0 0 0.125rem #0064ab;
}
.product:hover .product-content, .product:focus .product-content {
  border-color: transparent;
}

.product-image {
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  height: 76%;
}

.product-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1rem;
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-radius: 0 0 0.25rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.15s ease;
  background-color: #fff;
  height: 24%;
}

.product-action {
  color: #fff;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s ease;
  background-color: #0064ab;
  padding: 0.3rem 1.4rem;
  font-weight: 600;
}
.product-action:hover {
  background-color: #0079ce;
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.125rem;
  line-height: 1.25;
}

.product-price {
  margin-top: 0.25rem;
}

.credits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 10rem;
  color: #777;
  font-size: 0.875rem;
}
.credits a {
  display: block;
}

@media all and (max-width: 600px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .grid-column > * + * {
    margin-top: 1.5rem;
  }
}


.error{
  appearance: none;
  background-color: tomato;
  border: none;
  border-radius: 3px;
  color: #f4f4f4;
  cursor: default;
  font-family: inherit;
  width: 100%;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem;
  font-size: 14px;
  margin-bottom: 2rem;
  max-width: 300px;
}


footer{
  text-align: center;
  width: 100%;
  padding-top: 1rem;
}

.box {
	padding: 40px 60px;
	position: absolute;
	margin: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.box img {
	display: block;
	margin-top: 0px;
	margin-bottom: 10px;
	width: 50px;
}

.box h2 {
	margin: 0;
}

.box p {
	line-height: 24px;
}

.btn {
	border-radius: 5px;
  	box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.1);
	color: #fff;
	display: inline-block;
	padding: 10px 15px;
	text-decoration: none;
}

.btn.paypal {
	background-color: #0070ba;
	margin-right: 10px;
}

.btn.patreon {
	background-color: rgb(232, 91, 70);
}


/* SOCIAL PANEL CSS */
.social-panel-container {
	position: fixed;
	right: 0;
	bottom: 80px;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
	transform: translateX(-10px);
}

.social-panel {	
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
	border: 5px solid #001F61;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 169px;	
	width: 370px;
	max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
	border: 0;
	color: #97A5CE;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	top: 5px;
	right: 5px;
}

.social-panel button.close-btn:focus {
	outline: none;
}

.social-panel p {
	background-color: #001F61;
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	padding: 2px 17px 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 235px;
}

.social-panel p i {
	margin: 0 5px;
}

.social-panel p a {
	color: #FF7500;
	text-decoration: none;
}

.social-panel h4 {
	margin: 20px 0;
	color: #97A5CE;	
	font-size: 14px;	
	line-height: 18px;
	text-transform: uppercase;
}

.social-panel ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.social-panel ul li {
	margin: 0 10px;
}

.social-panel ul li a {
	border: 1px solid #DCE1F2;
	border-radius: 50%;
	color: #001F61;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	text-decoration: none;
}

.social-panel ul li a:hover {
	border-color: #FF6A00;
	box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
	border-radius: 26.5px;
	background-color: #001F61;
	border: 1px solid #001F61;
	box-shadow: 0 16px 22px -17px #03153B;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 20px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}

.floating-btn:hover {
	background-color: #ffffff;
	color: #001F61;
}

.floating-btn:focus {
	outline: none;
}

.floating-text {
	background-color: #001F61;
	border-radius: 10px 10px 0 0;
	color: #fff;
	padding: 7px 15px;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 998;
}

.floating-text a {
	color: #FF7500;
	text-decoration: none;
}

@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}

.box-wrapper{
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin: auto;
  padding: 3rem;
}

.content{
	display: flex;
	max-width: 968px;
	width: 100%;
	margin: auto;
	gap: 1rem;
}

.auto{
	margin: auto;
}

.left{
	width: 50%;
}

.left img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

iframe{
	display: block;
    margin: auto;
}

.right{
	width: 50%;
}

.right-content{
	max-width: 300px;
}

.right-content h1{
	color: #000;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 10px;
	margin-top: 0;
}

.right-content h3{
	font-size: 18px;
    color: #5a5a5a;
	font-weight: 400;
}

.right-content p{
	color: #5a5a5a;
    font-weight: 600;
    font-size: 16px;
	margin-top: 25px;
}

.right-content p span{
	font-weight: 400;
}

.secret-content {
	max-width: 968px;
	margin: auto;
}

.secret-content img{
	max-width: 500px;
	max-height: 500px;
	margin: auto;
}

.secret-content p{
	color: #5a5a5a;
    font-weight: 600;
    font-size: 16px;
	margin-top: 25px;
	text-align: center;
}

.secret-content p span{
	font-weight: 400;
}

.big-container{
	max-width: 968px;
	min-height: 85vh;
	display: block;
	margin: auto;
	display: flex;
    align-items: center;
}

.big-container .big-content {
	max-width: 700px;
	margin: auto;

}

.big-container .big-content h1{
	margin-bottom: 50px;
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
	color: #000;
}

.big-container .big-content h3{
	margin-bottom: 16px;
    font-size: 18px;
    font-style: unset;
    line-height: 40px;
	font-weight: 400;
}

.big-container .big-content a{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #008dde;
    border: none;
    border-radius: 3px;
    color: #f4f4f4;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: bold;
	font: inherit;
	user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
	display: block;
	font-weight: bold;
	font-size: 18px;
	max-width: 300px;
	padding: 8px 0;
}

.success{
    appearance: none;
    background-color: green;
    border: none;
    border-radius: 3px;
    color: #f4f4f4;
    cursor: default;
    font-family: inherit;
    width: 100%;
    font-weight: bold;
    text-align: center;
    padding: 0.5rem;
    font-size: 14px;
    margin-bottom: 2rem;
    max-width: 300px;
}


@keyframes rainbow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

