*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  padding: 0;
  margin: 0;
  background-color: #fffefa;
}
a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffefa;
}
.header--active {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.header__inner {
  max-width: 87%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  width: 50px;
  height: 78px;
}
.menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__link {
  transition: all 0.3s;
  position: relative;
  margin-left: 140px;
}
.menu__link:first-child {
  margin-left: 0;
}
.menu__link-catalog {
  margin-left: 140px;
  position: relative;
}
.menu__link:hover {
  opacity: 0.6;
}
.menu__link a,
.menu__link p {
  font-size: 18px;
  cursor: pointer;
}
.catalog {
  position: absolute;
  top: 30px;
  left: -140%;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 15px 65px 15px 45px;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.catalog-active {
  opacity: 1;
  top: 50px;
  pointer-events: auto;
}
.catalog__item {
  display: flex;
  align-items: center;
}
.catalog__item img {
  width: 31px;
  height: 24px;
  border-radius: 5px;
}
.catalog__item a {
  font-size: 18px;
  line-height: 27px;
  padding-left: 10px;
  margin: 10px 0;
  transition: all 0.3s;
}
.catalog__item a:hover {
  opacity: 0.6;
}
.social ul {
  display: flex;
  align-items: center;
}
.social__link img {
  margin-left: 40px;
  width: 25px;
  height: 25px;
  transition: all 0.3s;
}
.social__link img:hover {
  opacity: 0.6;
}
.social__link:first-child img {
  margin-left: 0;
}
#burger-menu-icon {
  display: none;
}
.burger-menu {
  display: none;
}

.wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.container {
  max-width: 1250px;
  width: 100%;
}
.yellow-text {
  color: #fbdd4f;
}

.first-screen {
  margin-top: 130px;
}
.first-screen__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.first-screen__company-text {
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
  border-bottom: 2px solid #d9d9d9;
  width: max-content;
  text-align: center;
  padding-bottom: 10px;
  margin: 40px 0 10px;
}
.first-screen__title {
  font-weight: 700;
  font-size: 150px;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.first-screen__images {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.first-image {
  width: 30%;
  height: 202px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
}
.second-image {
  width: 68%;
  height: 202px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
}
.first-screen__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 120px;
}
.first-screen__footer p {
  font-weight: 400;
  font-size: 17px;
  width: 820px;
  border-top: 2px solid #d9d9d9;
  padding-top: 15px;
  color: #585858;
}

.btn-arrow {
  display: flex;
  align-items: center;
  position: relative;
  width: max-content;
}
.btn-arrow:hover .thin-btn {
  background: #fbdd4f;
}
.btn-arrow:hover .yellow-arrow {
  transform: rotate(135deg);
}
.thin-btn {
  font-weight: 500;
  font-size: 22px;
  background: none;
  border: 2px solid #000000;
  border-radius: 70px;
  padding: 15px 60px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.yellow-arrow {
  background: #fbdd4f;
  border: 1px solid #000000;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
.yellow-arrow img {
  width: 20px;
  height: 20px;
}

.description {
  margin-top: 200px;
}
.title {
  font-weight: 600;
  font-size: 65px;
  line-height: 78.5%;
  text-transform: uppercase;
  margin: 0 0 0 20px;
  border-bottom: 2px solid #bdbdbd;
  padding-bottom: 15px;
  width: max-content;
  margin-left: 0;
}
.description__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 83%;
  margin-top: 50px;
}
.description__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.045em;
  width: 55%;
}
.description__image {
  width: 369px;
  object-fit: cover;
  border-radius: 52px;
  height: 100%;
}

.why-us {
  margin-top: 210px;
}
.why-us__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 45px;
}
.why-us__single {
  width: 47%;
  margin-top: 25px;
}
.why-us__single-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 35px 0 35px 50px;
  background: radial-gradient(
    128.98% 877.23% at -22.17% 50.41%,
    #fbdd4f 0%,
    rgba(255, 254, 250, 0.09) 100%
  );
  border: 2px solid #000000;
  border-radius: 22px;
}
.why-us__single-header img {
  width: 27px;
  height: 27px;
}
.why-us__single-header h3 {
  font-weight: 500;
  font-size: 37px;
  letter-spacing: 0.045em;
  margin: 0 0 0 40px;
  text-transform: uppercase;
}
.why-us__single p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.045em;
  border: 2px solid #000000;
  border-radius: 22px;
  padding: 30px 60px;
  margin-top: 8px;
}

.projects {
  margin-top: 200px;
}
.projects__inner {
  margin-top: 60px;
  position: relative;
}
.projects__single-image {
  width: 98%;
  height: 630px;
  border-radius: 25px;
  object-fit: cover;
  margin: 0 auto 10px;
}
.projects__single-title-container {
  width: 98%;
  display: flex;
  align-items: center;
  padding: 30px 15px 30px 60px;
  border: 2px solid #000000;
  border-radius: 15px;
  margin: 0 auto;
}
.projects__single-title-container img {
  filter: invert(1);
  width: 28px;
  height: 28px;
}
.projects__single-title {
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 0 20px;
}

.slick-arrow {
  position: absolute;
  top: 315px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid #000000;
  background: none;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-arrow img {
  transition: all 0.3s;
}
.slick-arrow:hover {
  background-color: #ffd964;
}
.slick-prev {
  left: -80px;
  z-index: 9;
}
.slick-prev:hover img {
  transform: translateX(-10px);
}
.slick-next {
  right: -80px;
}
.slick-next:hover img {
  transform: translateX(10px);
}

.products {
  margin-top: 150px;
}

.contact-us {
  margin-top: 150px;
}
.contact-us__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 80px;
}
.contact-us form {
  display: flex;
  flex-direction: column;
}
.contact-us__column:first-child {
  width: 60%;
}
.contact-us__input {
  font-weight: 700;
  font-size: 25px;
  margin: 0;
  width: 85%;
  border: 2.5px solid #000000;
  border-radius: 57px;
  padding: 25px 15px 25px 60px;
  background: none;
  margin-bottom: 15px;
  transition: all 0.2s;
  resize: none;
}
.contact-us__input:focus {
  border: 2.5px solid #fbdd4f;
  outline: none;
}
.contact-us textarea {
  border-radius: 50px;
}
.contact-us__btn {
  margin-top: 60px;
}
.contact-us__btn:hover .yellow-arrow {
  transform: rotate(-45deg);
}
.contact-us__btn input {
  font-size: 30px;
  padding: 16px 70px;
  border: 2.5px solid #000000;
}
.contact-us__btn .yellow-arrow {
  width: 71px;
  height: 71px;
  transition: all 0.2s;
}
.contact-us__btn .yellow-arrow img {
  width: 25px;
  height: 25px;
}
.contact-us__img {
  width: 370px;
  height: 500px;
  object-fit: cover;
  border-radius: 50px;
}

.wpcf7 form .wpcf7-response-output {
  width: 85%;
}

.footer {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fed350;
  margin-top: 200px;
}
.footer__inner {
  max-width: 87%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo img {
  width: 50px;
  height: 78px;
  filter: brightness(0%);
}

@media screen and (max-width: 1300px) {
  .container {
    max-width: 830px;
  }

  .first-screen__title {
    font-size: 100px;
    margin-bottom: 20px;
  }
  .first-screen__company-text {
    font-size: 28px;
    width: 40%;
    padding-bottom: 6px;
    margin: 10px 0 10px;
    line-height: 21px;
  }
  .first-image {
    height: 124px;
    border-radius: 20px;
  }
  .second-image {
    height: 124px;
  }
  .first-screen__footer {
    margin-top: 90px;
  }
  .first-screen__footer p {
    font-size: 14px;
    width: 530px;
    padding-top: 15px;
  }
  .thin-btn {
    padding: 15px 50px;
    cursor: pointer;
    transition: all 0.2s ease-in;
  }

  .title {
    font-size: 45px;
  }
  .description__inner {
    height: 87%;
  }
  .description__text {
    font-size: 18px;
    width: 55%;
    margin: 0;
  }
  .description__image {
    width: 250px;
    border-radius: 45px;
  }

  .why-us {
    margin-top: 170px;
  }
  .why-us__inner {
    margin-top: 30px;
  }
  .why-us__single {
    margin-top: 20px;
  }
  .why-us__single-header {
    padding: 25px 0 25px 50px;
  }
  .why-us__single-header img {
    width: 18px;
    height: 18px;
  }
  .why-us__single-header h3 {
    font-size: 26px;
    margin: 0 0 0 15px;
  }
  .why-us__single p {
    font-size: 18px;
    line-height: 27px;
    padding: 30px 35px;
  }

  .projects {
    margin-top: 160px;
  }
  .projects__single-image {
    height: 454px;
  }
  .projects__single-title-container img {
    width: 24px;
    height: 24px;
  }
  .projects__single-title {
    font-size: 25px;
    margin: 0 0 0 15px;
  }
  .slick-arrow {
    top: 217px;
  }

  .contact-us {
    margin-top: 190px;
  }
  .contact-us__inner {
    margin-top: 50px;
  }
  .contact-us__input {
    font-size: 21px;
    width: 85%;
    padding: 20px 15px 20px 40px;
    margin-bottom: 15px;
    transition: all 0.2s;
    resize: none;
  }
  .contact-us__img {
    width: 280px;
    height: 430px;
    border-radius: 40px;
  }
  .contact-us__btn input {
    font-size: 25px;
    padding: 16px 70px;
  }

  .footer {
    margin-top: 180px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    top: -1px;
  }
  .header__inner {
    max-width: 87%;
  }
  .header .menu {
    display: none;
  }

  /* burger menu and animations */
  #burger-menu-icon {
    margin-left: 60px;
    display: block;
    width: 42px;
    height: 22px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  #burger-menu-icon span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  #burger-menu-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #burger-menu-icon span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #burger-menu-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
  }

  #burger-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 26px;
    left: 8px;
  }

  .social-burger-container {
    display: flex;
    align-items: center;
  }

  .burger-menu {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -800px;
    opacity: 0.8;
    left: 0;
    background: #fffefa;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
    padding: 115px 0 90px;
    height: auto;
    width: 100%;
    z-index: -1;
    transition: all 0.3s;
  }
  .burger-menu--active {
    top: 0px;
    opacity: 1;
  }
  .burger-nav .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .burger-nav .menu__link a,
  .burger-nav .menu__link p {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    text-align: center;
    margin: 0;
  }
  .burger-menu .menu__link {
    margin-left: 0;
    margin-top: 50px;
  }
  .first-mobile-link {
    margin-top: 0;
  }
  .burger-menu .menu__link + .menu__link {
    margin-left: 0;
  }
  .catalog-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    opacity: 0;
    height: 0;
    transition: all 0.3s;
  }
  .catalog-mobile-active {
    opacity: 1;
    height: 136px;
    margin-bottom: 0;
  }
  .catalog-mobile a {
    font-size: 22px;
    margin-top: 20px;
  }
  .burger-menu .social {
    display: none;
  }

  .container {
    max-width: 670px;
  }

  .first-screen {
    height: 100vh;
    align-items: center;
    margin-top: 0;
  }
  .first-screen__title {
    font-size: 100px;
    margin-bottom: 20px;
  }
  .first-screen__company-text {
    font-size: 25px;
    width: 50%;
    padding-bottom: 6px;
    margin: 100px 0 10px;
  }
  .first-image {
    width: 30%;
  }
  .second-image {
    margin-left: 0;
  }
  .first-screen__footer {
    display: block;
    margin-top: 200px;
    border-top: 2px solid #bdbdbd;
  }
  .first-screen__footer p {
    font-size: 15px;
    width: 80%;
    padding-top: 10px;
    border: none;
    margin-bottom: 25px;
  }

  .title {
    font-size: 40px;
  }
  .description {
    margin-top: 80px;
  }
  .description__inner {
    display: block;
    height: auto;
    margin-top: 40px;
  }
  .description__text {
    font-size: 18px;
    width: 100%;
  }
  .description__image {
    width: 100%;
    height: 250px;
    border-radius: 40px;
    margin-top: 60px;
  }

  .why-us {
    margin-top: 150px;
  }
  .why-us__inner {
    display: block;
    margin-top: 45px;
  }
  .why-us__single {
    width: 100%;
    margin-top: 25px;
  }
  .why-us__single-header {
    justify-content: center;
    padding: 30px 0;
    border-radius: 22px;
  }
  .why-us__single-header h3 {
    font-size: 30px;
  }
  .why-us__single p {
    padding: 30px 65px;
  }

  .projects__single-image {
    width: 85%;
    height: 400px;
  }
  .projects__single-title-container {
    width: 85%;
    padding: 28px 15px 28px 40px;
  }
  .projects__single-title-container img {
    width: 20px;
    height: 20px;
  }
  .projects__single-title {
    font-size: 22px;
    margin: 0 0 0 15px;
  }
  .slick-arrow {
    top: 180px;
    width: 54px;
    height: 54px;
  }
  .slick-arrow img {
    width: 39px;
    height: 39px;
  }
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }

  .contact-us {
    margin-top: 150px;
  }
  .contact-us__inner {
    display: block;
    margin-top: 40px;
  }
  .contact-us__column:first-child {
    width: 100%;
  }
  .contact-us__input {
    width: 100%;
    margin-bottom: 10px;
    padding: 25px 15px 25px 45px;
  }
  .contact-us__btn {
    margin-top: 40px;
  }
  .contact-us__img {
    width: 100%;
    height: 335px;
    margin-top: 75px;
  }

  .wpcf7 form .wpcf7-response-output {
    width: 100%;
  }
  .wpcf7-spinner {
    left: 244px;
  }

  .footer {
    margin-top: 150px;
  }
  .footer .menu {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .header .social {
    display: none;
  }
  .header__logo img {
    width: 38px;
    height: 65px;
  }
  .burger-menu .menu__link {
    margin-top: 30px;
  }
  .burger-menu .menu__link + .menu__link {
    margin-top: 30px;
  }
  .burger-menu .social {
    margin-top: 80px;
    display: flex;
  }
  .burger-menu .social ul {
    width: 100%;
    justify-content: space-between;
  }

  .container {
    max-width: 354px;
  }

  .first-screen__company-text {
    font-size: 20px;
    width: max-content;
    padding-bottom: 6px;
    margin: 65px 0 10px;
  }
  .first-screen__title {
    font-size: 70px;
    margin-bottom: 30px;
  }
  .first-screen__images {
    flex-direction: column;
  }
  .first-image {
    height: 95px;
    width: 100%;
  }
  .second-image {
    height: 95px;
    width: 100%;
    margin-top: 5px;
  }
  .first-screen__footer {
    margin-top: 100px;
  }
  .first-screen__footer p {
    font-size: 15px;
    width: 98%;
    padding-top: 8px;
    margin-bottom: 30px;
  }
  .thin-btn {
    font-size: 18px;
    padding: 12px 45px;
    border: 1px solid #000000;
  }
  .yellow-arrow {
    width: 48px;
    height: 48px;
  }
  .yellow-arrow img {
    width: 17px;
    height: 17px;
  }

  .title {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .description__inner {
    margin-top: 30px;
  }
  .description__image {
    height: 325px;
    border-radius: 25px;
    margin-top: 60px;
  }

  .why-us {
    margin-top: 130px;
  }
  .why-us__single-header {
    padding: 20px 0;
    boder-radius: 15px;
  }
  .why-us__single-header img {
    width: 15px;
    height: 15px;
  }
  .why-us__single-header h3 {
    font-size: 22px;
    margin: 0 0 0 15px;
    line-height: 35px;
  }
  .why-us__single p {
    font-size: 17px;
    line-height: 27px;
    padding: 30px 45px;
  }

  .projects {
    margin-top: 130px;
  }
  .projects__single-image {
    width: 98%;
    height: 250px;
  }
  .projects__single-title-container {
    width: 98%;
    padding: 20px 15px 20px 25px;
    border: 1px solid #000;
  }
  .projects__single-title-container img {
    width: 18px;
    height: 18px;
  }
  .projects__single-title {
    font-size: 18px;
    margin: 0 0 0 15px;
  }

  .slick-slide {
    height: auto;
  }
  .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
  }
  .slick-dots button {
    font-size: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d9d9d9;
    border: none;
    margin: 0 3px;
    transition: all 0.2s;
  }
  .slick-active button {
    background: #fbdd4f;
    width: 15px;
    height: 15px;
  }

  .products {
    margin-top: 110px;
  }

  .contact-us {
    margin-top: 110px;
  }
  .contact-us__input {
    font-size: 18px;
    border: 2px solid #000000;
    padding: 20px 15px 20px 30px;
    margin-bottom: 10px;
  }
  .contact-us textarea {
    border-radius: 30px;
  }
  .contact-us__inner {
    margin-top: 40px;
  }
  .contact-us__btn {
    margin-top: 30px;
  }
  .contact-us__btn input {
    font-size: 22px;
    padding: 12px 44px;
    border: 2px solid #000000;
  }
  .contact-us__btn .yellow-arrow {
    width: 54px;
    height: 54px;
  }
  .contact-us__btn .yellow-arrow img {
    width: 20px;
    height: 20px;
  }
  .contact-us__img {
    height: 300px;
    margin-top: 60px;
  }

  .footer {
    margin-top: 130px;
  }
  .footer__logo img {
    width: 38px;
    height: 65px;
  }
}

@media screen and (max-width: 375px) {
  .first-screen {
    height: auto;
    margin-top: 50px;
  }

  .container {
    max-width: 88%;
  }

  .first-screen__title {
    font-size: 70px;
    margin-bottom: 15px;
  }
  .first-screen__footer {
    margin-top: 70px;
  }
  .first-screen__footer p {
    width: 100%;
    padding-top: 0;
  }
}
