/**
  Main colors history:
  * 000 + 5479f7
  * 000 + 3060a0
*/

* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  background: #fff;
  /* background: linear-gradient(180deg, rgba(225, 240, 255, 1) 0%, rgba(255, 255, 255, 1) 10%); */
}

/**
 * Misc
 */
.phone-betronate:before,
.email-betronate:before,
.email-info:before,
.email-support:before {
  display: inline;
  content: '';
}

.phone-betronate:before {
  content: '+000';
}

.email-betronate:before {
  content: 'info@betronate.com';
}

.email-info:before {
  content: 'info@affiliness.com';
}

.email-support:before {
  content: 'support@affiliness.com';
}

.full-name:before {
  content: 'Vitali Lutz';
}

.row {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
}

.row > .column {
  flex: 0 0 400px;
  min-width: 50%;
}

.row > .column.align-right {
  margin-left: auto;
}



/**
 * Header
 */
header {
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  align-items: center;
  background-color: rgba(255, 255, 255, .95);
}

header .logo {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
}

header .logo svg {
  display: inline-block;
  width: 100%;
  height: auto;
}

header nav {
  font-size: 95%;
  font-weight: 600;
  line-height: normal;
  color: inherit;
  margin-left: auto;
}

header nav ul {
  display: flex;
  align-items: center;
}

header nav ul,
header nav ul li {
  list-style: none;
}

header nav ul li,
header nav ul li a {
  display: flex;
  align-items: center;
}

header nav ul li a.active {
  color: #3060a0;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li svg,
header nav ul li a svg {
  margin-right: 5px;
} 

header nav ul li a {
  color: #000;
  text-decoration: none;
}

header nav ul li a:active {
  color: #3060a0;
}

header nav ul li.language {
  position: relative;
  width: 30px;
  user-select: none;
}

header nav ul li.language > * {
  display: block;
  position: absolute;
  width: 30px;
  height: auto;
}

header nav ul li.language > * img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50px;
}

header nav ul li.language > *:last-child {
  display: none;
  top: 20px;
}

header nav ul li.language.active > *:first-child {
  opacity: .5;
}

header nav ul li.language.active > *:last-child {
  display: block;
}

header nav ul li.login a,
header nav ul li.register a {
  font-size: 95%;
  font-weight: bold;
  padding: 6px;
  padding-left: 14px;
  padding-right: 14px;
  border: 2px solid #5cb377;
  background-color: #fff;
  color: #5cb377;
  fill: #5cb377;
  border-radius: 25px;
}

header nav ul li.register a {
  border: 2px solid #3060a0;
  color: #3060a0;
  fill: #3060a0;
  padding-top: 4px;
  padding-bottom: 4px;
}

header nav ul li.register a svg {
  margin-right: 0;
}

header nav ul li.login a:active,
header nav ul li.register a:active {
  border: 2px solid #000;
  color: #000;
  fill: #000;
}

/**
 * Main
 */
main {
  text-align: center;
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

main > .margin-top {
  margin-top: 25px;
}

main > .margin-left {
  margin-left: 25px;
}

main > .margin-right {
  margin-right: 25px;
}

main > .margin-bottom {
  margin-bottom: 25px;
}

main > .padding-top {
  padding-top: 25px;
}

main > .padding-left {
  padding-left: 25px;
}

main > .padding-right {
  padding-right: 25px;
}

main > .padding-bottom {
  padding-bottom: 25px;
}

/**
 * Section
 */
main section {
  padding: 50px;
}

main section a {
  text-decoration: underline;
  color: #3060a0;
}

main section a:hover {
  text-decoration: none;
}

main section.fixed-width {
  display: inline-block;
  width: 100%;
  max-width: 1280px;
  text-align: left;
}

main section.hero {
  display: inline-flex;
  align-items: center;
}

main section.hero .body {
  width: 60%;
  margin-right: 50px;
}

main section.hero .body h1 {
  font-size: 40px;
  line-height: 50px;
  color: inherit;
  margin-bottom: 15px;
}

main section.hero .body h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 30px;
  color: inherit;
  margin-bottom: 20px;
}

main section.hero .body .buttons {
  display: block;
  margin-bottom: 5px;
}

main section.hero .body .buttons > * {
  margin-right: 15px;
  margin-bottom: 15px;
}

main section.hero .body .buttons a.button {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
  border: 2px solid #3060a0;
  background-color: #3060a0;
  color: #fff;
  fill: #fff;
  text-decoration: none;
  transition: all 250ms;
}

main section.hero .body .buttons a.button:active {
  background-color: #fff;
  color: #3060a0;
  fill: #3060a0;
}

main section.hero .body .buttons a.button.white {
  background-color: #fff;
  color: #3060a0;
  fill: #3060a0;
}

main section.hero .body .buttons a.button.white:active {
  background-color: #3060a0;
  color: #fff;
  fill: #fff;
}

main section.hero figure {
  width: 40%;
}

main section.hero figure img {
  display: block;
  width: 100%;
  height: auto;
}

main section.trust {
  opacity: .25;
}

main section.trust img {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  height: auto;
}

main section .padding-left {
  padding-left: 20%;
}

main section .padding-right {
  padding-right: 20%;
}

main section > div {
  display: inline-block;
  width: 100%;
}

main section > h2,
main section > div > h2 {
  display: block;
  font-size: 36px;
  line-height: 46px;
  color: inherit;
  margin-bottom: 25px;
}

main section > h3,
main section > div > h3 {
  display: block;
  font-size: 125%;
  font-weight: normal;
  line-height: 150%;
  margin-bottom: 25px;
}

main section.background {
  color: var(--color, inherit);
  background-color: var(--background-color, #f5f5f5);
}

main section.background .button {
  font-size: 18px !important;
  line-height: 18px !important;
  padding: 15px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  border-radius: 50px !important;
}

main section.background .button.white {
  color: #fff !important;
  fill: #fff !important;
  border: 3px solid #fff !important;
  background-color: inherit !important;
}

main section.gradient {
  background: rgb(245,245,245);
  background: linear-gradient(180deg, rgba(245,245,245,1) 25%, rgba(255,255,255,1) 100%);
}

/**
 * Article
 */
main article {
  display: inline-block;
  width: 100%;
  max-width: 1280px;
  text-align: left;
  padding: 50px;
}

main article > * {
  display: block;
  margin-bottom: 15px;
}

main article > *:last-child {
  margin-bottom: 0;
}

main article table th {
  background-color: #eee;
}

main article table th,
main article table td {
  padding: 10px;
}

main article h1,
main article h2,
main article h3,
main article h4,
main article h5,
main article h6 {
  font-weight: bold;
  color: #000;
}

main article h1 {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 25px;
}

main article h2 {
  font-size: 26px;
  line-height: 36px;
}

main article h3 {
  font-size: 20px;
  line-height: 30px;
}

main article h4 {
  font-size: 18px;
  line-height: 28px;
}

main article h5 {
  font-size: 16px;
  line-height: 26px;
}

main article h6 {
  font-size: 16px;
  line-height: 26px;
}

main article ol,
main article ul {
  margin-left: 35px;
  margin-bottom: 20px;
}

main article ol li,
main article ul li {
  margin-bottom: 5px;
}

main article code {
  display: block;
  padding: 15px;
  border-radius: 5px;
  background-color: #eee;
}

main article a {
  color: #3060a0;
  text-decoration: underline;
}

main article a:hover {
  text-decoration: none;
}

/**
 * Footer
 */
footer {
  position: relative;
  font-size: 90%;
  color: #aaa;
  line-height: normal;
  padding: 25px;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-top: auto;
  background-color: #000;
}

footer a {
  text-decoration: none;
  color: #999;
}

footer ul {
  list-style: none;
}

footer ul li {
  display: inline-block;
}

footer ul li a,
footer .copyright a {
  display: inline-block;
  padding: 10px;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  transition: 250ms all;
}

footer ul li a:hover,
footer .copyright a:hover {
  color: #ccc;
}

footer ul li a:active {
  color: #fff;
}

footer nav {
  margin-top: 10px;
  margin-bottom: 10px;
}

footer .disclamer {
  display: inline-block;
  width: 100%;
  max-width: 880px;
}

footer .disclamer p {
  font-size: 90%;
  line-height: 150%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #999;
}

footer .copyright {
  font-weight: 400;
}

footer .copyright a {
  padding: 0;
  font-weight: inherit;
}

footer .logo,
footer .logo svg {
  display: inline-block;
  width: 75px;
  height: auto;
  text-align: center;
  opacity: .55;
}

footer .logo {
  margin-bottom: 10px;
}

footer .design-by {
  margin-top: 15px;
  margin-bottom: 10px;
}