* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.5;
}

main {
  padding-top: 63px;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  margin: 64px 0;
}

.section-bg {
  padding: 64px 0;
}

.no-m {
  margin: 0;
}

.highlight {
  color: #FFD700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.header {
  background-color: #394a5a;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu {
  position: fixed;
  background: #1a2835;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 6px 10px rgba(14, 29, 42, 0.4);
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .header-menu {
    position: static;
  }
}
.header-menu.fixed-header {
  position: fixed;
}

.header-wrapper {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}
@media screen and (min-width: 1024px) {
  .header-wrapper {
    padding: 2rem 0;
  }
}

.logo img {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  bottom: -6px;
  width: 210px;
}
@media screen and (min-width: 1024px) {
  .logo img {
    position: absolute;
    width: 350px;
    bottom: 0;
  }
}

.fixed-header .header-wrapper {
  padding: 1.5rem 0;
}
.fixed-header .logo img {
  width: 232px;
}

.main-menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .main-menu {
    display: flex;
    gap: 40px;
  }
}

nav.open .main-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 63px;
  background: #1a2835;
  padding: 32px 20px;
}

.menu-item a {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  transition: color 0.3s ease;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .menu-item a {
    font-size: 16px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .menu-item a:hover {
    color: #4CAF50;
  }
}

.contact-top {
  display: none;
}
@media screen and (min-width: 1024px) {
  .contact-top {
    display: block;
    padding: 1rem 0;
  }
}
.contact-top__wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
.contact-top i {
  color: #FFD700;
}

#nav-icon3 {
  width: 40px;
  height: 30px;
  position: relative;
  top: 6px;
  -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;
}
@media screen and (min-width: 1024px) {
  #nav-icon3 {
    display: none;
  }
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #d6e1ea;
  border-radius: 6px;
  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;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 8px;
  width: 0;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.hero {
  position: relative;
  background: linear-gradient(to bottom right, #394a5a, #1a2835);
  color: #fff;
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero__content {
    width: 48%;
  }
}
.hero__content span {
  color: #FFD700;
}
.hero__content p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .hero__content p {
    font-size: 24px;
  }
}
.hero__buttons-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .hero__buttons-block {
    flex-direction: row;
    margin-top: 30px;
  }
}
.hero .btn {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 204px;
  margin: 0;
  padding: 14px 18px;
  background-color: #FFD700;
  color: #394a5a;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 8px rgba(14, 29, 42, 0.4);
  border-radius: 6px;
  cursor: pointer;
}
.hero .btn.second {
  background-color: #d6e1ea;
}
.hero .btn:hover {
  background-color: #4CAF50;
  color: #fff;
}
.hero .image-right {
  position: absolute;
  width: 70%;
  height: 100%;
  overflow: hidden;
  top: 0;
  right: 0;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .hero .image-right {
    width: 50%;
  }
}
@media screen and (min-width: 1040px) {
  .hero .image-right {
    width: 643px;
    right: -16%;
    opacity: 1;
  }
}
@media screen and (min-width: 1600px) {
  .hero .image-right {
    right: 0;
  }
}
.hero .image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 23%, 100% 0%, 100% 100%, 18% 100%);
}

@media screen and (min-width: 768px) {
  .services__wrapper {
    display: flex;
    gap: 30px;
  }
}
.services__item {
  flex: 1;
}
.services__item.bg {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto;
  padding-top: 60px;
}
.services__item .arrow {
  display: none;
  position: relative;
  width: 185px;
  height: 2px;
  background-color: #91989e;
  margin: 30px 0;
  animation: wiggle 1.5s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .services__item .arrow {
    display: block;
  }
}
.services__item .arrow::before, .services__item .arrow::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  top: -7px;
  right: -2px;
  background-color: #91989e;
  transform: rotate(45deg);
}
.services__item .arrow::after {
  transform: rotate(-45deg);
  top: 7px;
  right: -2px;
}
.services__item h2 {
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #394a5a;
}
.services__item p {
  color: #394a5a;
  line-height: 1.5;
}
.services__item p:last-child {
  margin-top: 16px;
}

.service {
  text-align: center;
}
.service__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 0;
}
.service__title {
  font-size: 18px;
  color: #233341;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service__title {
    font-size: 22px;
  }
}
.service__icon img {
  width: 95px;
}
@media screen and (min-width: 1040px) {
  .service__icon img {
    width: auto;
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
.info {
  color: #394a5a;
}
.info__title {
  text-align: center;
  margin-bottom: 30px;
}
.info__title h2 {
  margin-bottom: 15px;
}

.infographic {
  display: flex;
  flex-direction: column;
  gap: 45px;
  background-color: #4CAF50;
  padding: 30px 0;
  border-radius: 10px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .infographic {
    flex-direction: row;
    gap: 0;
    padding: 45px 0;
  }
}
.infographic__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.infographic__item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #4CAF50;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .infographic__item:not(:last-child)::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: auto;
    right: 0;
    transform: none;
  }
}
.infographic__icon {
  width: 80px;
  height: 80px;
}
.infographic__icon img {
  width: 100%;
  height: 100%;
}
.infographic__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.infographic__value {
  color: #1a2835;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .infographic__value {
    font-size: 70px;
  }
}

.contact-form {
  position: relative;
  color: #fff;
}
.contact-form__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-form__wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__item {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1040px) {
  .contact-form__content {
    width: 76%;
  }
}
.contact-form__description {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  color: #FFD700;
}
@media screen and (min-width: 768px) {
  .contact-form__description {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.contact-form .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-form .form {
  background: linear-gradient(135deg, rgb(57, 74, 90), rgb(26, 40, 53));
  padding: 35px 15px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .contact-form .form {
    padding: 55px 30px;
  }
}
@media screen and (min-width: 1040px) {
  .contact-form .form {
    padding: 100px 60px;
  }
}
.contact-form form {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-form form > p {
  width: 100%;
}
.contact-form form label {
  position: relative;
  display: block;
  margin-bottom: 25px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .contact-form form label {
    font-size: 18px;
  }
}
.contact-form form label span {
  display: block;
  margin-top: 7px;
}
.contact-form form input,
.contact-form form textarea {
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  padding: 14px 18px;
  border: 1px solid #fff;
  border-radius: 6px;
}
.contact-form form input[type=submit] {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 50%;
  margin: 0;
  background-color: #FFD700;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0px 8px 8px rgba(14, 29, 42, 0.4);
  border-color: transparent;
  cursor: pointer;
}
.contact-form form input[type=submit]:hover {
  background-color: #4CAF50;
  color: #fff;
}
@media screen and (min-width: 1040px) {
  .contact-form form .wpcf7-response-output {
    position: absolute;
    width: 100%;
    bottom: -88px;
    left: 0;
  }
}
.contact-form form .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -20px;
  font-size: 14px;
}

.contacts {
  background: linear-gradient(to bottom right, #394a5a, #1a2835);
}
.contacts__wrapper {
  display: flex;
}
@media screen and (min-width: 768px) {
  .contacts__item {
    flex-basis: 50%;
  }
}
.contacts h2 {
  color: #fff;
}
.contacts h4 {
  color: #FFD700;
  font-size: 24px;
  font-weight: 700;
}

.contacts-info-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .contacts-info-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contacts-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.contacts-info-item a {
  color: #fff;
  transition: color 0.3s ease-in-out;
  font-weight: 700;
  text-decoration: none;
}
.contacts-info-item a:hover {
  color: #4CAF50;
}
.contacts-info-item i {
  display: inline-block;
  width: 36px;
  text-align: center;
  font-size: 36px;
  color: #4CAF50;
}
.contacts-info-item .address {
  color: #fff;
}

.footer {
  background: #1a2835;
  text-align: center;
  padding: 30px 0;
}

.cta {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #4CAF50;
  border-radius: 50%;
  animation: jittery 4s infinite;
  box-shadow: 0 0 16px rgba(14, 29, 42, 0.4);
  opacity: 0;
  visibility: hidden;
}
.cta.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .cta {
    opacity: 1;
    visibility: visible;
    width: 100px;
    height: 100px;
  }
}
.cta:hover {
  animation: heartbeat 0.5s infinite;
}
.cta i {
  font-size: 40px;
}

@keyframes jittery {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}
@keyframes heartbeat {
  50% {
    transform: scale(1.1);
  }
}
