/* ===== CSS Reset Landing ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
}

p,
span,
strong,
em,
b,
i {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* /////////////////////////////////////////////////// Global Styles////////////////////////////////////////////////////////// */

.conteiner {
  max-width: 1376px;
  padding: 0 20px;
  margin: 0 auto;
}

.hidden {
  overflow: hidden;
}

/* ///////////////////////////////////////////////////Header////////////////////////////////////////////////////////// */

.header {
  width: 100%;
  height: 68px;
  background-color: #f4f4f4;
  box-shadow: 2px 6px 7.5px rgba(119, 119, 119, 0.1);
  backdrop-filter: blur(44.9px);
  -webkit-backdrop-filter: blur(44.9px);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.logo {
  width: 176px;
  height: 52px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.3s ease;

  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #272c3a;
}

.nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-item a:hover::after {
  width: 100%;
}

/*//////////////////////////////////////////Mobile Menu//////////////////////////////////////////////////////// */

.header__mobile-menu {
  display: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  z-index: 5;
}

.burger {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}

.mobile-menu.active {
  left: 0;
}

.logo-mob {
  width: 176px;
  height: 52px;
  margin-left: 16px;
  margin-bottom: 24px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #eaeaea;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item a {
  display: block;
  padding: 10px 16px;
  color: #12305e;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;

  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}

.mobile-menu-item a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.mobile-menu-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 16px;
}

.mobile-menu-button {
  width: 100%;
  display: inline-block;
  padding: 12px 48px;
  margin-top: 80px;
  background-color: #272c3a;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  border: 1px solid #272c3a;
  transition: all 0.3s ease;
}

.mobile-menu-button:hover {
  background-color: #3f6092;
  border: 1px solid #8cd3ee80;
  box-shadow: 0px 4px 4px 0px #00000040;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ////////////////////////////////////////////////////Hero//////////////////////////////////////////////////////// */
.hero {
  width: 100%;
  height: 730px;
  background-image: url("img/Hero-desc.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero__content {
  margin-top: 65px;
  width: 100%;
}

.hero__subtitle {
  font-family: Inter;
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #12305e;
}

.hero__title {
  font-family: Alike;
  font-weight: 400;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #12305e;
}

.hero__button {
  display: inline-block;
  padding: 12px 48px;
  margin-top: 32px;
  background-color: #272c3a;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  border: 1px solid #272c3a;
  transition: all 0.3s ease;
}

.hero__button:hover {
  background-color: #3f6092;
  border: 1px solid #8cd3ee80;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.hero__honeycomb {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.hexagon-wrapper {
  width: 262px;
  height: 226px;
  margin: 5px;
}

.hexagon {
  width: 100%;
  height: 100%;
  background: #ccc;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.hexagon .hex-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  font-weight: bold;
  font-size: 16px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.hexagon:hover img {
  filter: blur(3px);
}

.hexagon:hover .hex-overlay {
  opacity: 1;
}

.hexagon-wrapper:nth-child(4),
.hexagon-wrapper:nth-child(5),
.hexagon-wrapper:nth-child(6) {
  transform: translateY(113px);
}

.hexagon-wrapper-line-1 {
  display: flex;
  flex-direction: column;
  margin-right: -65px;
}

.hexagon-wrapper-line-2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hexagon-wrapper-line-3 {
  display: flex;
  flex-direction: column;
  margin-left: -65px;
}

.hero__button--mobile {
  display: none;
}

/* /////////////////////////////////////////////////////about///////////////////////////////////////////////////// */

.about {
  width: 100%;
  background: linear-gradient(180deg, #3f6092 2.88%, #272c3a 100%);
  padding: 120px 0 100px 0;
}

.about_title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}

.about__content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 32px;
}

.about_text {
  width: 50%;

  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ffffff;
}

.btn-about-more {
  margin-top: 24px;
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;

  color: #ffffff;
}

.about_img_wrapper {
  width: 50%;
  height: 335px;
}

.about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_text_img {
  margin-top: 24px;
  font-family: Alike;
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ffffff;
}

.wrapper-mission-vision {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  gap: 32px;
}

.vision,
.mission {
  width: 50%;
  padding: 32px 16px;
  background: linear-gradient(
    90deg,
    rgba(244, 244, 244, 0.15) 4.16%,
    rgba(171, 186, 224, 0.15) 102.1%
  );
}

.wrapper-vision-title,
.wrapper-mission-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vision-img-wrapper,
.mission-img-wrapper {
  width: 66px;
  height: 66px;
}

.vision-img,
.mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-title,
.mission-title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
}

.vision-text,
.mission-text {
  margin-top: 24px;

  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #fff;
}

/* /////////////////////////////////////////////////////////certificates///////////////////////////////////////////////////// */

.certificates {
  width: 100%;
  padding: 120px 0;
  background-image: url("img/Hero-desc.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.certificates_title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #12305e;
}

.wrapper-certificates {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 77px;
}

.wrapper-certificates-img {
  cursor: pointer;
}

.certificates_img_wrapper {
  width: 318px;
  height: 100%;
}

.certificates_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* /////////////////////////////////////////////////////////Modal Styles///////////////////////////////////////////////////// */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-height: 100%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-image {
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ccc;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 16px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.prev {
  left: 0px;
}

.next {
  right: 0px;
}

.modal-caption {
  text-align: center;
  color: white;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}

/* //////////////////////////////////////////////////Industries & Capabilities section////////////////////////////////////// */

.Industries {
  width: 100%;
  background: linear-gradient(180deg, #12305e 0%, #3f6092 54.33%);
  padding: 60px 0 0 0;
}

.Industries__container {
  position: relative;
}

.industries__title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}

.tabs__viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.tabs__track {
  display: flex;
  transition: transform 0.6s ease;
  width: 400%;
}

.tabs__content {
  width: 1440px;
  height: 751px;
  flex: 0 0 100%;
  padding: 39px 80px;
  position: relative;
}

.card-1 {
  background-image: url("img/tab1.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

.card-2 {
  background-image: url("img/tab2.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

.card-3 {
  background-image: url("img/tab3.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

.card-4 {
  background-image: url("img/tab4.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

.tabs__card {
  padding: 32px;
  width: 634px;
  background-color: #f4f4f4;
}

.tabs-title {
  margin-bottom: 16px;
  font-family: Alike;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #12305e;
}

.tabs-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #12305e;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}

.tab {
  font-family: Alike;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #b1b1b1;

  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab.active {
  border-color: #fff;
  color: #fff;
}

/* //////////////////////////////////////////////////Industries mobile section////////////////////////////////////// */

.industries__list {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
}

.industries__item {
  background-color: #fff;
}

.industries__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries__wrapper {
  padding: 8px;
}

.industries__wrapper-content {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #12305e;
  color: #12305e;
}

.industrial__title {
  font-family: Alike;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: bottom;
}

.industrial__plus {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.industrial__plus.active {
  transform: rotate(45deg);
}

.industries__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fff;
  color: #333;
}

.industries__content.active {
  max-height: 500px;
  padding: 20px;
  overflow-y: scroll;
}

.industries__content-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ///////////////////////////////////////////////////What Sets Us Apart////////////////////////////////////////////////////////// */

.what-sets-us-apart {
  width: 100%;
  padding: 0 0 113px 0;
  background: linear-gradient(
    180deg,
    #3f6092 0%,
    #f4f4f4 89.9%,
    rgba(244, 244, 244, 0) 100%
  );
}

.what-sets-us-apart__container {
  padding-top: 80px;
  background-image: url("img/Layer_1.svg");
  background-repeat: no-repeat;
}

.what-sets-us-apart_title {
  margin-bottom: 78px;
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.apart-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apart-item {
  position: relative;
  width: 310px;
  height: 260px;
}

.apart-img {
  position: absolute;
  top: -41px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 82px;
}

.apart-info-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 72px 20px 40px 20px;
  background-color: #f4f4f4;
  color: #12305e;
}

.apart-title {
  font-family: Alike;
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}

.apart-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}

/* ///////////////////////////////////////////////////Who We Work With////////////////////////////////////////////////////////// */

.who-we-work-with {
  width: 100%;
  background-color: #fff;
  padding-bottom: 120px;
}

.who-title-wrapper {
  margin-bottom: 40px;
  padding: 16px;
  background: linear-gradient(90deg, #f4f4f4 4.16%, #abbae0 102.1%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.who-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.partners-img {
  width: 66px;
  height: 66px;
  object-fit: cover;
}

.who-we-work-with_title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #12305e;
}

.who-we-work-with_text {
  max-width: 530px;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #12305e;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.partner-item {
  width: 310px;
  height: 265px;
}

.partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ////////////////////////////////////////////////////Form//////////////////////////////////////////////////////// */

.form {
  width: 100%;
  background-color: #fff;
  padding-bottom: 120px;
}

.form__container {
  max-width: 1376px;
  margin: 0 auto;
  padding: 110px 52px;
  background-image: url("img/form-bavkground.jpg");
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form__img-wrapper {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__img {
  max-width: 375px;
  max-height: 475px;
  object-fit: cover;
}

.form__wrapper {
  max-width: 705px;
  padding: 32px;
  background: #f4f4f440;
  backdrop-filter: blur(12px);
}

.form__title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}

.form__text {
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ffffff;
}

.form__input-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.form__input {
  max-width: 310px;
  width: 100%;
  height: 48px;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 6px;
  background: #f4f4f4;
  border: 1px solid #12305e;
}

.tel-input {
  width: 310px;
}

.form__textarea {
  width: 100%;
  height: 168px;
  padding: 12px 30px;
  border-radius: 6px;
  background: #f4f4f4;
  border: 1px solid #12305e;
  resize: none;
}

/* //////////////////////////////////////////////////// success animations/////////////////////////////////////////////////*/

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  z-index: 1000;
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-overlay.show .checkmark {
  transform: scale(1);
}

.checkmark::before {
  content: "✓";
  font-size: 48px;
  color: white;
  font-weight: bold;
}

/* ////////////////////////////////////////////////////News//////////////////////////////////////////////////////// */

.news {
  width: 100%;
  padding-bottom: 120px;
}

.news__title {
  font-family: Alike;
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #12305e;
}

.news__list {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.news__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  max-width: 424px;
  width: 100%;
}

.news__img {
  max-width: 424px;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news__link {
  display: flex;
  margin-top: 32px;
  align-items: start;
}

.news_text {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #12305e;
}

.news__arrow {
  width: 24px;
  height: 24px;
}

/* ////////////////////////////////////////////////////footer//////////////////////////////////////////////////////// */

.footer {
  width: 100%;
  background: linear-gradient(180deg, #3f6092 2.88%, #272c3a 100%);
  padding: 100px 0;
}

.footer__logo-wrapper {
  width: 220px;
  height: 50px;
}

.footer__logo {
  width: 100%;
  height: 100%;
}

.footer__bottom-wrapper {
  margin-top: 32px;
  padding-bottom: 100px;
  border-bottom: 1px solid #f4f4f480;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  max-width: 400px;
}

.footer__contact {
  display: flex;
  gap: 12px;
  justify-content: start;
  align-items: center;
  color: #ffffff;

  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

.footer_text {
  margin-bottom: 20px;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;

  color: #ffffff;
}

.mb8 {
  margin-bottom: 8px;
}

.footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 300px;
}

.footer__item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__item {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ffffff;
}

.footer__text {
  margin-top: 32px;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #f4f4f480;
}

/* ////////////////////////////////////////////////////whatsapp//////////////////////////////////////////////////////// */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float .tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ////////////////////////////////////////////////////Media Queries//////////////////////////////////////////////////////// */

@media (max-width: 1376px) {
  .partner-item {
    width: 48%;
    height: 100%;
  }
}

@media (max-width: 1250px) {
  .hero__title {
    font-family: Alike;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
  }
}

@media (max-width: 1200px) {
  .news__item {
    height: 400px;
  }

  .form__wrapper {
    max-width: 505px;
  }

  .tel-input {
    width: 210px;
  }

  .hexagon-wrapper {
    width: 222px;
    height: 186px;
  }

  .hexagon-wrapper-line-1 {
    margin-right: -55px;
  }

  .hexagon-wrapper-line-3 {
    margin-left: -55px;
  }

  .footer__list {
    gap: 100px;
  }
}

@media (max-width: 1068px) {
  .header {
    height: 56px;
  }

  .nav {
    display: none;
  }

  .header__mobile-menu {
    display: block;
  }

  .logo {
    width: 176px;
    height: 52px;
  }

  .who-we-work-with_text {
    width: 330px;
  }
}

@media (max-width: 1000px) {
  .form__img {
    width: 275px;
    height: 350px;
  }

  .form__wrapper {
    max-width: 405px;
  }

  .tel-input {
    width: 160px;
  }
}

@media (max-width: 875px) {
  .hexagon-wrapper {
    width: 182px;
    height: 146px;
  }

  .hexagon-wrapper-line-1 {
    margin-right: -45px;
  }

  .hexagon-wrapper-line-3 {
    margin-left: -45px;
  }

  .footer__list {
    gap: 50px;
  }
  .news__item {
    height: 450px;
  }

  .footer__info {
    width: 300px;
  }

  .apart-list {
    flex-wrap: wrap;
    gap: 48px;
  }
}

@media (max-width: 780px) {
  .form__container {
    flex-direction: column;
    gap: 20px;
  }

  .form__wrapper {
    max-width: 100%;
    width: 100%;
  }

  .form__input-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .form__input {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .tel-input {
    width: 100%;
  }

  .iti--allow-dropdown {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .conteiner {
    padding: 0 8px;
  }

  .what-sets-us-apart__container {
    padding: 40px 8px 0 8px;
  }

  .hero {
    height: 800px;
  }

  .hero__container {
    flex-direction: column;
    align-items: center;
  }

  .hero__content {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .hero__button--pc {
    display: none;
  }

  .hero__button--mobile {
    display: inline-block;
  }

  .about {
    padding: 40px 0;
  }

  .about__content {
    flex-direction: column;
    align-items: center;
  }

  .about_text {
    width: 100%;
    text-align: center;
  }

  .about_img_wrapper {
    width: 80%;
  }

  .about_img_wrapper {
    width: 100%;
    height: auto;
  }

  .certificates {
    padding: 40px 0;
  }

  .wrapper-certificates {
    flex-wrap: wrap;
  }

  .tabs__nav {
    display: none;
  }

  .tabs__viewport {
    display: none;
  }

  .industries__list {
    display: flex;
  }

  .who-we-work-with {
    padding-bottom: 40px;
  }

  .form {
    padding-bottom: 40px;
  }

  .news {
    padding: 40px 0;
  }

  .news__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .news__item {
    height: 100%;
  }

  .footer__list {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 684px) {
  .apart-list {
    justify-content: center;
  }

  .who-title-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .partners-list {
    gap: 8px;
  }

  .partner-item {
    width: 270px;
    height: 225px;
  }

  .wrapper-mission-vision {
    flex-direction: column;
    align-items: center;
  }

  .vision,
  .mission {
    width: 90%;
  }

  .what-sets-us-apart {
    padding-bottom: 40px;
  }

  .partner-item {
    width: 220px;
    height: 175px;
  }

  .form__container {
    padding: 20px;
  }

  .footer__info {
    width: 250px;
  }

  .modal-image {
    max-width: 800px;
    width: 85%;
  }
}

@media (max-width: 540px) {
  .who-we-work-with_title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
  }

  .who-we-work-with_text {
    margin-top: 16px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 730px;
  }

  .hexagon-wrapper {
    width: 133px;
    height: 114px;
  }

  .hexagon-wrapper-line-1 {
    margin-right: -35px;
  }

  .hexagon-wrapper-line-3 {
    margin-left: -35px;
  }

  .hero__content {
    text-align: start;
  }

  .hero__title {
    font-size: 40px;
    margin-top: 12px;
  }

  .about_title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
  }

  .about_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: start;
  }

  .about_text_img {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: bottom;
  }

  .wrapper-mission-vision {
    margin-top: 40px;
  }

  .mission-title,
  .vision-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
  }

  .mission-text,
  .vision-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }

  .certificates_title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
  }

  .industries__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }

  .what-sets-us-apart_title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }

  .apart-item {
    height: 203px;
  }

  .apart-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
  }

  .apart-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
  }

  .partner-item {
    width: 168px;
    height: 147px;
  }

  .form__container {
    padding: 40px 9px;
  }

  .form__img {
    width: 80px;
    height: 100px;
  }

  .form__title {
    font-family: Alike;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }

  .form__text {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }

  .form__input {
    margin-bottom: 0;
  }

  .form__button {
    width: 100%;
  }

  .news__title {
    font-family: Alike;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }

  .news_text {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }

  .footer__bottom-wrapper {
    flex-direction: column;
    align-items: start;
  }

  .footer__container {
    padding: 0 70px;
  }
}

@media (max-width: 420px) {
  .certificates_img_wrapper {
    width: 280px;
  }
}
