:root {
  --white: #ffffff;
  --black: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
}
.col_3 {
  width: 25%;
  flex: 0 0 auto;
}
.col_6 {
  width: 50%;
  flex: 0 0 auto;
}

.flex {
  display: flex;
}
.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.justify_end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.justify_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.align_center {
  display: flex;
  align-items: center;
}
.space_between {
  justify-content: space-between;
  align-items: center;
}
.gap_5 {
  gap: 5px;
}
.gap_10 {
  gap: 10px;
}
.gap_15 {
  gap: 15px;
}
.gap_20 {
  gap: 20px;
}
body {
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
main {
  min-height: 100vh;
}
.top_menu_bar {
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  padding: 5px 0;
}
.flag_and_phone {
  display: flex;
  align-items: center;
  gap: 5px;
}
a {
  color: var(--white);
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: underline;
}

header {
  position: relative;
  z-index: 1;
}
.video_section {
  position: absolute;
  top: 0;
  height: 85vh;
  overflow: hidden;
}
.video_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.footer {
  background-color: #f8f8f8;
}
.main {
  padding: 20px 0;
  text-align: center;
}
.copyright {
  border-top: 1px solid #e0e0e0;
  padding: 10px 0;
}
