html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* // Global Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #EEEEEE;
  color: black;
  font-family: IBM Plex Sans, sans-serif;
  letter-spacing: 0%;
}

.header {
  min-height: 70vh;
  position: relative;
  padding: 20px 60px;
}
.header .header-bg {
  position: absolute;
  top: 5%;
  right: 0;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center;
     object-position: center;
  opacity: 0.2;
  z-index: -3;
}
.header .header-decoration-plus {
  position: absolute;
  top: 8%;
  right: 2%;
  z-index: -2;
  animation: blink-plus 1.2s infinite;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header .header-decoration-union {
  position: absolute;
  top: 35%;
  right: 12%;
  z-index: -1;
}
@keyframes blink-plus {
  0%, 100% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 15px;
    margin-bottom: 3%;
  }
}
.header .header-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.header .header-container .header-nav {
  align-self: flex-start;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}
.header .header-container .header-nav .link {
  font-weight: bold;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-shadow: #1E90FF 2px 2px 1px;
  opacity: 0.7;
}
.header .header-container .header-nav .nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.header .header-container .header-nav .nav-links body.menu-open {
  overflow: hidden !important;
  touch-action: none !important;
}
.header .header-container .header-nav .nav-links a {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  outline: none;
  color: inherit;
  transition: all 0.3s ease;
}
.header .header-container .header-nav .nav-links a:hover {
  color: #1E90FF;
  text-decoration: underline;
}
.header .header-container .header-nav .contact-button {
  text-wrap: nowrap;
  border: 1px solid black;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  outline: none;
  color: inherit;
  transition: all 0.3s ease;
}
.header .header-container .header-nav .contact-button:hover {
  background-color: #1E90FF;
  color: white;
  border: 1px solid white;
}
@media (max-width: 950px) {
  .header .burger-menu {
    display: flex;
    z-index: 1100;
    background: none;
    border: none;
    padding: 0;
  }
  .header .burger-menu .icon-burger {
    display: block;
  }
  .header .burger-menu .icon-close {
    display: none;
  }
  .header .burger-menu.open {
    position: fixed;
    top: 24px;
    right: 24px;
  }
  .header .burger-menu.open .icon-burger {
    display: none !important;
  }
  .header .burger-menu.open .icon-close {
    display: block !important;
  }
  .header .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #EEEEEE;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .header .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header .nav-links a {
    color: black;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .contact-button {
    display: none;
  }
}

.header-content {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15%;
}
@media (max-width: 1460px) {
  .header-content {
    width: 70%;
    margin-top: 30%;
  }
}
@media (max-width: 600px) {
  .header-content {
    width: 100%;
  }
}
.header-content h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 110%;
}
@media (max-width: 1460px) {
  .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 110%;
  }
}
@media (max-width: 600px) {
  .header-content h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 110%;
  }
}
.header-content .header-decoration {
  width: 160px;
  height: 2px;
  border-radius: 50px;
  background-color: #1E90FF;
  margin-top: 15px;
  margin-bottom: 25px;
  border-radius: 1px;
}
.header-content p {
  width: 70%;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 40px;
}
@media (max-width: 1460px) {
  .header-content p {
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
  }
}
@media (max-width: 600px) {
  .header-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    width: 100%;
  }
}
.header-content .header-main-button {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  background-color: #1E90FF;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .header-content .header-main-button {
    width: 100%;
    margin-top: 50%;
    padding: 20px 35px;
  }
}
.header-content .header-main-button:hover {
  background-color: rgb(0, 118.56, 234);
}

.main {
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}
@media (max-width: 600px) {
  .main {
    padding: 50px 15px 100px 15px;
  }
}
.main .section-aboutUs {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 35px;
}
.main .section-aboutUs .aboutUs-container {
  padding: 80px 50px 50px 50px;
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1440px) {
  .main .section-aboutUs .aboutUs-container {
    padding: 50px 25px 25px 25px;
  }
}
@media (max-width: 600px) {
  .main .section-aboutUs .aboutUs-container {
    padding: 50px 10px;
    border-radius: 25px;
  }
}
.main .section-aboutUs .aboutUs-container h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .main .section-aboutUs .aboutUs-container h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .main .section-aboutUs .aboutUs-container h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 30px;
  }
}
.main .section-aboutUs .aboutUs-container .aboutUs-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 120px;
}
@media (max-width: 1440px) {
  .main .section-aboutUs .aboutUs-container .aboutUs-content {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .main .section-aboutUs .aboutUs-container .aboutUs-content {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .main .section-aboutUs .aboutUs-container .aboutUs-content {
    flex-direction: column;
    gap: 25px;
  }
}
.main .section-aboutUs .aboutUs-container .aboutUs-content .aboutUs-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}
.main .section-aboutUs .aboutUs-container .aboutUs-content .aboutUs-card:hover {
  transform: scale(1.05);
}
.main .section-aboutUs .aboutUs-container .aboutUs-content .aboutUs-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
  text-align: left;
}
@media (max-width: 1440px) {
  .main .section-aboutUs .aboutUs-container .aboutUs-content .aboutUs-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 136%;
  }
}
@media (max-width: 600px) {
  .main .section-aboutUs .aboutUs-container .aboutUs-content .aboutUs-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 136%;
  }
}
.main .section-aboutUs .aboutUs-container .aboutUs-content .aboutUs-card img {
  width: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main .section-services .services-container .services-title {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .main .section-services .services-container .services-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .main .section-services .services-container .services-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 30px;
  }
}
.main .section-services .services-container .services-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  align-items: stretch;
  justify-items: stretch;
}
@media (max-width: 800px) {
  .main .section-services .services-container .services-card-container {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}
.main .section-services .services-container .services-card-container .services-card {
  background-color: white;
  border-radius: 25px;
  padding: 30px;
  min-width: 0;
  min-height: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}
.main .section-services .services-container .services-card-container .services-card:hover {
  transform: translateY(-10px);
}
@media (max-width: 600px) {
  .main .section-services .services-container .services-card-container .services-card {
    padding: 20px;
    height: auto;
  }
}
.main .section-services .services-container .services-card-container .services-card h2 {
  color: #1E90FF;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  .main .section-services .services-container .services-card-container .services-card h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
  }
}
@media (max-width: 600px) {
  .main .section-services .services-container .services-card-container .services-card h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 10px;
  }
}
.main .section-services .services-container .services-card-container .services-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
}
@media (max-width: 1440px) {
  .main .section-services .services-container .services-card-container .services-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 136%;
  }
}
@media (max-width: 600px) {
  .main .section-services .services-container .services-card-container .services-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 136%;
  }
}
.main .section-services .services-container .services-card-container .services-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 25px;
}
.main .section-whyUs {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 35px;
}
@media (max-width: 800px) {
  .main .section-whyUs {
    background-color: inherit;
  }
}
.main .section-whyUs .whyUs-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 120px 50px;
}
@media (max-width: 1440px) {
  .main .section-whyUs .whyUs-container {
    padding: 100px 25px;
  }
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container {
    padding: 25px 10px;
    border-radius: 25px;
    flex-direction: column;
  }
}
.main .section-whyUs .whyUs-container .whyUs-title {
  display: none;
  width: 100%;
  text-align: left;
  margin-bottom: 25px;
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .main .section-whyUs .whyUs-container .whyUs-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-title {
    display: block;
  }
}
.main .section-whyUs .whyUs-container img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.main .section-whyUs .whyUs-container .whyUs-left-content div:hover {
  transform: translateX(10px);
}
.main .section-whyUs .whyUs-container .whyUs-right-content div:hover {
  transform: translateX(-10px);
}
.main .section-whyUs .whyUs-container .whyUs-left-content {
  width: 100%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-left-content {
    max-width: 100%;
    margin-bottom: 25px;
  }
}
.main .section-whyUs .whyUs-container .whyUs-left-content .whyUs-card-white {
  position: relative;
  left: 80px;
}
@media (max-width: 1366px) {
  .main .section-whyUs .whyUs-container .whyUs-left-content .whyUs-card-white {
    left: 40px;
  }
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-left-content .whyUs-card-white {
    left: auto;
  }
}
.main .section-whyUs .whyUs-container .whyUs-right-content {
  width: 100%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-right-content {
    max-width: 100%;
  }
}
.main .section-whyUs .whyUs-container .whyUs-right-content .whyUs-card-blue {
  position: relative;
  right: 80px;
}
@media (max-width: 1366px) {
  .main .section-whyUs .whyUs-container .whyUs-right-content .whyUs-card-blue {
    right: 40px;
  }
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-right-content .whyUs-card-blue {
    right: auto;
  }
}
.main .section-whyUs .whyUs-container .whyUs-card-white {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #F0F8FF;
  padding: 30px 25px;
  border-radius: 25px;
  z-index: 2;
  transition: transform 0.3s ease;
}
.main .section-whyUs .whyUs-container .whyUs-card-white p {
  color: black;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1440px) {
  .main .section-whyUs .whyUs-container .whyUs-card-white p {
    font-size: 16px;
    font-weight: 400;
    line-height: 136%;
  }
}
@media (max-width: 600px) {
  .main .section-whyUs .whyUs-container .whyUs-card-white p {
    font-size: 18px;
    font-weight: 400;
    line-height: 136%;
  }
}
.main .section-whyUs .whyUs-container .whyUs-card-blue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #1E90FF;
  padding: 30px 25px;
  border-radius: 25px;
  z-index: 2;
  transition: transform 0.3s ease;
}
.main .section-whyUs .whyUs-container .whyUs-card-blue p {
  color: #F0F8FF;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1440px) {
  .main .section-whyUs .whyUs-container .whyUs-card-blue p {
    font-size: 16px;
    font-weight: 400;
    line-height: 136%;
  }
}
@media (max-width: 600px) {
  .main .section-whyUs .whyUs-container .whyUs-card-blue p {
    font-size: 18px;
    font-weight: 400;
    line-height: 136%;
  }
}
.main .section-whyUs .whyUs-container .whyUs-central-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  max-width: 754px;
  min-width: 416px;
  aspect-ratio: 1/1;
  pointer-events: none;
}
@media (max-width: 800px) {
  .main .section-whyUs .whyUs-container .whyUs-central-content {
    display: none;
  }
}
.main .section-whyUs .whyUs-container .whyUs-central-content .pulse-lines {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .section-whyUs .whyUs-container .pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  animation: pulse 2.5s infinite;
}
.main .section-whyUs .whyUs-container .pulse-1 {
  width: clamp(416px, 100%, 624px);
  height: clamp(416px, 100%, 624px);
  background: rgba(30, 144, 255, 0.15);
  animation-delay: 0s;
}
.main .section-whyUs .whyUs-container .pulse-2 {
  width: clamp(364px, 80%, 499px);
  height: clamp(364px, 80%, 499px);
  background: rgba(30, 144, 255, 0.25);
  animation-delay: 0.3s;
}
.main .section-whyUs .whyUs-container .pulse-3 {
  width: clamp(312px, 60%, 374px);
  height: clamp(312px, 60%, 374px);
  background: rgba(30, 144, 255, 0.35);
  animation-delay: 0.6s;
}
.main .section-whyUs .whyUs-container .pulse-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(104px, 45.5%, 218px);
  height: clamp(104px, 45.5%, 218px);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(30, 144, 255, 0.08);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .section-whyUs .whyUs-container .pulse-center span {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}
.main .reviews-section .reviews-container {
  margin-bottom: 100px;
}
@media (max-width: 1440px) {
  .main .reviews-section .reviews-container {
    margin-bottom: 50px;
  }
}
.main .reviews-section .reviews-container .reviews-title {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .main .reviews-section .reviews-container .reviews-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .main .reviews-section .reviews-container .reviews-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 30px;
  }
}
.main .reviews-section .reviews-container .review-cards-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 800px) {
  .main .reviews-section .reviews-container .review-cards-container {
    width: auto;
    flex-direction: column;
  }
}
.main .reviews-section .reviews-container .review-cards-container .review-card {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  background-color: white;
  border-radius: 25px;
  padding: 30px 25px;
  transition: transform 0.3s ease;
}
.main .reviews-section .reviews-container .review-cards-container .review-card:hover {
  transform: translateY(-10px);
}
@media (max-width: 800px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card {
    width: auto;
  }
}
.main .reviews-section .reviews-container .review-cards-container .review-card .review-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
}
@media (max-width: 1440px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card .review-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 136%;
  }
}
@media (max-width: 600px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card .review-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 136%;
  }
}
.main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info h2 {
  color: black;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1440px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
  }
}
@media (max-width: 600px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
  }
}
.main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info h3 {
  color: #1E90FF;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1440px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
  }
}
@media (max-width: 600px) {
  .main .reviews-section .reviews-container .review-cards-container .review-card .review-client-info h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
  }
}

.footer {
  padding: 100px 50px 0 50px;
  background-color: black;
  color: white;
}
@media (max-width: 1440px) {
  .footer {
    padding: 100px 25px 0 25px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 100px 15px 0 15px;
  }
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
}
.footer .footer-container .footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 100px;
}
@media (max-width: 1440px) {
  .footer .footer-container .footer-contact {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .footer .footer-container .footer-contact {
    flex-direction: column;
  }
}
.footer .footer-container .footer-contact .footer-contact-info {
  width: 50%;
}
@media (max-width: 1440px) {
  .footer .footer-container .footer-contact .footer-contact-info {
    width: 40%;
  }
}
@media (max-width: 800px) {
  .footer .footer-container .footer-contact .footer-contact-info {
    width: 100%;
  }
}
.footer .footer-container .footer-contact .footer-contact-info h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .footer .footer-container .footer-contact .footer-contact-info h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
  }
}
@media (max-width: 800px) {
  .footer .footer-container .footer-contact .footer-contact-info h1 {
    width: 100%;
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 30px;
  }
}
.footer .footer-container .footer-contact .footer-contact-info .footer-contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item a, .footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item h2 {
  text-decoration: none;
  outline: none;
  color: white;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  line-height: 110%;
}
@media (max-width: 1440px) {
  .footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item a, .footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
  }
}
@media (max-width: 800px) {
  .footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item a, .footer .footer-container .footer-contact .footer-contact-info .footer-contact-details .footer-contact-item h2 {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
  }
}

.contact-form-container {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 1440px) {
  .contact-form-container {
    width: 40%;
  }
}
@media (max-width: 800px) {
  .contact-form-container {
    width: 100%;
  }
}
.contact-form-container h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  line-height: 110%;
}
@media (max-width: 1440px) {
  .contact-form-container h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
  }
}
@media (max-width: 800px) {
  .contact-form-container h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
  }
}
.contact-form-container .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.contact-form-container .contact-form input {
  width: calc(100% - 15px);
  padding: 10px 0 10px 15px;
  background-color: white;
  border-radius: 8px;
  outline: none;
  border: none;
}
.contact-form-container .contact-form .send-button {
  width: 100%;
  border: 1px solid white;
  border-radius: 8px;
  background-color: inherit;
  color: white;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.contact-form-container .contact-form .send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-form-container .contact-form .send-button:hover:not(:disabled) {
  transform: scale(1.02);
  border: 1px solid #1E90FF;
  color: #1E90FF;
}
@media (max-width: 1440px) {
  .contact-form-container .contact-form .send-button {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
  }
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 0;
  border-top: 1px solid rgba(238, 238, 238, 0.1);
  color: #EEEEEE;
  gap: 80px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1440px) {
  .footer-legal {
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .footer-legal {
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    justify-content: space-between;
    gap: 20px;
  }
}
.footer-legal p {
  opacity: 0.5;
}
.footer-legal a {
  text-decoration: none;
  outline: none;
  color: #EEEEEE;
  opacity: 0.5;
}
.footer-legal a:hover {
  opacity: 1;
  padding-bottom: 5px;
  text-decoration: underline;
}

.burger-menu {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.burger-menu .icon-burger,
.burger-menu .icon-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.2s;
}
.burger-menu .icon-close {
  display: none;
}
.burger-menu.open .icon-burger {
  display: none;
}
.burger-menu.open .icon-close {
  display: block;
}

.team-slider {
  padding: 0px 50px 50px 50px;
}
@media (max-width: 1440px) {
  .team-slider {
    padding: 0 25px 25px 25px;
  }
}
@media (max-width: 600px) {
  .team-slider {
    padding: 0 10px 50px 10px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  display: flex;
}
.swiper h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .swiper h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
  }
}
@media (max-width: 800px) {
  .swiper h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
  }
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.team-card {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 15px;
}
.team-card h4 {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1440px) {
  .team-card h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
  }
}
@media (max-width: 800px) {
  .team-card h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
  }
}
.team-card img {
  border-radius: 15px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.swiper-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-top: 35px;
}
@media (max-width: 1440px) {
  .swiper-button-container {
    gap: 80px;
  }
}
@media (max-width: 800px) {
  .swiper-button-container {
    gap: 40px;
  }
}
.swiper-button-container .buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.custom-swiper-pagination {
  position: static !important;
  width: 100%;
  height: 1px;
  border-radius: 10px;
}

.custom-swiper-pagination .swiper-pagination-progressbar-fill {
  background: #1e90ff;
  border-radius: 10px;
  height: 1px;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #1e90ff;
  background: #f7f7f7;
  color: #1e90ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custom-swiper-button-prev span,
.custom-swiper-button-next span {
  font-size: 32px;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 5%;
  left: 0%;
}/*# sourceMappingURL=style.css.map */