* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bgColor: #15171E;
  --textColor: #ffffff;
  --accentColor: #F33636;
  --tableTdColor: #7c0c0c;

  --radius: 15px;
  --transition: all .3s;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bgColor);
  color: var(--textColor);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-text-container {
  width: 100%;
}

.accent-text {
  color: var(--accentColor);
}

.title {
  font-size: 4vw;
  margin: 50px 0px 50px 35px;
  font-weight: 700;
}

.sub-title {
  font-size: 2.5vw;
}

.second-sub-title {
  font-size: 1.8vw;
}

.home-title {
  font-size: 5.5vw;
  font-weight: 700;
}

.home-sub-title {
  margin: 50px 35px 50px 35px;
}

.info-container__btn {
  width: 80%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  font-size: 2.5vw;
  background-color: transparent;
  color: var(--textColor);
  border-radius: var(--radius);
  border: 5px solid var(--accentColor);
  margin: 0 35px 50px 35px;
  text-decoration: none;
  transition: var(--transition);
}

.info-container__btn::after {
  content: "";
  width: 80px;
  height: 75px;
  background-image: url(../img/Arrow.png);
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.info-container__btn:hover {
  color: var(--accentColor);
}

.home-container__img {
  max-width: 100%;
  object-fit: cover;
  height: 100vh;
}

.about-section {
  flex-direction: column;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.about-img {
  width: 100%;
  object-fit: cover;
}

.innovation-img {
  max-width: 100%;
  object-fit: cover;
}

.about-text {
  width: 75%;
  font-size: 2vw;
  padding: 35px;
}

.innovation-section {
  flex-direction: column;
}

.innovation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.table-section {
  justify-content: center;
  align-items: center;
}

.table {
  font-size: 2vw;
  text-align: center;
}

.table__th {
  padding: 15px 50px;
  background-color: var(--accentColor);
}

.table__td {
  padding: 25px 15px;
  background-color: var(--tableTdColor);
}

.change-lang {
  width: 100px;
  height: 60px;
  text-align: center;
  font-size: 25px;
  background-color: var(--bgColor);
  color: var(--accentColor);
  border: 5px solid var(--accentColor);
  border-radius: var(--radius);
  position: absolute;
  right: 0;
  bottom: 0;
  position: fixed;
  margin: 25px;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form__input {
  width: 650px;
  padding: 25px 10px;
  margin: 25px 25px;
  color: var(--textColor);
  font-size: 25px;
  font-weight: 600;
  background-color: transparent;
  border: 5px solid var(--accentColor);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form__input:focus {
  color: var(--accentColor);
}

.form__form-btn {
  width: 650px;
  height: 125px;
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 50px 0;
  color: var(--textColor);
  background-color: transparent;
  border: 5px solid var(--accentColor);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.form__form-btn:hover {
  color: var(--accentColor);
}