* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Verdana, Geneva, sans-serif;
  background-color: #f6f6f6;
  color: #333;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url('img/Background_image.svg') no-repeat center/cover;
}

.logo-bar {
  padding-inline: 100px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px rgba(80, 80, 80, 0.1);
}

.header-logo {
  height: 60px;
}

.content {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
  gap: 20px;
}

.left {
  flex: 1;
  display: flex;
  /* justify-content: center; */
}

.main-image {
  max-width: 100%;
  height: auto;
}

.right {
  flex: 1;
}

.right h1 {
  font-size: 1.8rem;
  line-height: normal;
  font-weight: bold;
  color: #303030;
  margin-bottom: 20px;
}

.right h1 span {
  color: #df0e25;
}

.right p {
  margin-top: 10px;
  font-size: 1rem;
  color: #505050;
}

footer {
  position: absolute;
  left: 80px;
  bottom: 10px;
  padding: 20px;
}

footer p {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 100%;
  color: #505050;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-bar {
  padding-inline: 10px;
}
  .content {
    flex-direction: column-reverse;
    text-align: start;
    justify-content: unset;
    align-items: flex-start;
    flex: unset;
    padding: 0;
  }

  .left {
    flex: unset;
    width: 100%;
    margin-top: 40px;
  }

  .right {
    flex: unset;
    width: 100%;
    margin-top: 80px;
  }

  .main-image {
    max-width: 100%;
  }
  .right{
    padding: 10px;
  }

  .right h1 {
    font-size: 1.5rem;
  }
  .container {
  background: url('img/background_mobile.svg') no-repeat center/cover;
}
footer{
  left: 10px;
  bottom:0
}
}
