/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: "Matter", sans-serif;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
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;
}

/* NAVBAR SECTION - logo/helpcenter/buttons*/

.top-container {
  background-color: #000;
  padding: 19px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  height: 42px;
  margin: auto;
}
/* NAVBAR LEFT SIDE */
.topbar__left {
  display: flex;
  align-items: center;
}
.topbar__logo-wrapper .topbar__help-wrapper {
  height: 33px;
  vertical-align: center;
}
.topbar__help-wrapper {
  border-left: 2px solid #fff;
}
/* NAVBAR LOGO */
.abstract-logo {
  height: 2rem;
  margin-right: 0.8rem;
}
/* NAVBAR HELPCENTER */
.topbar__helpcenter {
  margin: 4px 0 0 0.8rem;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 23px;
}

/* NAVBAR RIGHT SIDE */
.topbar__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.topbar__button {
  color: #fff;
  font-size: 22px;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  margin: 0 0 0 16px;
  padding: 11px 24px;
}
.submit {
  background-color: #191a1b;
  border: 1px solid #fff;
}
.signin {
  background-color: #4c5fd5;
  transition: 0.3s;
}
.signin:hover {
  background-color: #fff;
  color: black;
}

/* SEARCH SECTION */
.search {
  background-color: #dadbf1;
  padding: 120px 30px;
  text-align: center;
  margin: 0 0 1rem;
  header {
    font-size: 70px;
    letter-spacing: -2px;
    font-weight: 400;
    line-height: 76px;
    margin-bottom: 52px;
  }
  .search__container {
    input {
      width: 660px;
      padding: 20px 16px;
      border: 1px solid #000;
      border-radius: 4px;
      font-family: "GT America Standard", sans-serif;
      font-size: 16px;
      box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
    }
    button {
      position: absolute;
      background: none;
      color: inherit;
      border: none;
      padding: 0;
      font: inherit;
      outline: inherit;
      transform: translate(-135%, 40%);
    }
    input:hover {
      border: 1px solid #4c5fd5;
      transition: all 0.3s;
    }
    input:focus-visible {
      outline: none;
      border: 1px solid #4c5fd5;
    }
    svg:hover {
      fill: #4c5fd5 !important;
      transition: all 0.3s;
    }
  }
}

/* MAIN SECTION */

main {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.main__item {
  width: 49%;
  display: flex;
  vertical-align: middle;
  margin-bottom: 64px;
  img {
    display: block;
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    margin-right: 24px;
  }
}
.main__item-blocktext {
  font-size: 22px;
  h1 {
    font-weight: 600;
    margin-bottom: 12px;
  }
  p {
    margin-bottom: 12px;
  }
  a {
    color: #4c5fd5;
    font-size: 18px;
  }
  a:hover {
    text-decoration: underline;
  }
}
/*FOOTER SECTION*/
footer {
  padding: 32px 120px;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  a {
    font-size: 15px;
  }
  a:hover {
    text-decoration: underline;
  }
}
.footer__column {
  margin-right: 12px;
}
.footer__column-end {
  width: 200px;
  height: 300px;
}
.footer_copyright {
  position: absolute;
  bottom: 60px;
}
