:root {
  --color-active: #dc8243;
  --color-primary: #dda522;
  --color-secondary: #4a4a4a;
  --container-width: 1200px;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue_0.otf") format("opentype"),
    url("../fonts/HelveticaNeue-Bold_0.otf") format("opentype"),
    url("../fonts/HelveticaNeue-Medium.otf") format("opentype");
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
  color: var(--color-secondary);
}

img {
  width: 100%;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 0 15px;
  background-color: #fff;
  z-index: 9;
  box-shadow: 0 5px 20px -20px var(--color-secondary);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu-trigger {
  width: 60px;
  height: 60px;
  background: linear-gradient(to bottom right, #edc662, #fdeaa6);
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 106;
  transition: 0.3s all ease;
}

.bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: 0.3s all ease;
}

.menu-open #menu-trigger {
  background: linear-gradient(to bottom right, #fdeaa6, #edc662);
}
.menu-open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-open .bar:nth-child(2) {
  opacity: 0;
}
.menu-open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 18px;
}

#menu a {
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-secondary);
}

#menu a.active,
#menu a:hover {
  color: var(--color-active);
}

main {
  position: relative;
  overflow: hidden;
  padding-top: 245px;
}

#outline,
#outline-sm {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  transition: 0.8s all linear;
}

#outline-svg,
#outline-svg-sm {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 1870px;
  transform: translateX(-50%);
  top: 260px;
}

#outline-sm,
#outline-svg-sm {
  display: none;
}

#home {
  position: relative;
  display: flex;
  height: 100%;
  margin-top: 40px;
}

.hero-txt {
  font-size: 62px;
  margin: 0;
  color: #6e6e6e;
  font-weight: bold;
  font-family: "Helvetica Neue";
  text-transform: uppercase;
  transform: scale(0.94);
  animation: headingScale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

@keyframes headingScale {
  100% {
    transform: scale(1) translateZ(0);
  }
}

.hero-txt span {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 66px;
  opacity: 0;
  filter: blur(4px);
}

.hero-txt span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.hero-txt span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.hero-txt span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
  margin-top: 65px;
  padding-top: 85px;
  position: relative;
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);

  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  margin: 0 0 4px 4px;

  width: 16px;
  height: 16px;
  opacity: 0;
}

.unu {
  margin-top: 1px;
}

.unu,
.doi,
.trei {
  animation: mouse-scroll 1s infinite forwards;
  animation-delay: 1.2s;
}

.unu {
  animation-direction: alternate;
}

.doi {
  animation-delay: 1.4s;
  animation-direction: alternate;

  margin-top: -6px;
}

.trei {
  animation-delay: 1.7s;
  animation-direction: alternate;

  margin-top: -6px;
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.mouse_scroll::before {
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) forwards;
  animation-delay: 1s;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 90px;
  background: var(--color-primary);
  content: "";
  transform: scale(1, 0);
}

@keyframes elasticus {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1);
  }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
}

.banner-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
video {
  width: 100%;
  object-fit: cover;
}

.banner {
  width: 100%;
}
.banner-scroll {
  width: auto;
}
.main-borders__bg {
  content: "";
  position: absolute;
  bottom: 5px;
  left: calc(50% + 0px);
  width: 100%;
  height: 245px;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 20px;
  min-height: 1px;
  transition: 0.3s all linear;
}
.main-borders {
  position: relative;
  height: 245px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.main-borders__left,
.main-borders__right {
  position: absolute;
  top: 0;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: var(--color-primary);
}
.main-borders__left {
  left: 0;
  right: 50%;
  border-right-color: var(--color-primary);
}
.main-borders__right {
  right: 0;
  width: calc(50% - 7px);
  border-left-color: var(--color-primary);
}

.heading {
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  font-family: "Helvetica Neue";
  text-align: center;
  margin: 0;
  transition: 0.3s all ease;
}

p {
  font-size: 18px;
  line-height: 22px;
}

.inview {
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s all ease;
}

.inview.view {
  opacity: 1;
  transform: translateY(0);
}

.socials {
  width: 190px;
  height: 40px;
  border-radius: 20px;
  box-shadow: 0px 4px 3.5px 0 rgba(172, 172, 172, 0.61);
  background-color: #787e7c;
  border: 1px solid #296fb6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  position: absolute;
  z-index: 99;
}

.socials.sticky {
  transition: 0.3s all ease;
  position: fixed;
  bottom: 15px;
  left: 15px;
}

#why {
  background: url("../img/why-bg.png") no-repeat bottom center;
  position: relative;
  padding: 0 0 280px;
}

#why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/why-bg2.png") no-repeat bottom center;
  background-size: 980px;
}

.why-info {
  position: relative;
  width: 869px;
  height: 479px;
  background-color: #ffffff;
  border: 2px solid #dda522;
  margin: 0 auto;
  transform: translateX(0);
  padding: 92px 0 70px;
}
.why-info::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #dda522;
}
.why-info::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 45px;
  right: 40px;
  height: 50px;
  background: url(../img/why3.png) no-repeat center center;
  background-size: 77%;
}
#why .heading {
  max-width: 450px;
  margin: 0 auto 20px;
  text-align: center;
}
#why p {
  font-size: 22px;
  line-height: 26px;
  max-width: 450px;
  margin: 0 auto 20px;
  text-align: center;
}
.why_slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.why_nav {
  position: relative;
  top: 200px;
}
#slider__prevy {
  left: 0;
  background: url(../img/prev.png) no-repeat center center;
}
#slider__nexty {
  right: 0;
  background: url(../img/next.png) no-repeat center center;
}
.why_slider_item {
  position: relative;
  display: none;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.why_slider_item.active {
  display: flex;
}
.why_slider_item.show {
  opacity: 0;
  animation: fade 0.5s ease-in-out forwards;
}

#who {
  padding: 0 0 0 220px;
  position: relative;
  z-index: 1;
}

.who-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 290px 0 0;
}

.who-info .heading {
  position: relative;
  max-width: 235px;
  left: 65px;
}
.who-info p {
  max-width: 450px;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 5px;
}

.list {
  display: grid;
  gap: 20px 40px;
  list-style: none;
  grid-template-columns: 380px 1fr;
  margin: 0;
  max-width: 825px;
  padding: 340px 0 155px;
  position: relative;
}

.list::before {
  content: "";
  position: absolute;
  right: 160px;
  left: 0;
  bottom: 0;
  height: 575px;
  background: url(../img/who.png) no-repeat center center;
  background-size: contain;
}

.list__items {
  position: relative;
  font-size: 25px;
  line-height: 28px;
  color: #000000;
  font-weight: bold;
  padding-left: 35px;
}

.list__items[data-target] {
  cursor: pointer;
}

.list__items:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 20px;
  background-color: var(--color-primary);
}

#approach {
  padding: 170px 0 15px 600px;
  position: relative;
  z-index: 1;
}
.approach__info {
  max-width: 450px;
  padding-left: 50px;
}
#approach .heading,
#approach p {
  text-align: left;
}
.approach__info p {
  font-weight: 500;
}
.methods {
  padding: 15px 30px 15px 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin-top: 45px;
}
.method__item {
  border-radius: 35px;
  height: 295px;
  text-align: center;
  padding: 25px 28px;
  border: 1px solid transparent;
  transition: 0.3s all ease;
}
.method__item:hover {
  background-color: #ffffff;
  border: 1px solid #ff6029;
  box-shadow: 0px 8px 23px rgba(172, 172, 172, 0.53);
}
.method__item:hover .method__name {
  color: #296fb6;
}
.method__item:hover svg {
  fill: #296fb6;
}
#approach .method__item p {
  text-align: center;
}
.method__name {
  text-transform: uppercase;
}

#experience {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.experience__items {
  width: 905px;
  max-width: 100%;
  padding-left: 170px;
  padding-bottom: 300px;
  margin-top: 160px;
  position: relative;
}
.slider {
  position: relative;
  width: 735px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__btn {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  background: transparent;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
#slider__prev {
  left: 0;
  background: url(../img/prev.png) no-repeat center center;
}
#slider__next {
  right: 0;
  background: url(../img/next.png) no-repeat center center;
}

.exp__item {
  flex-basis: 19%;
}
#exp__fumes {
  position: absolute;
  left: calc(100% - 110px);
  bottom: 335px;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s all ease;
}
#exp__fumes.exp__fumes--active {
  opacity: 1;
  transform: translateY(0);
}
.slider__item {
  position: relative;
  display: none;
  height: 100%;
}
.slider__item.active {
  display: flex;
}
.slider__item.show {
  opacity: 0;
  animation: fade 0.5s ease-in-out forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slider__item.from-right {
  animation: slideFromRight 0.5s ease-in-out;
}
#contact {
  display: flex;
  align-items: top;
  justify-content: space-between;
  padding: 300px 130px 115px 10px;
  position: relative;
  z-index: 1;
}
.contact-txt {
  max-width: 410px;
}
.contact-txt .heading,
.contact-txt p {
  text-align: left;
}
.contact-txt p {
  font-size: 25px;
  line-height: 35px;
}

form {
  width: 250px;
  position: relative;
  padding: 72px 0 0;
}
form input,
textarea {
  border: none;
  border-bottom: 1px solid #8d8d8d;
  padding: 5px;
  outline: none;
  margin-bottom: 32px;
  width: 100%;
  resize: none;
  font-size: 18px;
  height: 32px;
}
textarea {
  margin-bottom: 0;
  height: 77px;
}
form button {
  position: absolute;
  right: calc(100% + 145px);
  bottom: -48px;
  width: 175px;
  background-color: transparent;
  color: black;
  border: none;
  font-size: 20px;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}
form p {
  font-size: 14px;
  text-align: center;
}
.foo-line {
  display: block;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  transform: translateY(-45px);
  background: url(../img/foo-bg.png) no-repeat;
  background-size: cover;
  background-position: 55% center;
  position: relative;
  z-index: 1;
}

.foo-line a {
  text-decoration: none;
  background-color: #ffffff;
  padding: 0 5px;
  color: var(--color-secondary);
}

footer {
  text-align: center;
  padding: 0px 0 10px;
  font-size: 14px;
  transform: translateY(-25px);
}

.hidden-lg {
  display: none;
}

body.modal--open {
  overflow: hidden;
}
body.modal--open:before {
  content: "";
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 10;
  background-color: var(--color-secondary);
  opacity: 0.45;
}

.modal.active {
  display: flex;
}

.modal {
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  width: 900px;
  height: 485px;
  border-radius: 30px;
  background-color: #ffffff;
  border: 2px solid #dda625;
  padding: 0px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
}

.modal__close {
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 35px;
  align-self: flex-end;
  margin: 15px 20px 0 0;
}

.modal__heading {
  font-size: 25px;
  line-height: 30px;
  color: #000000;
  font-weight: bold;
  margin: 0 auto 20px;
  padding: 0 15px;
}
.modal__content {
  height: 100%;
  overflow: auto;
  padding: 0 15px;
  max-width: 750px;
}
.modal__txt {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

.modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.modal__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: #dda625;
  border-radius: 50%;
}
