/* Eric Meyer's Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
*,
:before,
:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  outline: none;
}
/*
 2.0.1) Font Face
 -----------------------------*/
/*Put Your font face Styles here*/


html {
  font-size: 62.5%;
}
body {
  font-size: 100%;
  font-family: "Roboto Flex", sans-serif;
  line-height: 1.2;
  color: #111810;
  scroll-behavior: smooth;
  background: url(../images/box-background.jpg) repeat;
  width: 100%;
  height: 100%;
}
img { 
  width: 100%;
  height: 100%;
  display: block;
}
p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

@media all and (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

body img {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  -o-user-select: none;
  user-select: none;
}
figure {
  margin: 0;
}
*:focus {
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*
 2.0.3) Form Elements
 -----------------------------*/
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: inherit;
  background: #fff;
  border: 1px solid #ccc;
  font-family: "Roboto Flex", sans-serif;
}
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
a {
  color: #000;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  border: none;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  border: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="file"] {
  cursor: pointer;
  line-height: normal;
  overflow: visible;
}
button[disabled],
input[disabled] {
  cursor: default;
  color: #999;
  border-color: #ccc;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  appearance: textfield;
}
/*** iPhone and iOS Form Input Zoom Fixes ***/
/* Fix Input Zoom on devices older than iPhone 5: */
@media screen and (max-device-width: 767px) {
  select,
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="url"] {
    font-size: 16px !important;
  }
}
/*
 2.0.4) List Styles
 ---------------------------------*/
li {
  list-style: none;
}

button {
  border: none;
  background: transparent;
}
/*
 2.0.9) Sprite Icons
 -------------------------*/

/*global heading*/

h2 {
  font-weight: 500;
  font-size: 28px;
  font-family: "Literata", serif;
}

@media all and (min-width: 768px) {
  h2 {
    font-size: 42px;
  }
}

@media all and (min-width: 992px) {
  h2 {
    font-size: 54px;
  }
}




h3 {
  font-weight: 500;
  font-size: 40px;
  font-family: "Literata", serif;
}

@media all and (min-width: 768px) {
  h3 {
    font-size: 96px;
  }
}

/* Containers*/
.container {
  max-width: 1317px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

label {
  display: block;
}

.download-btn {
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background-color: #4262ff;
  border-radius: 32px;
}

@media all and (min-width: 768px) {
  .download-btn {
    padding: 16px 56px;
    font-size: 18px;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 26%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.4;
}

.cookie-consent p a {
  text-decoration: underline;
  color: #fff;
}

.cookie-consent p a:hover {
  text-decoration: none;
}

.cookie-consent button {
  background-color: #4262ff;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
  margin-left: 10px;
  transition: all 300ms ease-in-out;
}

.cookie-consent button:hover {
  box-shadow: 0 0 20px #a4a5a77a;
}

.content {
  padding: 20px;
  text-align: center;
}

.cookie-consent .btns-wrap {
  display: flex;
  justify-content: end;
}
@media all and (max-width: 1340px) {
  .cookie-consent {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    transform: none;

  }
}