@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
.lang-switcher-area {
  position: relative;
}

.language-switcher {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border: none;
  color: var(--color-white);
}
.language-switcher span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.langswitcher {
  list-style: none;
  width: auto;
  max-height: 80dvh;
  position: absolute;
  box-shadow: 0px 0px 4px rgba(97, 94, 94, 0.39);
  padding: 5px;
  z-index: 1;
  overflow-y: auto;
  background: #fff;
  top: 36px;
  right: 0;
  display: block;
}

.langswitcher li {
  padding: 10px 5px;
}
.langswitcher li a {
  color: var(--color-black);
}

.langswitcher li:hover {
  background: rgba(0, 255, 255, 0.294);
}

.no-hero-area {
  padding: 258px 0;
  background: url(./../../images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .no-hero-area {
    background: url(./../../images/hero-bg-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
  }
}

.no-hero-content {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
@media (max-width: 1024px) {
  .no-hero-content {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 3rem !important;
    padding-top: 4rem;
    height: auto;
  }
}
.no-hero-content h1 {
  font-size: var(--hero-title-font-size);
  color: var(--color-black);
  font-style: normal;
  font-weight: 700;
  line-height: 90px; /* 125% */
  letter-spacing: -1.44px;
  text-align: left;
  width: 60%;
}
@media (max-width: 1024px) {
  .no-hero-content h1 {
    font-size: var(--m-hero-title-font-size);
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
    width: 100%;
  }
}
.no-hero-content img {
  width: 40%;
  display: none;
}
@media (max-width: 1024px) {
  .no-hero-content img {
    width: 100%;
    display: block;
  }
}

.about-area {
  padding: 4rem 0;
}

.about-content-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  padding: 30px 0px;
  border-radius: 32px;
}
@media (max-width: 1024px) {
  .about-content-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 3rem !important;
    padding: 20px 0px;
  }
}
.about-content-wrapper .about-content {
  line-height: 30px;
  font-style: normal;
  font-size: var(--text-font-size);
  flex-basis: 50%;
}
@media (max-width: 1024px) {
  .about-content-wrapper .about-content {
    text-align: left;
    font-size: var(--m-text-font-size);
  }
}
.about-content-wrapper .about-content h2 {
  font-size: var(--about-subtitle-font-size);
  font-weight: 400;
  color: var(--color-black);
}
@media (max-width: 1024px) {
  .about-content-wrapper .about-content h2 {
    font-size: var(--m-about-subtitle-font-size);
  }
}
.about-content-wrapper .about-content h1 {
  font-size: var(--about-title-font-size);
  line-height: 60px;
  padding: 1.5rem 0;
  letter-spacing: -0.96px;
}
@media (max-width: 1024px) {
  .about-content-wrapper .about-content h1 {
    line-height: 44px;
    font-size: var(--m-about-title-font-size);
    letter-spacing: -0.72px;
  }
}
.about-content-wrapper .about-content p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .about-content-wrapper .about-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }
}
.about-content-wrapper .about-img img {
  width: 100%;
}

.services-section {
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  .services-section {
    padding: 64px 0;
  }
}

.services-section-header {
  text-align: center;
}
.services-section-header h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 122.222% */
  letter-spacing: -0.96px;
  padding: 1.5rem 0;
}
@media (max-width: 1024px) {
  .services-section-header h2 {
    font-size: 36px;
    line-height: 44px; /* 122.222% */
    letter-spacing: -0.72px;
  }
}

.services-wrapper {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.services-wrapper .service {
  flex: 0 0 49%;
  background: var(--color-white);
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .services-wrapper .service {
    flex: 0 0 100%;
  }
}
.services-wrapper .service .service-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 0;
  border-radius: 18px;
}
.services-wrapper .service .service-header h4 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  padding: 32px 20px;
  letter-spacing: -0.96px;
}
@media (max-width: 1024px) {
  .services-wrapper .service .service-header h4 {
    font-size: 30px;
    line-height: 38px;
    padding: 24px 20px;
  }
}
.services-wrapper .service .service-content {
  padding: 1rem 2rem;
}
.services-wrapper .service .service-content .icon img {
  padding: 1rem 0;
}
.services-wrapper .service .service-content h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  padding: 24px 0;
  line-height: 38px;
}
.services-wrapper .service .service-content p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .services-wrapper .service .service-content p {
    font-size: 18px;
    line-height: 28px; /* 155.556% */
  }
}
.services-wrapper .service .service-link {
  align-self: center;
  text-align: center;
  padding: 0 2rem;
}
.services-wrapper .service .service-link a {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-primary);
  padding: 1rem;
  border-radius: 18px;
  display: block;
}

:root {
  --font-family: "Manrope", sans-serif;
  --text-font-size: 1.125rem;
  --m-text-font-size: 1rem;
  --hero-title-font-size: 3.75rem;
  --m-hero-title-font-size: 3rem;
  --about-title-font-size: 3rem;
  --m-about-title-font-size: 2.25rem;
  --about-subtitle-font-size: 1rem;
  --m-about-subtitle-font-size: 0.75rem;
  --footer-title-font-size: 1.15rem;
  --m-footer-title-font-size: 1.15rem;
  --footer-text-font-size: 1rem;
  --m-footer-text-font-size: 1rem;
  --copyright-footer-text-font-size: 1rem;
  --m-copyright-footer-text-font-size: 1rem;
  --header-text-font-size: 1.125rem;
  --color-primary: #454F88;
  --color-secondary: #131313;
  --color-black: #000;
  --color-white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .container {
    width: 85%;
    padding: 0 1rem;
  }
}

.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-items {
  align-items: center;
}

.flex-basis-25 {
  flex-basis: 25%;
}

.flex-basis-30 {
  flex-basis: 30%;
}

.flex-basis-50 {
  flex-basis: 50%;
}

.gap {
  gap: 1rem;
}

.gap-sm {
  gap: 0.6rem;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2rem;
}

.gap-xl {
  gap: 3rem;
}

.padding {
  padding: 1rem;
}

.padding-sm {
  padding: 0.6rem;
}

.padding-md {
  padding: 1.5rem;
}

.padding-lg {
  padding: 2rem;
}

.padding-xl {
  padding: 3rem;
}

.padding-tb {
  padding: 1rem 0;
}

.padding-tb-sm {
  padding: 0.8rem 0;
}

.padding-tb-md {
  padding: 1.5rem 0;
}

.padding-tb-lg {
  padding: 2rem 0;
}

.padding-tb-xl {
  padding: 3rem 0;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: var(--color-primary);
}

.shadow {
  box-shadow: 17px 17px 0px var(--color-primary);
  border-radius: 15px;
}

/* End Default CSS */
/* Header CSS */
header {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
  gap: 2rem;
  background: var(--color-white);
}
@media (max-width: 1024px) {
  header {
    padding: 1rem 1rem;
  }
}

.header-content-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .header-content-area {
    padding: 1rem 0;
  }
}

.header-contact-area {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .header-contact-area {
    flex-direction: column-reverse;
    align-items: end;
  }
}
.header-contact-area a {
  text-decoration: none;
  color: var(--color-black);
  font-size: var(--header-text-font-size);
}
.header-contact-area a svg path {
  fill: var(--color-white);
}

.logo {
  width: 52px;
}

/* End Header CSS */
/* Footer CSS */
footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 2rem;
}
@media (max-width: 1024px) {
  footer {
    padding: 2rem 0;
  }
}

.footer-info {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .footer-info {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-info .logo {
  flex-basis: 20%;
  width: 92px;
}
.footer-info .address {
  display: flex;
  flex-direction: column;
  flex-basis: 40%;
}
.footer-info .email {
  display: flex;
  flex-direction: column;
  flex-basis: 20%;
}
.footer-info .phone {
  display: flex;
  flex-direction: column;
  flex-basis: 20%;
}
.footer-info .address .title,
.footer-info .email .title,
.footer-info .phone .title {
  font-weight: bold;
  font-size: var(--footer-title-font-size);
}
@media (max-width: 1024px) {
  .footer-info .address .title,
  .footer-info .email .title,
  .footer-info .phone .title {
    font-size: var(--m-footer-title-font-size);
  }
}
.footer-info .address:last-child,
.footer-info .email:last-child,
.footer-info .phone:last-child {
  font-size: var(--footer-text-font-size);
}
@media (max-width: 1024px) {
  .footer-info .address:last-child,
  .footer-info .email:last-child,
  .footer-info .phone:last-child {
    font-size: var(--m-footer-text-font-size);
  }
}

.copyright {
  color: var(--color-white);
  background: var(--color-black);
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #B2BAC4;
}
@media (max-width: 1024px) {
  .copyright {
    padding: 1rem 0;
  }
}
.copyright p {
  font-size: var(--copyright-footer-text-font-size);
}
@media (max-width: 1024px) {
  .copyright p {
    font-size: var(--m-copyright-footer-text-font-size);
  }
}

/* End Footer CSS */

/*# sourceMappingURL=site.css.map */
