@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* 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,
.wrapper-links section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
.wrapper-links section {
  display: block;
}

body {
  line-height: 1;
}

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;
}


/* General Styles */
html {
  height: 100%;
}

body {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  background-image: url("assets/bg.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

body .wrapper-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}

.wrapper-links section .company-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.wrapper-links section .company-info .language-toggle {
  position: absolute;
  right: -120px;
}

.wrapper-links section .company-info .language-toggle button {
  background-color: transparent;
  border: none;
  color: #FFF;
  cursor: pointer;
}

.wrapper-links section .company-info .language-toggle button.active {
  text-decoration: underline;
}

.wrapper-links section .description {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  min-width: 550px;
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.wrapper-links section .menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

.wrapper-links section .menu-items .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wrapper-links section .menu-items .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  min-width: 460px;
  max-width: 460px;
  height: 64px;
  border-radius: 42px;
  background: linear-gradient(90deg, #16a3c1 0%, #eb8114 100%);
  text-align: center;
  text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .wrapper-links section .company-info .language-toggle {
    position: static;
  }

  .wrapper-links section .description {
    min-width: 300px;
    max-width: 300px;
    font-size: 16px;
  }

  .wrapper-links section .menu-items .menu-item a {
    min-width: 300px;
    max-width: 300px;
    height: 56px;
    font-size: 16px;
  }
}
