@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("../assets/fonts/scotland/configFont.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #333333;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
}

.default-width-center {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-body {
  display: flex;
  flex-direction: column;
}

.float-background-image {
  position: absolute;
  z-index: -1;
  top: 0;
}

@media (max-width: 46.875rem) {
  .float-background-image {
    display: none;
  }
}
#header {
  padding: 1.5rem 1rem;
}
#header .navegation-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#header .navegation-area .container-logo {
  width: 100%;
  max-width: 10.625rem;
}
#header .navegation-area .container-logo .container-logo-image {
  width: 100%;
}
#header .navegation-area .navegation-menu .navegation-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
#header .navegation-area .navegation-menu .navegation-list a {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-weight: 500;
}
#header .navegation-area .navegation-menu .navegation-list a img {
  width: 1.5rem;
  height: 1.5rem;
}
#header .navegation-area .navegation-menu .navegation-list a svg {
  transition: all 0.3s;
}
#header .navegation-area .navegation-menu .navegation-list a svg path {
  transition: all 0.3s;
}
#header .navegation-area .navegation-menu .navegation-list a:hover {
  background-color: #6994A8;
  color: #f8f8f8;
}
#header .navegation-area .navegation-menu .navegation-list a:hover svg {
  transform: rotate(180deg);
}
#header .navegation-area .navegation-menu .navegation-list a:hover svg path {
  stroke: white;
}
#header .navegation-area .navegation-menu .navegation-list a.active {
  background-color: #8F6244;
  color: #f8f8f8;
}
#header .navegation-area .navegation-menu .navegation-list a.active:hover {
  opacity: 0.7;
}
#header .navegation-area .navegation-menu .navegation-list .dropdownComponent:hover .dropdown-navegation {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
#header .navegation-area .navegation-menu .navegation-list .dropdown-navegation {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  background: #f8f8f8;
  padding: 20px;
  top: 100px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
#header .navegation-area .navegation-menu .navegation-list .dropdown-navegation .group-menu-itens {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#header .navegation-area .burguer-area {
  display: none;
}
#header .social-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.75rem;
}
#header .social-area .social-item {
  width: 3rem;
  height: 3rem;
  background-color: #EB6726;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#header .social-area .social-item img {
  width: 1.5rem;
  height: 1.5rem;
}
#header.decor .navegation-area .navegation-menu .navegation-list a:hover {
  background-color: #49C9C1;
}
#header.decor .navegation-area .navegation-menu .navegation-list a.active {
  background-color: #49C9C1;
  color: #f8f8f8;
}

@media (max-width: 46.875rem) {
  #header .navegation-area .navegation-menu {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 9rem;
    overflow: hidden;
    transition: 0.3s all;
    padding: 0;
    background-color: #f8f8f8;
    padding: 1rem 0;
    z-index: 10;
    visibility: hidden;
    width: 0;
  }
  #header .navegation-area .navegation-menu .navegation-list {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  #header .navegation-area .burguer-area {
    display: flex;
    flex-direction: column;
    width: 32px;
    position: relative;
    gap: 0.25rem;
    cursor: pointer;
  }
  #header .navegation-area .burguer-area .burguer-button {
    width: 100%;
    height: 0.25rem;
    background-color: #333333;
    border: none;
    border-radius: 0;
    transition: all 0.3s;
  }
  #header .navegation-area.active .navegation-menu {
    visibility: visible;
    width: 100%;
    background-color: #f8f8f8;
    padding: 1rem;
  }
  #header .navegation-area.active .burguer-button:first-child {
    position: absolute;
    transform: rotate(45deg);
  }
  #header .navegation-area.active .burguer-button:nth-child(2) {
    width: 0;
  }
  #header .navegation-area.active .burguer-button:last-child {
    position: absolute;
    transform: rotate(-45deg);
  }
}
#footer {
  margin-top: 5rem;
}
#footer .top-footer {
  background-color: #EAEAEA;
  padding: 2.75rem;
  font-size: 0.875rem;
}
#footer .top-footer .grid-footer-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr) 12.5rem;
  gap: 0.5rem;
}
#footer .top-footer .grid-footer-area .title-list {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
#footer .top-footer .grid-footer-area .container-logo img {
  width: 100%;
  max-width: 9.375rem;
}
#footer .top-footer .grid-footer-area .contact-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
#footer .top-footer .grid-footer-area .contact-area li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
}
#footer .top-footer .grid-footer-area .contact-area li img {
  width: 1.5rem;
  height: 1.5rem;
}
#footer .top-footer .grid-footer-area .navegation-area ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#footer .top-footer .grid-footer-area .navegation-area ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 400;
}
#footer .top-footer .grid-footer-area .address-area {
  max-width: 18.75rem;
}
#footer .bottom-footer {
  background-color: #304145;
  padding: 1.25rem 1rem;
  text-align: center;
}
#footer .bottom-footer p {
  color: #f8f8f8;
}
#footer .bottom-footer p a {
  color: #FF7716;
}

@media (max-width: 46.875rem) {
  #footer .top-footer .grid-footer-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
  #footer .top-footer .grid-footer-area .title-list {
    margin: 0.25rem;
  }
  #footer .top-footer .grid-footer-area .contact-area {
    align-items: center;
  }
}
.button {
  display: block;
  text-decoration: none;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background-color: #6994A8;
  color: #f8f8f8;
}
.button.secondary {
  background: none;
  border: 2px solid;
}
.button.tertiary {
  letter-spacing: 40%;
  background: none;
  padding: 0;
}
.button:hover {
  opacity: 0.7;
}

.button-group {
  display: flex;
  gap: 0.75rem;
}

#hero-banner .hero-banner-center {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 156.25rem;
}
#hero-banner .hero-banner-center.limited {
  max-width: 90.625rem;
}
#hero-banner .list-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
#hero-banner .list-banner .carrouseu-item {
  position: relative;
}
#hero-banner .list-banner .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 30px;
  min-width: 230px;
  width: 100%;
  transform: translate(-60px) scaleX(0);
  opacity: 0;
  transition: all 0.3s;
  transform-origin: left;
  gap: 1rem;
  color: black;
}
#hero-banner .list-banner .text-box .width-text-box {
  max-width: 80%;
}
#hero-banner .list-banner .text-box .button-area {
  margin-top: 24px;
}
#hero-banner .list-banner .text-box * {
  color: inherit;
}
#hero-banner .list-banner .glide__slide--active .text-box {
  transform: translate(0px) scaleX(1);
  opacity: 1;
}
#hero-banner .list-banner .box-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#hero-banner .list-banner .banner-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero-banner .list-banner .banner-video.mobile {
  display: none;
}
#hero-banner .list-banner .banner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero-banner .list-banner .banner-image.mobile {
  display: none;
}
#hero-banner .float-controls-hero {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
}
#hero-banner .float-controls-hero .button-nav-area {
  display: flex;
  justify-content: space-between;
}
#hero-banner .float-controls-hero .button-nav-area .glide__bullets {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
#hero-banner .float-controls-hero .button-nav-area .bullet {
  border: 4px solid transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease-in-out;
}
#hero-banner .float-controls-hero .button-nav-area .bullet:hover:not(.glide__bullet--active) {
  transform: scale(1.3);
  opacity: 0.7;
  cursor: pointer;
}
#hero-banner .float-controls-hero .button-nav-area .bullet.glide__bullet--active {
  border: 4px solid white;
  background: none;
  width: 24px;
  height: 24px;
}
#hero-banner .float-controls-hero .glide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.4);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
#hero-banner .float-controls-hero .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2);
}

@media (max-width: 46.875rem) {
  #hero-banner .list-banner .text-box {
    max-width: 85%;
  }
}
@media (max-width: 31.25rem) {
  #hero-banner .list-banner .banner-image.mobile {
    display: flex;
  }
  #hero-banner .list-banner .banner-image.desktop {
    display: none;
  }
  #hero-banner .list-banner .banner-video.mobile {
    display: flex;
  }
  #hero-banner .list-banner .banner-video.desktop {
    display: none;
  }
  #hero-banner .list-banner .text-box {
    max-width: none;
    padding: 16px;
  }
  #hero-banner .list-banner .text-box h1,
  #hero-banner .list-banner .text-box h2,
  #hero-banner .list-banner .text-box h3 {
    font-size: 1.25rem;
  }
  #hero-banner .list-banner .text-box p {
    font-size: 0.75rem;
  }
}
.video-area iframe {
  width: 100%;
  height: 26.25rem;
}

.text-section .content-text.default-width-center {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1.25rem;
}
.text-section .content-text.default-width-center .image-area {
  height: -moz-fit-content;
  height: fit-content;
  flex: 2;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.text-section .content-text.default-width-center .image-area .image {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.text-section .content-text.default-width-center .image-area .image.full {
  -o-object-fit: cover;
     object-fit: cover;
}
.text-section .content-text.default-width-center.full {
  align-items: normal;
}
.text-section .content-text.default-width-center.full .image-area {
  height: auto;
}
.text-section .content-text.default-width-center .text-area {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: 1.5rem;
}
.text-section .content-text.default-width-center .text-area .button-area-text {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.text-section .content-text.default-width-center .text-area .button-area-text.center {
  justify-content: center;
}
.text-section .content-text.default-width-center .text-area .button-area-text.right {
  justify-content: flex-end;
}
.text-section .content-text.default-width-center .text-area .button-area-text.left {
  justify-content: flex-start;
}

.text-full-base {
  position: relative;
}
.text-full-base .section-image-divider {
  display: flex;
  gap: 40px;
}
.text-full-base .section-image-divider .image-side {
  width: 100%;
  min-height: 700px;
}
.text-full-base .section-image-divider .image-side img {
  width: 50%;
  position: absolute;
  left: 0;
  max-height: 700px;
  max-width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  -o-object-position: left;
     object-position: left;
}
.text-full-base .section-image-divider .content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  width: 100%;
}
.text-full-base .section-image-divider.animation-scroll .image-side img {
  transform: translateY(60px);
  transition: all 0.8s;
}
.text-full-base .section-image-divider.animation-scroll.active .image-side img {
  transform: translateY(0);
}
.text-full-base .section-image-divider.right {
  flex-direction: row-reverse;
}
.text-full-base .section-image-divider.right .image-side img {
  left: auto;
  right: 0;
  -o-object-position: right;
     object-position: right;
}

@media (max-width: 46.875rem) {
  .text-full-base .section-image-divider,
  .text-full-base .section-image-divider.right {
    gap: 20px;
    flex-direction: column;
  }
  .text-full-base .section-image-divider .image-side,
  .text-full-base .section-image-divider.right .image-side {
    min-height: auto !important;
  }
  .text-full-base .section-image-divider .image-side img,
  .text-full-base .section-image-divider.right .image-side img {
    position: inherit;
    width: 100%;
  }
  .text-full-base .content-side h1 {
    font-size: 40px !important;
  }
}
@media (min-width: 46.875rem) {
  .text-section .content-text.default-width-center {
    flex-direction: row;
    gap: 2.5rem;
  }
  .text-section .content-text.default-width-center.left {
    flex-direction: row-reverse;
  }
}
.form-block {
  display: flex;
}
.form-block.align-left {
  justify-content: left;
}
.form-block.align-center {
  justify-content: center;
}
.form-block.align-right {
  justify-content: right;
}
.form-block .form-area {
  background-color: white;
  padding: 2rem 2.75rem;
  border-radius: 2.5rem;
  max-width: 25rem;
  width: 100%;
}
.form-block .form-area .feedback-message {
  padding: 0.25rem 0.5rem;
  background-color: lightgray;
  color: gray;
}
.form-block .form-area .feedback-message.success {
  color: white;
  background-color: green;
}
.form-block .form-area .feedback-message.error {
  color: white;
  background-color: #a00303;
}
.form-block .form-area form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-block .form-area form label.column {
  display: flex;
  flex-direction: column;
}
.form-block .form-area form label.column input[type=text],
.form-block .form-area form label.column input[type=email],
.form-block .form-area form label.column input[type=phone] {
  border: 1px solid lightgray;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}
.form-block .form-area form .check-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-block .form-area form input[type=submit] {
  margin: 0 auto;
  padding: 0.5rem 1.75rem;
  border-radius: 20px;
  border: none;
  background-color: #BB521F;
  color: white;
  cursor: pointer;
}

@media (max-width: 46.875rem) {
  .form-block.align-left, .form-block.align-center, .form-block.align-right {
    justify-content: center;
  }
}
.section-accordion .container-accordion {
  display: flex;
  flex-direction: column;
}
.section-accordion .container-accordion:last-child {
  border-bottom: 2px solid #f0f0f0;
}
.section-accordion .container-accordion .header-accordion {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 2px solid #f0f0f0;
  cursor: pointer;
}
.section-accordion .container-accordion .header-accordion:hover {
  opacity: 0.8;
}
.section-accordion .container-accordion .header-accordion .content-icon-accordion {
  height: 1.5rem;
  width: 1.5rem;
}
.section-accordion .container-accordion .header-accordion .content-icon-accordion .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-accordion .container-accordion .header-accordion .accordion-title {
  font-size: 1.25rem;
  padding-left: 1rem;
}
.section-accordion .container-accordion .header-accordion .accordion-button {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  border: none;
  background: none;
  margin-left: auto;
}
.section-accordion .container-accordion .header-accordion .accordion-button .icon {
  font-size: 1.5rem;
}
.section-accordion .container-accordion .content-accordion {
  display: none;
}
.section-accordion .container-accordion .content-accordion.visible {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 24px;
  animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.section-accordion .container-accordion .content-accordion.hidden {
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-bottom {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
    display: none;
  }
}
.toast-message {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: lightgray;
  color: darkgray;
  font-weight: 600;
}
.toast-message.sucess {
  background-color: #40cd40;
  color: #025802;
}
.toast-message.error {
  background-color: #aa1717;
  color: white;
}

.slide-in-top {
  animation: slide-in-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  95% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
.box-background-image {
  padding: 4.875rem 0;
}
.box-background-image .center-info {
  display: flex;
}
.box-background-image .center-info .float-box-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: white;
  width: 100%;
  max-width: 33.125rem;
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  clip-path: polygon(0px 0px, 100% 0px, 100% 90.41%, 88.87% 100%, 0px 100%);
  transition: all 0.7s;
}
.box-background-image .center-info .float-box-info .list-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.box-background-image .center-info .float-box-info .list-info .item-box {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 0.5rem;
  transition: all 1s;
}
.box-background-image .center-info .float-box-info .list-info .item-box .tag {
  font-size: 28px;
  color: #e44c2b;
  font-weight: 600;
  line-height: 0.9;
}
.box-background-image.animation-scroll .float-box-info {
  transform: translateY(80px) scale(0.5);
}
.box-background-image.animation-scroll .float-box-info .list-info .item-box {
  opacity: 0;
  transform: translateX(-60px);
}
.box-background-image.animation-scroll.active .float-box-info {
  transform: translateY(0) scale(1);
}
.box-background-image.animation-scroll.active .float-box-info .list-info .item-box {
  opacity: 1;
  transform: translateX(0);
}

.cards-image-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.cards-image-info .title-area span {
  font-weight: 600;
}
.cards-image-info .card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23.75rem, 1fr));
  gap: 1.5rem;
  justify-content: space-between;
}
.cards-image-info .card-list .individual-card {
  position: relative;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  height: 39.5rem;
}
.cards-image-info .card-list .individual-card .top-logotype {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80%;
  max-width: 15.875rem;
}
.cards-image-info .card-list .individual-card .description-area {
  padding: 2rem;
  padding-top: 3.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
.cards-image-info.animation-scroll {
  transition: all 0.5s;
}
.cards-image-info.animation-scroll .card-list .individual-card {
  transition: all 0.8s;
}
.cards-image-info.animation-scroll .card-list .individual-card:nth-child(odd) {
  transform-origin: left center;
  transform: translateX(-80px) scale(0.8);
}
.cards-image-info.animation-scroll .card-list .individual-card:nth-child(even) {
  transform-origin: right center;
  transform: translateX(80px) scale(0.8);
}
.cards-image-info.animation-scroll.active .card-list .individual-card:nth-child(odd), .cards-image-info.animation-scroll.active .card-list .individual-card:nth-child(even) {
  transform: translateX(0px);
}

@media (max-width: 31.25rem) {
  .cards-image-info .card-list {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  }
  .cards-image-info .card-list .individual-card {
    height: 31.25rem;
  }
  .cards-image-info .card-list .individual-card .top-logotype {
    width: 50%;
  }
  .cards-image-info .card-list .individual-card .description-area {
    padding: 1.375rem;
    padding-top: 3rem;
  }
}
#popup-area {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 6;
}
#popup-area .popup-box {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem 2.5rem;
  max-width: 59.375rem;
  max-height: 90%;
  transform: scale(0.7);
  transition: all 0.3s;
  gap: 1rem;
}
#popup-area .popup-box.base .popup-data {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  overflow: auto;
}
#popup-area .popup-box.base .popup-data .title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#popup-area .popup-box.base .popup-data .title-box h1 {
  font-size: 1.75rem;
}
#popup-area .popup-box.base .popup-data .title-box .close-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  background: #304046;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 600;
}
#popup-area .popup-box.base .popup-data img {
  max-height: 20rem;
  min-width: 46.875rem;
  border-radius: 1.5rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#popup-area .popup-box.base .popup-data .content {
  white-space: pre-line;
}
#popup-area.active {
  display: flex;
}
#popup-area.active .popup-box {
  transform: scale(1);
}

@media (max-width: 46.875rem) {
  #popup-area .popup-box {
    padding: 1.5rem 1rem;
  }
  #popup-area .popup-box.base .popup-data img {
    min-width: auto;
  }
}
.hero-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 90vh;
  height: 90dvh;
  min-height: 46.875rem;
  padding-bottom: 6.25rem;
  background-size: cover;
  background-position: center;
}
.hero-area.minor {
  height: 80vh;
  min-height: 43.75rem;
  padding-bottom: 0rem;
}
.hero-area.ultra-minor {
  height: 40vh;
  min-height: 28.75rem;
  padding-bottom: 0rem;
}
.hero-area .description-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
  text-align: center;
  gap: 2.5rem;
}
.hero-area .description-area .new-title-base strong {
  color: white;
}
.hero-area .description-area .new-title-base h1 {
  color: white;
  font-size: 90px;
  font-weight: 700;
}
.hero-area .description-area h1 {
  font-size: 3.25rem;
  color: white;
}
.hero-area .description-area p {
  font-size: 1.25rem;
  color: white;
}
.hero-area .down-button {
  position: absolute;
  bottom: -1rem;
  color: white;
  border: none;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  background-color: #EF3838;
}

@media (max-width: 46.875rem) {
  .hero-area {
    height: 70vh;
    height: 70dvh;
    padding: 0;
    min-height: 31.25rem;
  }
  .hero-area .description-area {
    gap: 1.25rem;
  }
  .hero-area .description-area .new-title-base strong {
    color: white;
  }
  .hero-area .description-area .new-title-base h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
  }
  .hero-area .description-area h1 {
    font-size: 1.75rem;
  }
  .hero-area .description-area p {
    font-size: 1rem;
  }
}
.float-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 18.75rem;
}
.float-area .float-info-box {
  position: absolute;
  top: -6.25rem;
  display: flex;
  gap: 1.25rem;
}
.float-area .float-info-box .float-box {
  position: relative;
  padding: 3.75rem 1.25rem;
  background: #142024;
  border-radius: 1.25rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.float-area .float-info-box .float-box .icon-area {
  width: 4.375rem;
  height: 4.375rem;
  position: absolute;
  background: #EE3838;
  top: -2.1875rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.float-area .float-info-box .float-box .info-box h1 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.float-area .float-info-box .float-box .info-box p {
  color: white;
}

@media (max-width: 46.875rem) {
  .float-area {
    height: auto;
    padding: 2.5rem 0;
  }
  .float-area .float-info-box {
    position: relative;
    flex-direction: column;
    top: auto;
    gap: 52px;
  }
}
.service-area {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 4rem 0;
}
.service-area .info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  max-width: 50rem;
  text-align: center;
  align-items: center;
}
.service-area .service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 3.75rem 1rem;
}
.service-area .service-list .service-box {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}
.service-area .service-list .service-box .icon-area {
  width: 3.75rem;
  height: 3.75rem;
  min-width: 3.75rem;
  min-height: 3.75rem;
  border-radius: 50%;
  background-color: #EAEAEA;
  padding: 0.75rem;
}
.service-area .service-list .service-box .icon-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-area .service-list .service-box .info-area {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact_area {
  background-color: #304046;
  padding: 5rem 1rem;
}
.contact_area .default-width-min {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  max-width: 50rem;
  width: 100%;
}
.contact_area .default-width-min div {
  width: 100%;
}
.contact_area .contact-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.25rem;
}
.contact_area .contact-info h1 {
  color: white;
  text-align: center;
  font-size: 2rem;
}
.contact_area .contact-info .description * {
  color: white;
  text-align: center;
  font-size: 1.25rem;
}
.contact_area .contact-form-default {
  width: 100%;
}
.contact_area .contact-form-default input {
  width: 100%;
  padding: 0.5rem 1.5rem;
  border-radius: 1.25rem;
  border: none;
  font-size: 1rem;
}
.contact_area .contact-form-default input[type=submit] {
  margin-top: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  background-color: #6994A8;
  color: white;
  padding: 0.5rem 2rem;
  cursor: pointer;
}
.contact_area .contact-form-default textarea {
  width: 100%;
  padding: 0.5rem 1.5rem;
  border-radius: 1.25rem;
  border: none;
}
.contact_area .contact-form-default p {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact_area .contact-form-default p br {
  display: none;
}

.about-title-area {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 43.75rem;
  background-size: cover;
}
.about-title-area h1 {
  font-size: 4.375rem;
  color: white;
  text-align: center;
}

.about-description-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 5rem;
  background-color: #304046;
}
.about-description-area::before {
  content: "-";
  position: absolute;
  top: 0;
  height: 3.75rem;
  width: 0.3125rem;
  background: #EF3838;
}
.about-description-area * {
  color: white;
  font-size: 1.25rem;
}

.service-list-area {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 5.625rem;
}
.service-list-area .service-box {
  display: flex;
  gap: 1.5rem;
}
.service-list-area .service-box .icon-area {
  width: 5.625rem;
  height: 5.625rem;
  min-width: 5.625rem;
  min-height: 5.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #304046;
  border-radius: 50%;
}
.service-list-area .service-box .icon-area img {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-list-area .service-box .info-area .button {
  margin-top: 2.5rem;
}

@media (max-width: 46.875rem) {
  .service-list-area {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.625rem;
  }
}
.animation-scroll {
  opacity: 0;
  transition: all 0.5s;
  /* transform: translateX(0px); */
}
.animation-scroll.active {
  opacity: 1;
  /* transform: translateX(0); */
}/*# sourceMappingURL=style.css.map */