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;
}
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;
}
:root {
  --bg-color: #232340;
  --h3-color: #5468e7;
  --p-color: #f5f5f5e6;
}
.footer-links ul {
  list-style: none;
}

/* !Code */
body {
  font-family: "Lexend Deca";
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.main-container {
  background-color: var(--bg-color);
  max-width: 1440px;
  height: 500px;
  padding: 0 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* !Top Side */
.topside-container {
  display: flex;
}

.logo-section {
  padding: 73px 130px 0 0;
  width: 168px;
  height: 114px;
}

.team-logo {
  width: 138px;
  height: 52px;
}
.description {
  max-width: 168px;
  height: 46px;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 1%;
  color: var(--p-color);
  padding-top: 16px;
}
/* !right side */
.link-section {
  display: flex;
  gap: 85px;
  margin-top: 95px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 138px;
  height: auto;
  color: var(--p-color);
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 1%;
}
.footer-links h2 {
  padding-bottom: 16px;
  color: var(--h3-color);
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
}
.footer-email-link ul {
  max-width: 268px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--p-color);
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 1%;
}
.footer-email-link h2 {
  padding-bottom: 16px;
  color: var(--h3-color);
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
}

.email-container {
  position: relative;
  margin-top: 10px;
}

.email-container .icon {
  display: flex;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.email-container input {
  border-radius: 4px;
  border: none;
  background-color: #f5f5f53d;
  width: 268px;
  height: 46px;
  padding: 11px 45px 11px 16px;
  box-sizing: border-box;
}

/* ეს placeholder-ის შიგნით ჩაწერილ თექსტს უცვლის ფერს  */
::placeholder {
  color: var(--p-color);
}
/* !Bottom Side */
.bottom-container {
  display: flex;
  justify-content: space-between;
  padding: 37px 0;
  border-top: 1px solid #f5f5f53d;
}
.bottom-container p {
  color: var(--p-color);
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 1%;
}
ul li {
  cursor: pointer;
}
img {
  cursor: pointer;
}
.link-images {
  display: flex;
  gap: 30px;
}
