@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  list-style-type: none;
  text-decoration: none;
  text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  * {
    font-size: 12px;
  }
}
.hidden {
  display: none !important;
}

.border {
  border: 2px solid magenta !important;
}

.box-shadow {
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
}

nav {
  position: fixed;
  top: 1rem;
  left: 0;
  transform: translateX(5.5%);
  width: 90%;
  height: 60px;
  background: hsla(225, 49%, 44%, 0.7);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  padding: 1rem;
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.6rem;
}

nav .navbar {
  height: 100%;
  max-width: 1250px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 10px;
}

nav .navbar .nav-links {
  height: -moz-fit-content;
  height: fit-content;
}

nav .navbar .links {
  display: flex;
  gap: 0.4rem;
}

nav .navbar .links li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #F2F2F2;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  transition: 0.3s linear;
}

nav .navbar .links li .contact-us {
  cursor: pointer;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  background-color: #BE373A;
  border: 2px solid #BE373A;
  color: #F2F2F2;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  border-radius: 0.4rem;
  transition: 0.4s;
}

nav .navbar .links li .contact-us:hover {
  background-color: hsla(359, 55%, 48%, 0.7);
  color: #F2F2F2;
  transform: translateX(10%);
}
nav .navbar .links li .contact-us:hover i {
  transform: translateX(22%);
}

nav .navbar .links li a:hover {
  background-color: #1f3269;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu a {
  color: #F2F2F2;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width: 920px) {
  nav {
    width: 90%;
    height: 50px;
    transform: translateX(6%);
  }
  nav .navbar {
    max-width: 100%;
    justify-content: space-around;
  }
  nav .navbar .links {
    gap: 0.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  nav .navbar .links li {
    white-space: nowrap;
  }
  nav .navbar .logo {
    display: flex;
    overflow: hidden;
    margin-right: 3rem;
    flex-shrink: 0;
  }
  nav .navbar .logo a {
    width: 165px !important;
    padding: 0;
  }
  nav .navbar .logo img {
    width: 100%;
    display: flex;
    flex-shrink: 0;
  }
  nav .navbar .links li a {
    font-size: 0.8rem;
    flex-shrink: 1;
    margin-top: 0.3rem;
    padding: 0.4rem 0.8rem;
  }
  nav .navbar .links li .contact-us {
    margin-top: 0 !important;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 800px) {
  nav {
    /* position: relative; */
    width: 100%;
    transform: translateX(0);
    top: 0;
    border-radius: 0;
  }
  #menu-close-x {
    cursor: pointer;
    padding: 0.8rem;
    margin-right: 8vw;
  }
  #menu-close-x:hover {
    color: hsla(359, 55%, 48%, 0.7);
  }
  nav .navbar .logo {
    position: absolute;
    transition: 0.5s ease-in-out;
    right: -2rem;
  }
  .navbar .bx-menu {
    position: absolute;
    left: 1rem;
    display: block;
    cursor: pointer;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background: #1f3269;
    line-height: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .sidebar-logo .logo-name {
    width: 80%;
    color: #F2F2F2;
  }
  .sidebar-logo .logo-name img {
    scale: 0.9;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #F2F2F2;
  }
  nav .navbar .links {
    display: block;
    margin: 1rem auto;
    width: 80%;
  }
  nav .navbar .links li {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
  nav .navbar .links li a {
    display: block;
    font-size: 1.5rem;
    gap: 1rem;
    border-radius: 0;
  }
  nav .navbar .links li a:hover {
    background-color: hsla(225, 49%, 44%, 0.7);
  }
  nav .navbar .links li .contact-us {
    width: 80%;
    padding: 0;
    font-size: 1.5rem;
    margin: 0 auto;
  }
  nav .navbar .links li .contact-us i {
    font-size: 1.3rem;
    margin-left: 0.6rem;
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}
body {
  overflow-x: hidden;
}

.hero-section {
  height: 70vh;
  display: flex;
  justify-content: end;
  overflow: hidden;
  white-space: none;
}
.hero-section .flex-left {
  height: 100%;
  position: relative;
  background: #1f3269;
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-section .flex-left h1 {
  width: 80%;
  margin: 0 auto;
  font-size: 4rem;
  color: #F2F2F2;
  font-weight: 800;
}
.hero-section .flex-left h3 {
  margin: 3rem auto 0 auto;
  width: 80%;
  color: #F2F2F2;
  font-size: 1.4rem;
  font-weight: 400;
}
.hero-section .flex-right {
  height: 100%;
  width: 50%;
}
.hero-section .flex-right .hero-image-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-section .flex-right .hero-image-carousel .slideshowContainer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.hero-section .flex-right .hero-image-carousel .imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}
.hero-section .flex-right .hero-image-carousel .visible {
  opacity: 1;
}
.hero-section .flex-right .hero-image-carousel .slideshowArrow {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.hero-section .flex-right .hero-image-carousel .slideshowArrow:hover {
  opacity: 0.75;
}
.hero-section .flex-right .hero-image-carousel #leftArrow {
  position: absolute;
  color: #F2F2F2;
  left: 4%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hero-section .flex-right .hero-image-carousel #rightArrow {
  color: #F2F2F2;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(50%, -50%);
}
.hero-section .flex-right .hero-image-carousel .slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-section .flex-right .hero-image-carousel .circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}
.hero-section .flex-right .hero-image-carousel .dot {
  background-color: hsla(225, 49%, 44%, 0.7);
  border: solid 2px #1f3269;
}
.hero-section .flex-right .hero-image-carousel img {
  width: 100%;
}

.choose-section {
  height: -moz-fit-content;
  height: fit-content;
  padding: 3rem;
}
.choose-section h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #25313C;
}
.choose-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.choose-section .container button {
  padding: 0.5rem 1rem;
  background: none;
  border: 2px solid #BE373A;
  font-weight: 600;
  border-radius: 0.3rem;
  cursor: pointer;
  color: #BE373A;
  transition: 0.3s;
}
.choose-section .container button:hover, .choose-section .container :active {
  background: hsla(359, 55%, 48%, 0.7);
  border: 2px solid #BE373A;
  color: #F2F2F2;
  transform: translateY(10%);
}
.choose-section .container .btn-active {
  background: hsla(359, 55%, 48%, 0.7);
  border: 2px solid hsla(359, 55%, 48%, 0.7);
  color: #F2F2F2;
}

.responsive-hidden {
  display: none;
}

.switch {
  height: -moz-fit-content;
  height: fit-content;
  width: 300%;
  display: flex;
  transition: 1s cubic-bezier(0.54, 0.17, 0.35, 1.25);
  overflow-x: hidden;
}
.switch .pre-press {
  flex-shrink: 1;
  width: 100%;
  z-index: 100;
}
.switch .pre-press .introduction {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.switch .pre-press .introduction .flex-left {
  width: 40%;
  overflow: hidden;
}
.switch .pre-press .introduction .flex-left img {
  width: 100%;
}
.switch .pre-press .introduction .flex-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: right;
  overflow: hidden;
}
.switch .pre-press .introduction .flex-right .info {
  width: 75%;
  margin: 0 auto;
}
.switch .pre-press .introduction .flex-right .info h2 {
  font-size: 3rem;
  color: #25313C;
}
.switch .pre-press .introduction .flex-right .info p {
  margin-top: 3rem;
  text-align: justify;
  line-height: 200%;
}
.switch .pre-press .more-infrastructure {
  width: 100%;
  margin: 2rem auto;
  display: flex;
  gap: 2rem;
  background: white;
  color: #F2F2F2;
}
.switch .pre-press .more-infrastructure .carousel-container {
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.switch .pre-press .more-infrastructure .carousel {
  position: relative;
  max-width: 378px;
  max-height: 278px;
  margin: 10px;
  overflow: hidden;
}
.switch .pre-press .more-infrastructure .carousel-slide {
  width: 100%;
  display: none;
}
.switch .press {
  overflow: hidden;
  width: 100%;
  z-index: 100;
}
.switch .press .introduction {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.switch .press .introduction .flex-left {
  width: 40%;
  overflow: hidden;
}
.switch .press .introduction .flex-left img {
  width: 100%;
}
.switch .press .introduction .flex-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: right;
  overflow: hidden;
}
.switch .press .introduction .flex-right .info {
  width: 75%;
  margin: 0 auto;
}
.switch .press .introduction .flex-right .info h2 {
  font-size: 3rem;
  color: #25313C;
}
.switch .press .introduction .flex-right .info p {
  margin-top: 3rem;
  text-align: justify;
  line-height: 200%;
}
.switch .press .more-infrastructure {
  width: 100%;
  margin: 2rem auto;
  display: flex;
  gap: 2rem;
  background: white;
  color: #F2F2F2;
}
.switch .press .more-infrastructure .carousel-container {
  margin: auto;
  display: flex;
  padding: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.switch .press .more-infrastructure .carousel {
  position: relative;
  max-width: 378px;
  max-height: 278px;
  margin: 10px;
  overflow: hidden;
}
.switch .press .more-infrastructure .carousel-slide {
  width: 100%;
  display: none;
}
.switch .post-press {
  overflow: hidden;
  width: 100%;
  z-index: 100;
}
.switch .post-press .introduction {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.switch .post-press .introduction .flex-left {
  width: 40%;
  overflow: hidden;
}
.switch .post-press .introduction .flex-left img {
  width: 100%;
}
.switch .post-press .introduction .flex-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: right;
  overflow: hidden;
}
.switch .post-press .introduction .flex-right .info {
  width: 75%;
  margin: 0 auto;
}
.switch .post-press .introduction .flex-right .info h2 {
  font-size: 3rem;
  color: #25313C;
}
.switch .post-press .introduction .flex-right .info p {
  margin-top: 3rem;
  text-align: justify;
  line-height: 200%;
}
.switch .post-press .more-infrastructure {
  width: 100%;
  margin: 2rem auto;
  display: flex;
  gap: 2rem;
  background: white;
  color: #F2F2F2;
}
.switch .post-press .more-infrastructure .carousel-container {
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.switch .post-press .more-infrastructure .carousel {
  position: relative;
  max-width: 378px;
  max-height: 278px;
  margin: 10px;
  overflow: hidden;
}
.switch .post-press .more-infrastructure .carousel-slide {
  width: 100%;
  display: none;
}

@media (max-width: 768px) {
  body {
    width: 100%;
  }
  body .hero-section {
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column-reverse;
  }
  body .hero-section .flex-left {
    width: 100%;
    text-align: center;
    padding: 5rem 0 1rem 0;
  }
  body .hero-section .flex-left h3 {
    margin: 2rem auto 0 auto;
  }
  body .hero-section .flex-right {
    width: 100%;
  }
  body .hero-section .flex-right .hero-image-carousel {
    height: 100%;
  }
  body .hero-section .flex-right .hero-image-carousel .slideshowContainer {
    width: 100%;
    height: 100%;
  }
  body .choose-section h3 {
    margin-bottom: 2rem;
  }
  body .choose-section .container {
    flex-direction: column;
    gap: 2rem;
  }
  body .choose-section .container button {
    width: 50%;
    padding: 1rem;
    font-size: 1.2rem;
  }
  body .switch .pre-press .introduction, body .switch .press .introduction, body .switch .post-press .introduction {
    flex-direction: column;
  }
  body .switch .pre-press .introduction .flex-left, body .switch .press .introduction .flex-left, body .switch .post-press .introduction .flex-left {
    width: 100%;
  }
  body .switch .pre-press .introduction .flex-right, body .switch .press .introduction .flex-right, body .switch .post-press .introduction .flex-right {
    width: 100%;
  }
  body .switch .pre-press .introduction .flex-right .info, body .switch .press .introduction .flex-right .info, body .switch .post-press .introduction .flex-right .info {
    width: 90%;
  }
  body .switch .pre-press .introduction .flex-right .info h2, body .switch .press .introduction .flex-right .info h2, body .switch .post-press .introduction .flex-right .info h2 {
    text-align: center;
    font-size: 2rem;
  }
  body .switch .pre-press .introduction .flex-right .info p, body .switch .press .introduction .flex-right .info p, body .switch .post-press .introduction .flex-right .info p {
    margin-top: 2rem;
    line-height: 180%;
  }
  body .switch .pre-press .more-infrastructure, body .switch .press .more-infrastructure, body .switch .post-press .more-infrastructure {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.footer {
  position: relative;
  width: 100%;
  background: #6D7D8B;
  min-height: 100px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}
.social-icon__item .menu__link,
.menu__item .menu__link {
  font-weight: 500;
}

.social-icon__link {
  color: #F2F2F2;
  margin: 1rem;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link i {
  font-size: 2rem;
  margin-left: 1rem;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 1;
  font-weight: 300;
}

.menu__link:hover {
  color: #25313C;
}

.footer p {
  color: #F2F2F2;
  margin: 1rem 0 0.4rem 0;
  font-size: 0.8rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer {
    padding: 1rem 0.5rem;
  }
  .menu {
    width: 100%;
  }
}/*# sourceMappingURL=infrastructure.css.map */