@import url(../fonts/stylesheet.css);
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

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%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border: none !important;
  outline: none !important;
  color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

button:hover {
  opacity: 0.8;
}

input,
textarea {
  border: none !important;
  outline: none !important;
}

a,
a:visited {
  color: white;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

html,
body {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  background-image: url("../img/background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: #0f1327;
  font-family: "Euclid Circular B";
  color: white;
}

body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background: #5397cc;
}

.container {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1300px;
  padding: 0 20px;
  margin: 45px auto 0 auto;
}

nav .menu-toggler {
  width: 26px;
  height: auto;
  display: none;
  cursor: pointer;
  margin-left: auto;
}

nav .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .left .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 450px;
  margin-left: 130px;
}

nav .left .nav-links a {
  color: #b3d1e9;
  font-size: 14px;
  font-weight: 500;
}

nav .left .nav-links a:hover {
  color: white;
}

nav button {
  width: 145px;
  height: 45px;
  border-radius: 5px;
  background-color: #5397cc;
  font-size: 14px;
  font-weight: 500;
}

.mobile-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #0f1327;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 60px;
  -webkit-box-shadow: 22px 0px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 22px 0px 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu a {
  padding: 10px 8px 8px 32px;
  text-decoration: none;
  font-size: 22px;
  white-space: nowrap;
  color: white;
  display: block;
}

.mobile-menu .closebtn {
  position: absolute;
  top: 0;
  right: 10px;
}

.mobile-menu .closebtn img {
  width: 30px;
  height: auto;
  color: black;
}

@media (max-width: 900px) {
  nav .menu-toggler {
    display: block !important;
  }
  nav .left .nav-links {
    display: none;
  }
  nav button {
    display: none;
  }
}

@media (max-width: 675px) {
  body {
    background-size: contain;
  }
}

@media screen and (max-height: 450px) {
  .mobile-menu {
    padding-top: 15px;
  }
  .mobile-menu a {
    font-size: 18px;
  }
}
