*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  padding: 0;
  margin: 0;
  background-color: #fffefa;
  max-width: 100%;
  overflow-x: hidden;
}
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: 87%;
  width: 100%;
}

.first-screen {
  height: 100vh;
  align-items: center;
  margin-top: 30px;
}
.first-screen__inner {
  margin: 60px 0 120px;
}
.first-screen-text-line {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 2px solid #d9d9d9;
  width: min-content;
}
.first-screen-text-line:nth-child(3) {
  border-bottom: none;
}
.first-screen-text-line h1 {
  font-weight: 700;
  font-size: 150px;
  line-height: 71%;
  text-transform: uppercase;
  margin: 0;
}
.yellow-text {
  color: #fbdd4f;
}
.first-screen-text-line img {
  border-radius: 20px;
  object-fit: cover;
}
.first-screen-text-line:first-child img {
  width: 208px;
  height: 107px;
  margin-left: 25px;
}
.first-screen-text-line:nth-child(2) img {
  width: 276px;
  height: 106px;
  margin-right: 25px;
}
.first-screen-text-line:nth-child(3) img {
  width: 330px;
  height: 107px;
  margin-left: 25px;
}
.animated-img {
  display: none;
}
.first-screen-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #d9d9d9;
}
.first-screen-bottom p {
  width: 737px;
  color: #5c5c5c;
  font-size: 17px;
}
.btn-arrow {
  display: flex;
  align-items: center;
  position: relative;
}
.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: 1px solid #000000;
  border-radius: 70px;
  padding: 12px 34px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.yellow-arrow {
  background: #fbdd4f;
  border: 1px solid #000000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
.yellow-arrow img {
  width: 20px;
  height: 20px;
}

.about {
  margin-top: 150px;
}
.title-container {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid #bdbdbd;
  padding-bottom: 20px;
}
.title__before {
  width: 103px;
  height: 66px;
  background: radial-gradient(
    60.37% 233.8% at 27.64% 31.4%,
    #ffd964 0%,
    rgba(244, 243, 237, 0) 100%
  );
  border: 1.5px solid #000000;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title {
  font-weight: 600;
  font-size: 70px;
  line-height: 78.5%;
  text-transform: uppercase;
  margin: 0 0 0 20px;
}
.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__inner p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.045em;
  width: 44%;
  margin-top: 55px;
  margin-bottom: 90px;
}
.about__photo {
  border-radius: 45px;
  height: 250px;
  width: 82%;
  object-fit: cover;
}
.about__images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.circle-image {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    60.37% 233.8% at 27.64% 31.4%,
    #ffd964 0%,
    rgba(244, 243, 237, 0) 100%
  );
  border: 3px solid #000000;
  border-radius: 50%;
  transform: rotate(30deg);
}
.circle-image img {
  width: 170px;
  height: 170px;
}

.products {
  margin-top: 210px;
}
.products__inner {
  margin-top: 80px;
}
.products__single {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: min-content;
}
.products__single + .products__single {
  margin-top: 20px;
}
.products__single-title {
  font-weight: 500;
  font-size: 60px;
  line-height: 101%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  border: 3px solid #000000;
  border-radius: 174px;
  padding: 40px 100px;
  margin-right: 25px;
  transition: all 0.3s;
}
.products__single:hover .products__single-title {
  background: #fbdd4f;
}
.products__single:hover .products__single-img {
  transform: scale(0.95);
}
.products__single-img {
  border-radius: 50px;
  width: 316px;
  height: 144px;
  object-fit: cover;
  transition: all 0.3s;
}

.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: 30px 0 30px 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: 38px;
  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 85px;
  margin-top: 8px;
}

.contact-us {
  margin-top: 220px;
}
.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: 70%;
  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;
  width: max-content;
}
.contact-us__btn:hover .yellow-arrow {
  transform: rotate(-45deg);
}
.contact-us__btn input {
  font-size: 30px;
  padding: 16px 70px;
  border: 2.5px solid #000000;
}

.wpcf7 form .wpcf7-response-output {
  width: 70%;
}

.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: 600px;
  height: 500px;
  object-fit: cover;
  border-radius: 50px;
}

.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: 1600px) {
  .about__photo {
    width: 78%;
  }
  .contact-us__img {
    width: 100%;
    height: 500px;
  }
}

@media screen and (max-width: 1350px) {
  .first-screen__inner {
    margin: 70px 0;
  }
  .first-screen-text-line {
    padding: 20px 0;
  }
  .first-screen-text-line h1 {
    font-size: 110px;
  }
  .first-screen-text-line:first-child img {
    width: 175px;
    height: 78px;
    margin-left: 20px;
  }
  .first-screen-text-line:nth-child(2) img {
    width: 225px;
    height: 78px;
    margin-right: 20px;
  }
  .first-screen-text-line:nth-child(3) img {
    width: 254px;
    height: 78px;
    margin-left: 20px;
  }
  .first-screen-bottom {
    padding-top: 12px;
  }
  .first-screen-bottom p {
    width: 633px;
    color: #5c5c5c;
    font-size: 15px;
  }

  .title {
    font-size: 60px;
    margin: 0 0 0 18px;
  }
  .title__before {
    width: 81px;
    height: 50px;
    border-radius: 15px;
  }
  .title__before img {
    height: 30px;
    width: 30px;
  }

  .about {
    margin-top: 120px;
  }
  .about__photo {
    width: 75%;
    height: 228px;
    border-radius: 25px;
  }
  .about__inner p {
    font-size: 19px;
    line-height: 28px;
    width: 45%;
    margin-top: 40px;
    margin-bottom: 70px;
  }
  .circle-image {
    width: 228px;
    height: 228px;
  }
  .circle-image img {
    width: 150px;
    height: 150px;
  }

  .products {
    margin-top: 170px;
  }
  .products__inner {
    margin-top: 60px;
  }
  .products__single-title {
    font-size: 45px;
    padding: 37px 75px;
    margin-right: 20px;
  }
  .products__single-img {
    width: 285px;
    height: 119px;
    border-radius: 35px;
  }

  .why-us {
    margin-top: 170px;
  }
  .why-us__single-header img {
    width: 22px;
    height: 22px;
  }
  .why-us__single-header h3 {
    font-size: 32px;
    margin: 0 0 0 32px;
  }
  .why-us__single p {
    font-size: 18px;
    line-height: 27px;
    padding: 30px 60px;
  }

  .contact-us {
    margin-top: 170px;
  }
  .contact-us__img {
    width: 379px;
    height: 468px;
  }
  .contact-us__input {
    width: 80%;
  }
}

@media screen and (max-width: 1050px) {
  .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: 87%;
  }

  .first-screen__inner {
    margin: 70px 0 150px;
  }
  .first-screen-text-line h1 {
    font-size: 100px;
  }
  .first-screen-text-line img {
    border-radius: 13px;
  }
  .first-screen-text-line:first-child img {
    width: 133px;
    height: 75px;
    margin-left: 18px;
  }
  .first-screen-text-line:nth-child(2) img {
    width: 180px;
    height: 75px;
    margin-right: 18px;
  }
  .first-screen-text-line:nth-child(3) img {
    width: 207px;
    height: 75px;
    margin-left: 18px;
  }
  .first-screen-bottom {
    display: block;
  }
  .first-screen-bottom p {
    font-size: 16px;
    width: 75%;
    line-height: 22px;
  }
  .first-screen .btn-arrow {
    margin-top: 25px;
  }

  .title {
    font-size: 45px;
    margin: 0 0 0 10px;
    line-height: 88%;
  }
  .title__before {
    width: 66px;
    height: 38px;
    border-radius: 11px;
  }
  .title__before img {
    height: 20px;
    width: 20px;
  }

  .about {
    margin-top: 60px;
  }
  .about__inner {
    display: block;
    margin-top: 50px;
  }
  .about__inner p {
    font-size: 18px;
    line-height: 27px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about__inner p + p {
    margin-top: 30px;
  }
  .about__images {
    margin-top: 70px;
  }
  .about__photo {
    width: 70%;
    height: 190px;
  }
  .circle-image {
    width: 190px;
    height: 190px;
  }

  .products {
    margin-top: 160px;
  }
  .products__inner {
    margin-top: 50px;
  }
  .products__single + .products__single {
    margin-top: 10px;
  }
  .products__single-title {
    font-size: 35px;
    padding: 25px 45px;
    margin-right: 10px;
    border: 2px solid #000000;
  }
  .products__single-img {
    width: 160px;
    height: 91px;
    border-radius: 30px;
  }

  .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;
  }

  .contact-us {
    margin-top: 150px;
  }
  .contact-us__inner {
    display: block;
    margin-top: 60px;
  }
  .contact-us__column:first-child {
    width: 100%;
  }
  .contact-us__input {
    width: 100%;
  }
  .contact-us__btn {
    margin-top: 50px;
  }

  .wpcf7 form .wpcf7-response-output {
    width: 100%;
  }
  .wpcf7-spinner {
    left: 244px;
  }

  .contact-us__img {
    width: 100%;
    height: 335px;
    margin-top: 85px;
  }

  .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 .social {
    margin-top: 80px;
    display: flex;
  }
  .burger-menu .social ul {
    width: 100%;
    justify-content: space-between;
  }

  .first-screen-text-line {
    padding: 15px 0;
  }
  .first-screen-text-line h1 {
    font-size: 70px;
  }
  .first-screen-text-line:first-child img {
    width: 76px;
    height: 51px;
    margin-left: 10px;
  }
  .first-screen-text-line:nth-child(2) img {
    width: 74px;
    height: 49px;
    margin-right: 10px;
  }
  .first-screen-text-line:nth-child(3) img {
    width: 91px;
    height: 50px;
    margin-left: 10px;
  }

  .first-screen-bottom {
    padding-top: 0;
  }
  .first-screen-bottom p {
    width: 100%;
  }
  .first-screen .btn-arrow {
    margin-top: 35px;
  }
  .thin-btn {
    font-size: 18px;
  }
  .yellow-arrow {
    width: 46px;
    height: 46px;
  }
  .yellow-arrow img {
    width: 16px;
    height: 16px;
  }

  .title-container {
    padding-bottom: 10px;
  }
  .title {
    font-size: 28px;
    line-height: 78.5%;
  }
  .title__before {
    width: 58px;
    height: 30px;
    border-radius: 9px;
  }
  .title__before img {
    height: 17px;
    width: 17px;
  }

  .about__inner {
    margin-top: 30px;
  }
  .about__images {
    margin-top: 60px;
  }
  .about__photo {
    width: 100%;
    height: 201px;
    border-radius: 20px;
  }
  .circle-image {
    display: none;
  }

  .products {
    margin-top: 140px;
  }
  .products__inner {
    margin-top: 30px;
  }
  .products__single {
    width: 100%;
  }
  .products__single-title {
    font-size: 25px;
    padding: 25px 0;
    margin-right: 0;
    width: 100%;
  }
  .products__single-img {
    display: none;
  }

  .why-us {
    margin-top: 130px;
  }
  .why-us__single-header {
    padding: 20px 0;
  }
  .why-us__single-header img {
    width: 15px;
    height: 15px;
  }
  .why-us__single-header h3 {
    font-size: 25px;
    margin: 0 0 0 15px;
    line-height: 35px;
  }
  .why-us__single p {
    font-size: 18px;
    line-height: 27px;
    padding: 30px 40px;
  }

  .contact-us {
    margin-top: 130px;
  }
  .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;
  }
  .first-screen__inner {
    margin: 140px 0 100px;
  }
  .first-screen-text-line h1 {
    font-size: 65px;
  }
  .first-screen-text-line:nth-child(3) img {
    width: 85px;
    height: 50px;
    margin-left: 10px;
  }
  .first-screen-bottom p {
    font-size: 15px;
    line-height: 22px;
  }

  .title {
    font-size: 24px;
  }

  .about {
    margin-top: 100px;
  }

  .products__single-title {
    font-size: 22px;
    padding: 25px 0;
    margin-right: 0;
    width: 100%;
  }
}
