/*
Theme Name: Twenty Twenty
Text Domain: twentytwenty
Version: 2.2
Tested up to: 6.2
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import "main.css";
.icon-move-up-down {
  animation: IconMoveUpDown 2s ease-in-out infinite;
}

@keyframes IconMoveUpDown {
  0%, 100% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(20%);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 200%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes heroBgIcon {
  from {
    transform: var(--translate) rotate(-40deg);
  }
  to {
    transform: var(--translate) rotate(0deg);
  }
}
/* ----------------------------------------------
Manrope variable font. Usage:

@supports (font-variation-settings: normal) {
	html { font-family: 'Manrope', sans-serif; }
}
---------------------------------------------- */
html {
  /* font-size: 62.5%; */
  font-size: 0.68vw;
  /* 1rem = 10px */
  scroll-behavior: smooth;
}
@media screen and (max-width:1199px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (max-width:767px) {
  html {
    font-size: 2.6vw;
  }
}

body {
  overflow-x: hidden;
  background-color: #fcfcfc;
  transition: background-color 0.3s ease;
}

.grecaptcha-badge {
  opacity: 0;
  display: none !important;
  z-index: -1;
}

/* Custom -------------------------------- */
@media screen and (max-width:767px) {
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    margin: 2.4rem auto 2rem;
  }
}

.elementor:not([data-elementor-type=section]):not([data-elementor-type=popup]):not([data-elementor-type=loop-item]) > .elementor-element:first-of-type {
  margin-top: 4rem;
}

.container {
  max-width: calc(100% - 7.2rem) !important;
  padding: 0 !important;
}
@media screen and (max-width:767px) {
  .container {
    max-width: unset !important;
    padding: 0 2.4rem !important;
  }
}

#site-header {
  transition: transform 0.1s ease;
  transform: translateY(0);
}
#site-header.hidden {
  transform: translateY(-100%);
}

@media screen and (max-width:767px) {
  .menu-modal {
    padding-top: 5.6rem;
  }
  .menu-modal .close-nav-toggle {
    display: none;
  }
  .menu-modal .menu-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #0062bc;
  }
  .menu-modal .menu-wrapper {
    justify-content: start;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-top: 3.6rem;
  }
  .menu-modal .modal-menu {
    padding-left: 0;
    left: 0;
    width: 100%;
  }
  .menu-modal .modal-menu > li > a,
  .menu-modal .modal-menu > li > .ancestor-wrapper > a {
    padding-left: 0;
    font-size: 4.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 100%; /* 44px */
    letter-spacing: -0.88px;
    color: #191919;
  }
  .menu-modal .social-icons a {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.6);
    height: auto;
    width: auto;
  }
  .menu-modal .social-icons li {
    margin: 0;
  }
  .menu-modal .menu-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    padding: 0;
    padding-bottom: 2.6rem;
  }
  .menu-modal .menu-bottom .follow-us {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.64px;
    color: #666666;
    text-decoration: none;
  }
  .menu-modal .menu-bottom nav {
    width: auto;
    margin-left: auto;
  }
  .menu-modal .menu-bottom nav .social-menu {
    display: flex;
    gap: 2.4rem;
  }
}

.primary-menu a {
  font-weight: 600 !important;
  padding: 2.4rem;
}
.primary-menu > li {
  padding: 0;
}

ul.primary-menu {
  font-size: 1.6rem;
}

@media screen and (max-width:767px) {
  .section-inner {
    width: 100%;
  }
}

.wp-block-cover,
.wp-block-cover-image {
  padding: 3.6rem;
}
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
  width: 100%;
  height: 100%;
}
.wp-block-cover .wp-block-cover__inner-container .wp-block-heading,
.wp-block-cover-image .wp-block-cover__inner-container .wp-block-heading {
  font-size: 10rem;
  font-weight: 200;
  line-height: 100%;
  letter-spacing: -2px;
}
.wp-block-cover.is-dark,
.wp-block-cover-image.is-dark {
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .wp-block-cover,
  .wp-block-cover-image {
    padding: 2.4rem;
  }
}

#site-footer {
  overflow: hidden;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
#site-footer a {
  background-color: transparent;
}
@media screen and (max-width:767px) {
  #site-footer .dowload-app {
    display: flex;
    flex-direction: column;
    margin-top: 2.4rem;
    gap: 2.4rem;
  }
}
#site-footer .dowload-app svg {
  width: 13rem;
}
#site-footer .footer-item {
  width: 100%;
}
#site-footer .footer-item:last-of-type .dowload-app {
  display: none;
}
#site-footer .footer-item .subscribe-input {
  position: relative;
}
#site-footer .footer-item .subscribe-input p {
  margin: 0;
}
#site-footer .footer-item .subscribe-input form {
  margin-top: -1px;
  display: flex;
}
#site-footer .footer-item .subscribe-input input {
  height: 4vw;
  background-color: transparent !important;
  color: #ffffff;
}
#site-footer .footer-item .subscribe-input input:focus {
  outline: none;
}
#site-footer .footer-item .subscribe-input input:not([type=submit]) {
  width: 20vw;
  background-color: transparent;
  padding: 10px 16px;
  border: none;
}
#site-footer .footer-item .subscribe-input input:is([type=submit]) {
  width: 7rem;
  color: transparent;
  aspect-ratio: 1;
}
#site-footer .footer-item .subscribe-input button {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width:767px) {
  #site-footer .footer-item .subscribe-input button {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
#site-footer .footer-item .subscribe-input .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(300%, -50%);
}
#site-footer .footer-item .subscribe-input .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  transform: translateY(102%);
  font-size: 1.4rem;
}
#site-footer .footer-item .subscribe-input .wpcf7 form.invalid .wpcf7-response-output, #site-footer .footer-item .subscribe-input .wpcf7 form.sent .wpcf7-response-output {
  display: flex;
  align-items: center;
}
#site-footer .footer-item .subscribe-input .wpcf7-response-output {
  position: absolute;
  height: 100%;
  right: 0;
  top: 50%;
  margin: 0;
  transform: translate(104%, -50%);
  font-size: 1.4rem;
  align-items: center;
}
@media screen and (max-width:767px) {
  #site-footer .footer-item .subscribe-input .wpcf7-response-output {
    display: none;
  }
}
@media screen and (max-width:767px) {
  #site-footer .footer-item {
    flex-direction: column;
    align-items: start;
  }
  #site-footer .footer-item:first-of-type .dowload-app {
    display: none;
  }
  #site-footer .footer-item:last-of-type {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.4rem;
    margin-top: 4.4rem;
  }
  #site-footer .footer-item:last-of-type .to-the-top {
    order: 1;
  }
  #site-footer .footer-item:last-of-type .footer-credits {
    order: 4;
  }
  #site-footer .footer-item:last-of-type .dowload-app {
    display: flex;
    order: 2;
  }
  #site-footer .footer-item .subscribe-now {
    width: 100%;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 1.2rem;
  }
  #site-footer .footer-item .subscribe-now .subscribe-input {
    width: 100%;
  }
  #site-footer .footer-item .subscribe-now .subscribe-input input {
    width: 100%;
    height: 5.8rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.48px;
  }
  #site-footer .footer-item .subscribe-now .subscribe-input input::placeholder, #site-footer .footer-item .subscribe-now .subscribe-input input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6980392157);
    opacity: 1; /* Firefox */
  }
  #site-footer .footer-item .powered-by-wordpress {
    display: block;
  }
  #site-footer .footer-item .footer-social-wrapper {
    margin-left: -0.6rem;
  }
}

.header-inner {
  width: 100%;
}
@media screen and (max-width:767px) {
  .header-inner {
    height: 5.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .header-inner .header-titles-wrapper {
    width: 100%;
    height: 100%;
  }
  .header-inner .header-titles-wrapper .get-in-touch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.6rem;
    height: 100%;
    padding: 1.2rem;
    margin: 0;
    border: none;
  }
  .header-inner .header-titles-wrapper .get-in-touch a svg {
    width: 2rem;
  }
  .header-inner .site-logo img {
    max-height: 2.4rem;
    margin: 0 auto;
    width: auto;
  }
  .header-inner .nav-toggle svg {
    width: 2rem;
  }
}

.post-inner {
  padding-top: 5rem;
}
@media screen and (max-width:767px) {
  .post-inner {
    padding-top: 3rem;
  }
}

.wp-block-button:not(.is-style-link) a {
  transition: all 0.3s ease-in-out;
}
.wp-block-button:not(.is-style-link) a:hover {
  background: #000000 !important;
  color: #ffffff;
  text-decoration: none;
}
.wp-block-button:not(.is-style-link) svg path {
  stroke: rgba(255, 255, 255, 0.8980392157);
}

.wp-block-button svg {
  width: 1.7rem;
  height: auto;
}
.wp-block-button.is-style-outline {
  background: none !important;
}
.wp-block-button.is-style-outline svg path {
  stroke: rgba(0, 0, 0, 0.8);
}
.wp-block-button.is-style-outline a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: none !important;
  color: rgba(0, 0, 0, 0.6) !important;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
.wp-block-button.is-style-outline:hover a {
  background: none !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.wp-block-button.is-style-outline.light svg path {
  stroke: rgba(255, 255, 255, 0.8980392157);
}
.wp-block-button.is-style-outline.light a {
  color: rgba(255, 255, 255, 0.8980392157) !important;
  border: 1px solid rgba(255, 255, 255, 0.6980392157);
}
.wp-block-button.is-style-link {
  background: none !important;
  border: none !important;
}
.wp-block-button.is-style-link svg {
  fill: rgba(0, 0, 0, 0.8980392157);
}
.wp-block-button.is-style-link svg path {
  stroke: rgba(0, 0, 0, 0.8980392157);
}
.wp-block-button.is-style-link a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
.wp-block-button.is-style-link.is-light svg {
  fill: rgba(255, 255, 255, 0.6980392157);
}
.wp-block-button.is-style-link.is-light svg path {
  stroke: rgba(255, 255, 255, 0.6980392157);
}
.wp-block-button.is-style-link.is-light a {
  color: rgba(255, 255, 255, 0.6980392157);
}

/*Button animation*/
.btn-icon-up-down .elementor-button-icon {
  animation: IconMoveUpDown 2s ease-in-out infinite;
}
@media screen and (max-width:767px) {
  .btn-icon-up-down .elementor-button-icon {
    font-size: 3rem;
  }
}
@media screen and (max-width:767px) {
  .btn-icon-up-down .elementor-button-text {
    display: none;
  }
}

.wp-block-columns.alignfull {
  padding: 0;
}

.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.m-0 {
  margin: 0 !important;
}

.mt-36 {
  margin-top: 3.6rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.highlight {
  color: #0062bc;
}

@media screen and (max-width:767px) {
  p {
    font-size: 1.6rem;
  }
}
.wp-block-group .section-title {
  font-size: 10rem;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -2px;
  opacity: 0;
}
@media screen and (max-width:767px) {
  .wp-block-group .section-title {
    font-size: 4.4rem;
    letter-spacing: -0.88px;
  }
}
.wp-block-group .section-title span {
  color: #0062bc;
}

.section-solutions {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width:767px) {
  .section-solutions {
    padding: 0 2.4rem 3.6rem 2.4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}
.section-solutions > div {
  position: relative;
  flex-basis: 25%;
  flex: 1 1 25%;
  border-top: 1px solid var(--on-light-t-thin, rgba(0, 0, 0, 0.2));
  border-right: 1px solid var(--on-light-t-thin, rgba(0, 0, 0, 0.2));
  padding: 2.4rem 3.6rem;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width:767px) {
  .section-solutions > div {
    padding: 2.4rem;
    border: none;
    background-color: rgba(0, 0, 0, 0.8980392157);
    color: #ffffff;
  }
}
.section-solutions > div > * {
  position: relative;
}
.section-solutions > div svg path {
  stroke: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width:767px) {
  .section-solutions > div svg path {
    stroke: #ffffff;
  }
}
.section-solutions > div:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: rgba(0, 0, 0, 0.8980392157);
  transition: all 0.3s ease-in-out;
}
.section-solutions > div:hover {
  color: rgba(255, 255, 255, 0.8980392157);
}
.section-solutions > div:hover:before {
  height: 100%;
}
.section-solutions > div:hover svg path {
  stroke: rgba(255, 255, 255, 0.8980392157);
}
.section-solutions > div .title {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin-top: 3rem;
}
@media screen and (max-width:767px) {
  .section-solutions > div .title {
    padding-bottom: 2rem;
  }
}
.section-solutions > div .description {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  margin-bottom: 3rem;
}
@media screen and (max-width:767px) {
  .section-solutions > div .description {
    color: rgba(255, 255, 255, 0.8980392157);
    padding-bottom: 2rem;
  }
}
.section-solutions > div a {
  display: none;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
@media screen and (max-width:767px) {
  .products {
    gap: 2.4rem;
  }
}
.products .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #f2f2f2;
  padding: 6rem;
  color: rgba(0, 0, 0, 0.8980392157);
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .products .product-card {
    padding: 2.4rem;
    aspect-ratio: 1;
  }
}
.products .product-card .product-icon {
  position: relative;
  width: 14.6%;
  height: auto;
}
@media screen and (max-width:767px) {
  .products .product-card .product-icon {
    width: 7rem;
    height: 7rem;
  }
}
.products .product-card .p-bg-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68.4%;
  height: auto;
  opacity: 0.2;
  transform: translate(31%, 31%);
  z-index: 0;
}
@media screen and (max-width:767px) {
  .products .product-card .p-bg-icon {
    width: 90%;
    transform: translate(37%, 31%);
  }
}
.products .product-card .title {
  position: relative;
  width: 100%;
  font-size: 6rem;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.6px;
  margin-top: 8rem;
  margin-bottom: 1.6rem;
  color: rgba(0, 0, 0, 0.8980392157);
}
@media screen and (max-width:767px) {
  .products .product-card .title {
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.36px;
    margin-top: 6.3rem;
    margin-bottom: 1.2rem;
  }
}
.products .product-card .description {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 0 0 auto 0;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width:767px) {
  .products .product-card .description {
    font-size: 2rem;
    font-weight: 600;
    line-height: 130%; /* 26px */
    letter-spacing: 0.4px;
    color: rgba(0, 0, 0, 0.6);
  }
}
.products .product-card .wp-block-button {
  margin: 0;
  display: none;
}
.products .product-card .wp-block-button svg {
  width: 3.6rem;
}
.products .product-card:nth-child(even) {
  --svg-color: #ffffff;
  background-color: #0062bc;
  color: #ffffff;
}
.products .product-card:nth-child(even) > * {
  color: #ffffff;
}
.products .product-card:nth-child(even) .product-icon {
  filter: invert(1);
}
.products .product-card:nth-child(even) .product-icon,
.products .product-card:nth-child(even) .wp-block-button {
  fill: #ffffff;
}
.products .product-card:nth-child(even) .product-icon path,
.products .product-card:nth-child(even) .wp-block-button path {
  fill: #ffffff;
  stroke: #ffffff;
}

@media screen and (max-width:767px) {
  #section-solutions .elementor-background-video-container {
    height: 112vh;
  }
}

.section-contact {
  margin: 0 !important;
  padding: 6rem 0 6rem 0 !important;
}
@media screen and (max-width:767px) {
  .section-contact {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.section-contact h2 {
  overflow: hidden;
  position: relative;
  transition: all 0.5s linear;
  transform: translateY(-30%);
  opacity: 0;
}
.section-contact h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcfcfc;
  transition: all 0.5s linear;
}
.section-contact .description {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 2.4rem 0 0 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width:767px) {
  .section-contact .description {
    font-size: 2rem;
  }
}
.section-contact .wp-element-button {
  transition: all 0.5s ease-out;
  transform: translateY(100%);
  opacity: 0;
}
.section-contact.show h2 {
  transform: translateY(0);
  opacity: 1;
}
.section-contact.show h2::after {
  transform: translateY(100%);
}
.section-contact.show .wp-element-button {
  transform: translateY(0);
  opacity: 1;
}

.section-offices {
  position: relative;
}
.section-offices .bg-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: unset !important;
  width: 80% !important;
  z-index: 0;
}
.section-offices .bg-icon svg {
  max-width: unset !important;
  width: 100%;
}
.section-offices .wp-block-columns {
  padding: 0 !important;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s linear;
}
.section-offices .wp-block-columns .wp-block-column {
  border-top: 1px solid var(--on-light-t-thin, rgba(0, 0, 0, 0.2));
  border-right: 1px solid var(--on-light-t-thin, rgba(0, 0, 0, 0.2));
}
.section-offices .wp-block-columns .wp-block-column:last-of-type {
  border-right: none;
}
.section-offices .wp-block-columns .wp-block-group {
  flex-direction: column;
  align-items: center;
  margin: 0 !important;
  padding: 6rem 3.6rem;
  gap: 1.6rem;
}
.section-offices :where(.wp-block-columns.is-layout-flex) {
  gap: 0;
}
.section-offices h2 {
  margin-top: 0 !important;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.8);
}
.section-offices p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  color: rgba(0, 0, 0, 0.6);
}
.section-offices.show .wp-block-columns {
  opacity: 1;
  transform: translateY(0);
}

.archive.post-type-archive {
  --block-contact-bg: #f2f2f2;
}
.archive.post-type-archive .block-contact {
  background-color: var(--block-contact-bg);
}
.archive.post-type-archive .block-contact h2:after {
  background-color: var(--block-contact-bg);
}

#data-showcase.dark .elementor-counter-number-wrapper {
  color: #ffffff;
}
#data-showcase.dark .elementor-counter-title {
  color: rgba(255, 255, 255, 0.8980392157);
}
#data-showcase.dark .elementor-widget-container {
  border-color: rgba(255, 255, 255, 0.3019607843);
}

#section-highlight #bg-circle-icon {
  transition: opacity 0.3s ease-out;
}
#section-highlight #title-highlight span {
  background-position: 100%;
  background-size: 200% 100%;
  transition: background-position 1500ms linear;
}
#section-highlight #title-highlight.fill-color span {
  color: transparent;
  background-image: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 255, 0.3019607843) 50%);
  background-clip: text;
  -webkit-background-clip: text;
}
#section-highlight #title-highlight.dark .title-hightlight span {
  color: transparent;
  background-image: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 255, 0.3019607843) 50%);
  background-clip: text;
  -webkit-background-clip: text;
}

.swiper {
  max-width: 100% !important;
}
.swiper.swiper-logo-parade {
  width: 100%;
  height: 10vw;
}
@media screen and (max-width:767px) {
  .swiper.swiper-logo-parade {
    height: 10.2rem;
  }
}
.swiper.swiper-logo-parade > .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper.swiper-logo-parade .swiper-slide {
  height: 10vw;
  text-align: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:767px) {
  .swiper.swiper-logo-parade .swiper-slide {
    height: 10.2rem;
    padding: 1.8rem 0;
  }
}
.swiper.swiper-logo-parade .swiper-slide > div {
  text-align: center;
}
@media screen and (max-width:767px) {
  .swiper.swiper-logo-parade .swiper-slide > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
}
.swiper.swiper-logo-parade .swiper-slide img {
  margin: auto;
  display: block;
  max-height: 70%;
  max-width: 60%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper.swiper-logo-parade.dark .swiper-slide img {
  filter: invert(1);
}

.three_news_latest {
  max-width: unset !important;
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  display: flex;
  flex-direction: row;
  gap: 3.6rem;
}
@media screen and (max-width:767px) {
  .three_news_latest {
    flex-direction: column;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.three_news_latest .news {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1 1 33.333%;
  cursor: pointer;
}
.three_news_latest .news .thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.three_news_latest .news .thumbnail img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.three_news_latest .news:hover .thumbnail img {
  transform: scale(1.2);
}
.three_news_latest .news .title {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width:767px) {
  .three_news_latest .news .title {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 120%;
  }
}
.three_news_latest .news .category {
  margin: 0;
  color: #0062bc;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
.three_news_latest .news .wp-block-button {
  margin: 0;
}

.modal-contact .modal-dialog {
  margin: 0 0 0 auto;
  height: 100%;
  transform: translate(-100%, 0);
}
@media screen and (max-width:767px) {
  .modal-contact .modal-dialog {
    width: 100%;
    max-height: -webkit-fill-available;
  }
}
.modal-contact .modal-content {
  overflow-y: auto;
  height: 100%;
  padding: 8rem 3.6rem 6rem 3.6rem;
  background-color: #0062bc;
  color: #ffffff;
  border: none;
  border-radius: 0;
}
@media screen and (max-width:767px) {
  .modal-contact .modal-content {
    height: 100%;
    padding: 8rem 2.4rem 3.6rem 2.4rem;
  }
}
.modal-contact .modal-content .modal-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.modal-contact .modal-content .bt-close {
  position: absolute;
  top: -5.6rem;
  right: 0;
}
.modal-contact .modal-content .bt-close svg {
  width: 2.4rem;
}
.modal-contact .modal-content .title {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 3.6rem 0;
  text-transform: none;
  color: #ffffff;
}
.modal-contact .modal-content input,
.modal-contact .modal-content textarea {
  background: transparent;
  padding: 1.2rem 0;
  border: none;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.modal-contact .modal-content input:focus,
.modal-contact .modal-content textarea:focus {
  outline: none;
}
.modal-contact .modal-content .wpcf7-submit {
  background: transparent !important;
  margin-left: auto;
  border: 1px solid var(--on-dark-t-high, #fff);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  padding: 1.6rem 3.6rem;
}

.post-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-loading object {
  padding: 3.6rem;
  height: 20rem;
  width: auto;
  display: none;
}
.post-loading.loading {
  opacity: 1;
}
.post-loading.loading object {
  display: block;
}

.post-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.2);
}
.post-empty object {
  padding: 6rem 0 3.6rem 0;
  height: auto;
  width: 30rem !important;
  max-width: 80%;
}
.post-empty.show {
  opacity: 1;
  display: flex;
}

.news-controls {
  display: flex;
  align-items: center;
  justify-content: stretch;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  gap: 1.6rem;
}
.news-controls > div {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.news-controls a {
  color: inherit;
  text-decoration: none;
}
.news-controls button {
  height: 100%;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem;
}
@media screen and (max-width:767px) {
  .news-controls .categories {
    margin-left: auto;
  }
}
.news-controls .btn-category {
  padding-right: 0;
  cursor: pointer;
  display: none;
}
@media screen and (max-width:767px) {
  .news-controls .btn-category span {
    display: none;
  }
}
.news-controls .tabs {
  display: flex;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:767px) {
  .news-controls .tabs {
    font-size: 1.6rem;
  }
}
.news-controls .tabs a {
  padding: 0 1.6rem;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 500;
}
.news-controls .tabs a:first-of-type {
  padding-left: 0;
}
.news-controls .tabs a:last-of-type {
  border-right: none;
}
.news-controls .tabs a.active {
  color: rgba(0, 0, 0, 0.8980392157);
}
.news-controls .box-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
@media screen and (max-width:767px) {
  .news-controls .box-search {
    width: 100%;
  }
}
.news-controls .box-search input {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.8);
  padding: 1.2rem 1.6rem;
  border: none;
  outline: none;
}
@media screen and (max-width:767px) {
  .news-controls .box-search input {
    width: 100%;
  }
}
.news-controls .box-search input::placeholder, .news-controls .box-search input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1; /* Firefox */
}
.news-controls .categories .sub-category {
  position: absolute;
  width: 100%;
  left: 0;
  background: #fcfcfc;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width:767px) {
  .news-controls .categories .sub-category {
    padding: 1.6rem;
  }
}
.news-controls .categories .sub-category :where(ul, li) {
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width:767px) {
  .news-controls .categories .sub-category ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.news-controls .categories .sub-category li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
  list-style-type: none;
  float: right;
  text-align: center;
  display: block;
  padding: 2.6rem 4.2rem;
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .news-controls .categories .sub-category li {
    width: 50%;
    padding: 1.6rem 2.4rem;
  }
}
.news-controls .categories .sub-category li a {
  padding: 1.6rem 0;
  color: #333333;
  font-weight: 700;
}
.news-controls .categories:hover > .sub-category {
  display: block;
  opacity: 1;
  z-index: 1;
}

.heading-category {
  margin: 3.6rem 0 3.6rem 0;
}
@media screen and (max-width:767px) {
  .heading-category {
    margin: 2.4rem 0 2.4rem 0;
  }
}
.heading-category p {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}
@media screen and (max-width:767px) {
  .heading-category p {
    font-size: 2rem;
  }
}
.heading-category h6 {
  font-size: 10rem;
  font-weight: 200;
  line-height: 100%;
  letter-spacing: -2px;
  color: rgba(0, 0, 0, 0.8980392157);
  margin: 0.8rem 0 0 0;
  text-transform: inherit;
}
@media screen and (max-width:767px) {
  .heading-category h6 {
    font-size: 3.6rem;
  }
}

.news-list a {
  color: inherit;
  text-decoration: none;
}
.news-list .news-item {
  display: flex;
  width: 100%;
  padding: 3.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:767px) {
  .news-list .news-item {
    flex-direction: column-reverse;
    padding: 2.4rem 0;
    gap: 2.4rem;
  }
}
.news-list .news-item .featured-image {
  width: 43.2rem;
  height: 43.2rem;
  aspect-ratio: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width:767px) {
  .news-list .news-item .featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.news-list .news-item .news-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0 10rem;
}
@media screen and (max-width:767px) {
  .news-list .news-item .news-info {
    width: 100%;
    padding: 0;
  }
}
.news-list .news-item .news-info .news-category {
  display: flex;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
  color: #0062bc;
  gap: 0.8rem;
}
.news-list .news-item .news-info .news-category a {
  font-weight: 700;
}
.news-list .news-item .news-info .news-title {
  font-size: 6rem;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.6px;
}
@media screen and (max-width:767px) {
  .news-list .news-item .news-info .news-title {
    font-size: 3.6rem;
  }
}
.news-list .news-item .news-info .news-description {
  font-size: 2rem;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: 0.4px;
  margin-top: 2.4rem;
}
@media screen and (max-width:767px) {
  .news-list .news-item .news-info .news-description {
    font-size: 2rem;
  }
}
.news-list .news-item .news-info .wp-block-button {
  margin-bottom: 0;
  margin-top: 3.6rem;
}
.news-list .news-item:first-of-type {
  flex-direction: row-reverse;
  justify-content: stretch;
  color: #ffffff;
  margin: 3.6rem 0;
  padding: 0;
  min-height: 58.7rem;
  border-bottom: none;
}
@media screen and (max-width:767px) {
  .news-list .news-item:first-of-type {
    flex-direction: column-reverse;
    height: auto;
    gap: 0;
  }
}
.news-list .news-item:first-of-type .featured-image {
  width: calc(100% - 58rem);
  height: auto;
  aspect-ratio: auto;
}
@media screen and (max-width:767px) {
  .news-list .news-item:first-of-type .featured-image {
    width: 100%;
    height: 44rem;
  }
}
.news-list .news-item:first-of-type .news-info {
  width: 58rem;
  padding: 6rem;
  background-color: rgba(0, 0, 0, 0.8980392157);
}
@media screen and (max-width:767px) {
  .news-list .news-item:first-of-type .news-info {
    width: 100%;
    padding: 4.4rem 2.4rem;
  }
}
.news-list .news-item:first-of-type .news-category {
  color: rgba(255, 255, 255, 0.6980392157);
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width:767px) {
  .news-list .news-item:first-of-type .news-category {
    font-size: 2.4rem;
  }
}
.news-list .news-item:first-of-type .news-description {
  color: rgba(255, 255, 255, 0.8980392157);
}
.news-list .news-item:first-of-type .wp-block-button {
  margin-bottom: 0;
  margin-top: 3.6rem;
}
.news-list .news-item:last-of-type {
  border: none;
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form {
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.search-form .search-field {
  margin: 0;
  padding: 1.3rem 1.6rem;
  border: none;
  outline: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.048rem;
}
.search-form .search-field:focus {
  border: none;
  outline: none;
}
.search-form .search-submit {
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none;
}

/** Import page styles */
.about .block-hero {
  position: relative;
}
.about .block-hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #191919 48.52%, rgba(25, 25, 25, 0) 92.78%);
  z-index: 0;
  pointer-events: none;
}
.about .hero-banner {
  padding-bottom: 8rem;
  margin-bottom: -8rem !important;
}
.about .hero-text {
  position: relative;
  padding: 6rem 3.6rem 6rem 3.6rem;
  color: #ffffff;
  margin-top: -1px;
  z-index: 1;
}
.about .hero-text .bg-icon {
  position: absolute;
  top: 8rem;
  right: 0;
  width: 40%;
  transform: translateX(34%);
  pointer-events: none;
}
.about .hero-text .wp-block-group {
  max-width: unset !important;
  width: 77.75rem;
}
@media screen and (max-width:767px) {
  .about .hero-text .wp-block-group {
    width: 100%;
  }
}
.about .section-leadership {
  padding: 5rem 3.6rem !important;
}
.about .section-leadership h2 {
  margin-bottom: 6rem;
}
.about .section-staff .wp-block-uagb-tabs ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.about .section-staff .wp-block-uagb-tabs li {
  border: none !important;
  flex-grow: 1;
  padding: 2.4rem;
}
.about .section-staff .wp-block-uagb-tabs li a {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.2) !important;
  text-decoration: none;
}
.about .section-staff .wp-block-uagb-tabs li.uagb-tabs__active a {
  color: rgba(0, 0, 0, 0.8) !important;
}
.about .section-staff .wp-block-uagb-tabs .uagb-tabs__body-wrap {
  border: none !important;
  padding: 0;
}
.about .section-staff .wp-block-uagb-tabs .uagb-tabs__body-wrap .uagb-tabs__body-container {
  padding: 0;
}

.staff-list {
  max-width: unset !important;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.staff-list .staff-item {
  --staff-item-padding: 3.6rem;
  width: 25%;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:767px) {
  .staff-list .staff-item {
    --staff-item-padding: 2.4rem;
  }
}
.staff-list .staff-item * {
  position: relative;
  transition: all 0.3s ease-out;
}
.staff-list .staff-item h4 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 0 0 1.6rem 0;
  opacity: 1;
}
@media screen and (max-width:767px) {
  .staff-list .staff-item h4 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.4px;
  }
}
.staff-list .staff-item .position {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
  color: #0062bc;
  margin-bottom: 1.6rem;
  opacity: 1;
}
.staff-list .staff-item .description {
  position: absolute;
  top: var(--staff-item-padding);
  left: var(--staff-item-padding);
  width: calc(100% - var(--staff-item-padding) * 2);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  color: rgba(255, 255, 255, 0.8980392157);
  opacity: 0;
  z-index: 1;
}
.staff-list .staff-item a {
  color: rgba(0, 0, 0, 0.8980392157);
}
.staff-list .staff-item .box-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.staff-list .staff-item .box-link a {
  font-size: 2.4rem;
}
.staff-list .staff-item .box-link .title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
  color: #ffffff;
  margin: 0;
  opacity: 0;
}
.staff-list .staff-item .staff-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 23rem;
  padding: var(--staff-item-padding);
}
.staff-list .staff-item .staff-info:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.3s ease-out;
  z-index: 0;
}
@media screen and (max-width:767px) {
  .staff-list .staff-item .staff-info {
    padding: 2.4rem;
  }
}
.staff-list.is-dark .staff-item {
  width: 33.33%;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-right: none;
}
.staff-list.is-dark .staff-item h4 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .staff-list.is-dark .staff-item h4 {
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.36px;
  }
}
.staff-list.is-dark .staff-item .position {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media screen and (max-width:767px) {
  .staff-list.is-dark .staff-item .position {
    font-size: 2rem;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.4px;
  }
}
.staff-list.is-dark .staff-item .description,
.staff-list.is-dark .staff-item .title {
  display: none;
}
.staff-list.is-dark .staff-item a {
  color: #ffffff;
  font-weight: inherit;
}
.staff-list.is-dark .staff-item .box-link svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
.staff-list.is-dark .staff-item .staff-info {
  padding: 3.2rem;
}
.staff-list.is-dark .staff-item .staff-info::after {
  background-color: #0062bc;
}
@media screen and (max-width:767px) {
  .staff-list.is-dark .staff-item .staff-info {
    height: auto;
    padding: 2.4rem;
  }
}
.staff-list.has-thumbnail {
  gap: 2.4rem;
  justify-content: space-between;
}
.staff-list.has-thumbnail .staff-item {
  padding: 0;
  width: calc(33.33% - 2.4rem);
  border: none;
}
.staff-list.has-thumbnail .staff-item .thumbnail {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  z-index: 1;
}
.staff-list.has-thumbnail .staff-item .thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-list.has-thumbnail .staff-item .staff-info {
  background-color: #333333;
  height: auto;
  min-height: 36rem;
}
@media screen and (max-width:767px) {
  .staff-list.has-thumbnail .staff-item .staff-info {
    background-color: transparent;
  }
}
.staff-list.has-thumbnail .staff-item .description {
  position: relative;
  margin-bottom: 2.4rem;
  display: block;
  width: 100%;
  top: unset;
  left: unset;
  opacity: 1;
}
.staff-list.has-thumbnail .staff-item .box-link {
  margin-top: auto;
}
.staff-list.has-thumbnail .staff-item:hover .thumbnail img {
  transform: scale(1.05);
}
@media screen and (max-width:767px) {
  .staff-list {
    flex-direction: column;
  }
  .staff-list .staff-item {
    width: 100% !important;
  }
}

.staff-tabs * {
  transition: all 0.3s ease-in-out;
}
.staff-tabs .elementor-tab-title {
  text-align: center;
}
.staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tabs-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:767px) {
  .staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tabs-wrapper {
    display: flex;
  }
}
.staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tabs-wrapper .elementor-tab-title {
  width: 50%;
  padding: 2.4rem 0;
}
@media screen and (max-width:767px) {
  .staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tabs-wrapper .elementor-tab-title {
    padding: 1.6rem 0;
  }
}
.staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tabs-wrapper .elementor-tab-title.elementor-active {
  border-bottom: 2px solid rgba(0, 0, 0, 0.8);
}
.staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-content {
  padding: 0;
}
@media screen and (max-width:767px) {
  .staff-tabs.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper .elementor-tab-title {
    display: none;
  }
}

.menu-products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.menu-products li {
  margin: 0;
  transition: all 0.2s ease-in-out;
  font-size: 1.6rem;
}
.menu-products li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.2);
}
.menu-products li a:hover {
  color: rgba(0, 0, 0, 0.6);
}
.menu-products li.active {
  list-style: disc;
  margin-left: 1.8rem;
}
.menu-products li.active a {
  color: rgba(0, 0, 0, 0.6);
}

.product-cards {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.product-cards * {
  transition: all 0.3s ease;
}
@media screen and (max-width:767px) {
  .product-cards {
    gap: 2.4rem;
  }
}
.product-cards .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 42.2rem;
  background-color: #f2f2f2;
  padding: 3.6rem;
  overflow: clip;
  scroll-margin-top: 5rem;
  color: rgba(0, 0, 0, 0.8980392157);
}
@media screen and (max-width:767px) {
  .product-cards .product-card {
    padding: 2.4rem;
    min-height: unset;
  }
}
.product-cards .product-card .product-icon {
  position: relative;
  width: 14.6%;
  height: auto;
}
@media screen and (max-width:767px) {
  .product-cards .product-card .product-icon {
    width: 7rem;
    height: 7rem;
  }
}
.product-cards .product-card .p-bg-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.2;
  transform: translate(23%, 28%);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width:767px) {
  .product-cards .product-card .p-bg-icon {
    width: 90%;
    transform: translate(37%, 31%);
  }
}
.product-cards .product-card .title {
  position: relative;
  width: 100%;
  font-size: 6rem;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.6px;
  margin-top: 3.6rem;
  margin-bottom: 1.6rem;
  color: rgba(0, 0, 0, 0.8980392157);
}
@media screen and (max-width:767px) {
  .product-cards .product-card .title {
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.36px;
    margin-top: 6.3rem;
    margin-bottom: 1.2rem;
  }
}
.product-cards .product-card .description {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 0 0 3.6rem 0;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width:767px) {
  .product-cards .product-card .description {
    font-size: 2rem;
    font-weight: 600;
    line-height: 130%; /* 26px */
    letter-spacing: 0.4px;
    color: rgba(0, 0, 0, 0.6);
  }
}
.product-cards .product-card .excerpt {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.48px;
  color: rgba(255, 255, 255, 0.6980392157);
  max-height: 0;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .product-cards .product-card .excerpt {
    font-size: 2rem;
    font-weight: 600;
    line-height: 130%; /* 26px */
    letter-spacing: 0.4px;
  }
}
.product-cards .product-card .wp-block-button {
  margin: 0;
}
.product-cards .product-card .wp-block-button svg {
  width: 3.6rem;
  fill: none;
}
.product-cards .product-card .download-pdf {
  align-items: center;
  display: none;
}
.product-cards .product-card .download-pdf svg {
  width: 2rem;
  fill: none;
}
.product-cards .product-card .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-cards .product-card .btn-expand a::before {
  content: "Read more";
}
.product-cards .product-card.expanded {
  background-color: #191919;
}
.product-cards .product-card.expanded .title,
.product-cards .product-card.expanded .description {
  color: #ffffff;
}
.product-cards .product-card.expanded .excerpt {
  max-height: 100rem;
  margin-bottom: 3.6rem;
}
.product-cards .product-card.expanded .product-icon,
.product-cards .product-card.expanded .p-bg-icon {
  filter: invert(1);
}
.product-cards .product-card.expanded .wp-block-button a {
  color: #ffffff;
}
.product-cards .product-card.expanded .wp-block-button svg path {
  stroke: #ffffff;
}
.product-cards .product-card.expanded .btn-expand a::before {
  content: "Read less";
}
.product-cards .product-card.expanded .download-pdf {
  display: inherit;
}

#form-access-files form label {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
}
#form-access-files form input:is([type=text], [type=email]),
#form-access-files form select {
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
}
#form-access-files form input:is([type=text], [type=email]):hover, #form-access-files form input:is([type=text], [type=email]):focus,
#form-access-files form select:hover,
#form-access-files form select:focus {
  outline: none;
}
#form-access-files form .wpcf7-checkbox span {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  color: #0062bc;
}

#popup-download-file {
  height: 100vh;
  overflow-y: auto;
}
#popup-download-file .download-files {
  display: none;
}
#popup-download-file .download-files .elementor-button span {
  text-align: left;
}
#popup-download-file.success .access-files {
  display: none;
}
#popup-download-file.success .download-files {
  display: block;
}

.menu-case-study {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.menu-case-study li {
  margin: 0;
  transition: all 0.2s ease-in-out;
  font-size: 1.6rem;
}
.menu-case-study li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.64px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.2);
}
.menu-case-study li a:hover {
  color: rgba(0, 0, 0, 0.6);
}
.menu-case-study li.active {
  list-style: disc;
  margin-left: 1.8rem;
}
.menu-case-study li.active a {
  color: rgba(0, 0, 0, 0.6);
}

.product-cards {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.product-cards * {
  transition: all 0.3s ease;
}
@media screen and (max-width:767px) {
  .product-cards {
    gap: 2.4rem;
  }
}
.product-cards .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 42.2rem;
  background-color: #f2f2f2;
  padding: 3.6rem;
  overflow: clip;
  scroll-margin-top: 5rem;
  color: rgba(0, 0, 0, 0.8980392157);
}
@media screen and (max-width:767px) {
  .product-cards .product-card {
    padding: 2.4rem;
    min-height: unset;
  }
}
.product-cards .product-card .product-icon {
  position: relative;
  width: 14.6%;
  height: auto;
}
@media screen and (max-width:767px) {
  .product-cards .product-card .product-icon {
    width: 7rem;
    height: 7rem;
  }
}
.product-cards .product-card .p-bg-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.2;
  transform: translate(23%, 28%);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width:767px) {
  .product-cards .product-card .p-bg-icon {
    width: 90%;
    transform: translate(37%, 31%);
  }
}
.product-cards .product-card .title {
  position: relative;
  width: 100%;
  font-size: 6rem;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.6px;
  margin-top: 3.6rem;
  margin-bottom: 1.6rem;
  color: rgba(0, 0, 0, 0.8980392157);
}
@media screen and (max-width:767px) {
  .product-cards .product-card .title {
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.36px;
    margin-top: 6.3rem;
    margin-bottom: 1.2rem;
  }
}
.product-cards .product-card .description {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 0 0 3.6rem 0;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width:767px) {
  .product-cards .product-card .description {
    font-size: 2rem;
    font-weight: 600;
    line-height: 130%; /* 26px */
    letter-spacing: 0.4px;
    color: rgba(0, 0, 0, 0.6);
  }
}
.product-cards .product-card .excerpt {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.48px;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.48px;
  color: rgba(255, 255, 255, 0.6980392157);
  max-height: 0;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .product-cards .product-card .excerpt {
    font-size: 2rem;
    font-weight: 600;
    line-height: 130%; /* 26px */
    letter-spacing: 0.4px;
  }
}
.product-cards .product-card .wp-block-button {
  margin: 0;
}
.product-cards .product-card .wp-block-button svg {
  width: 3.6rem;
  fill: none;
}
.product-cards .product-card .download-pdf {
  align-items: center;
  display: none;
}
.product-cards .product-card .download-pdf svg {
  width: 2rem;
  fill: none;
}
.product-cards .product-card .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-cards .product-card .btn-expand a::before {
  content: "Read more";
}
.product-cards .product-card.expanded {
  background-color: #191919;
}
.product-cards .product-card.expanded .title,
.product-cards .product-card.expanded .description {
  color: #ffffff;
}
.product-cards .product-card.expanded .excerpt {
  max-height: 100rem;
  margin-bottom: 3.6rem;
}
.product-cards .product-card.expanded .product-icon,
.product-cards .product-card.expanded .p-bg-icon {
  filter: invert(1);
}
.product-cards .product-card.expanded .wp-block-button a {
  color: #ffffff;
}
.product-cards .product-card.expanded .wp-block-button svg path {
  stroke: #ffffff;
}
.product-cards .product-card.expanded .btn-expand a::before {
  content: "Read less";
}
.product-cards .product-card.expanded .download-pdf {
  display: inherit;
}

#form-access-files form label {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
}
#form-access-files form input:is([type=text], [type=email]),
#form-access-files form select {
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
}
#form-access-files form input:is([type=text], [type=email]):hover, #form-access-files form input:is([type=text], [type=email]):focus,
#form-access-files form select:hover,
#form-access-files form select:focus {
  outline: none;
}
#form-access-files form .wpcf7-checkbox span {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  color: #0062bc;
}

#popup-download-file {
  height: 100vh;
  overflow-y: auto;
}
#popup-download-file .download-files {
  display: none;
}
#popup-download-file .download-files .elementor-button span {
  text-align: left;
}
#popup-download-file.success .access-files {
  display: none;
}
#popup-download-file.success .download-files {
  display: block;
}/*# sourceMappingURL=style.css.map */