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;
  vertical-align: baseline;
  border: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

*:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}

button:focus,
button:active {
  outline: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:focus,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  font-family: "Avenir Next", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  body {
    height: auto;
    justify-content: flex-start;
  }
}

* {
  font-family: "Avenir Next", sans-serif;
  font-weight: 400;
}

.bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("../images/bg_3.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .bg {
    background-position: right;
  }
}
.bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
}

.box {
  position: relative;
  z-index: 1;
}
.box__wrapper {
  display: flex;
  gap: 30px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 1024px) {
  .box__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 564px) {
  .box__wrapper {
    padding: 40px 20px;
  }
}
.box__content {
  position: relative;
  max-width: 440px;
}
@media (max-width: 1024px) {
  .box__content {
    max-width: none;
  }
}
.box__tabs {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 100%;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.box__tab {
  position: relative;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px 6px 0 0;
  color: #000;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .box__tab {
    padding: 10px 20px;
  }
}
@media (max-width: 564px) {
  .box__tab {
    padding: 6px 20px;
  }
}
.box__tab:hover {
  background: rgba(255, 255, 255, 0.7);
}
.box__tab.active {
  background: rgba(255, 255, 255, 0.7);
}
.box__tab.active:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: inherit;
  pointer-events: none;
}
.box__texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  font-size: 16px;
}
.box__text {
  display: none;
  flex-direction: column;
  height: 100%;
  gap: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px 12px 12px 12px;
  color: #000;
}
@media (max-width: 564px) {
  .box__text {
    padding: 20px 30px 30px;
  }
}
.box__text.active {
  display: flex;
}
.box__text:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: inherit;
  pointer-events: none;
}
.box__text span {
  display: block;
  margin-top: auto;
  font-size: 14px;
}
.box__video {
  position: relative;
  display: flex;
  min-height: 591px;
  height: auto;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .box__video {
    min-height: auto;
  }
}
.box__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.footer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .footer {
    position: static;
    margin-top: 6px;
  }
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    gap: 6px;
  }
}
.footer__link {
  display: flex;
  width: 56px;
  height: 50px;
  margin-top: 2px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .footer__link {
    margin-top: 0;
  }
}
.footer__link:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: inherit;
  pointer-events: none;
}
.footer__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.footer__link:hover {
  background: rgb(255, 255, 255);
}

/*# sourceMappingURL=styles.css.map */
