body {
  font-family: "Open Sans", sans-serif;
  background: #fe7002;
}

.content {
  background: #fe7002;
}
.content .card {
  border: none;
  overflow: hidden;
  border-radius: 0;
}
.content .card .new-box {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.content .card .new-box .new {
  position: relative;
  background: #fe7002;
  color: #fff;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  top: 10px;
}
.content .card .new-box .new .icon {
  display: flex;
  width: 16px;
  height: 16px;
}
.content .card .new-box .new p {
  font-weight: 900;
  font-size: 12px;
  margin: 0;
}
.content .card .header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  background: #215fa8;
  color: #fff;
}
@media (max-width: 799px) {
  .content .card .header {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 15px;
  }
}
.content .card .header .logo-box {
  width: 200px;
  height: 125px;
  display: flex;
  justify-content: center;
}
.content .card .header .logo {
  width: 200px;
  position: absolute;
}
.content .card .header .header-right {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding-top: 35px;
}
@media (max-width: 799px) {
  .content .card .header .header-right {
    text-align: center;
  }
}
.content .card .header .header-right p strong.fw-bold {
  font-size: 25px;
  font-weight: 900;
}
.content .card .card-content {
  margin-top: 50px;
  display: flex;
  padding: 0;
  margin-bottom: 20px;
}
.content .card .card-content .text {
  display: flex;
  flex-direction: column;
  padding: 0 60px 40px 0;
  width: 80%;
}
.content .card .card-content .text h1 {
  font-size: 20px;
  color: #fe7002;
  font-weight: 900;
}
.content .card .card-content .text h2 {
  font-size: 16px;
  font-weight: 600;
}
.content .card .card-content .text p {
  font-size: 13px;
}
.content .card .card-content .text .actions .btn {
  background: #215fa8;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 280px;
  font-weight: bold;
}
.content .card .card-content .text .actions .btn .icon {
  display: flex;
  width: 20px;
  height: 20px;
}
@media (max-width: 799px) {
  .content .card .card-content {
    flex-direction: column;
  }
  .content .card .card-content .text {
    width: 100%;
    padding: 0 30px;
  }
}
.content .card .slider {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  margin: 80px 0 20px 0;
  padding: 0;
}
.content .card .slider ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.content .card .slider ul li {
  width: 25%;
  display: flex;
  position: relative;
  padding: 0;
  margin: 0;
  flex-direction: column;
  border-left: 1px solid #000;
}
.content .card .slider ul li:nth-child(2n) .text {
  bottom: auto;
  top: 20px;
}
.content .card .slider ul li:first-child {
  border-left: none;
  border-right: 1px solid #000;
}
.content .card .slider ul li img {
  max-width: 100%;
}
.content .card .slider ul li .text {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 5px;
  align-items: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  bottom: 20px;
  background: rgba(0, 0, 0, 0.4666666667);
  text-transform: uppercase;
}
.content .card .slider ul li .text span {
  font-size: 14px;
  font-weight: 200;
}
.content .card .slider ul li .text strong {
  font-size: 24px;
  font-weight: 900;
}
@media (max-width: 799px) {
  .content .card .slider {
    border: none;
    border-radius: 0;
    margin: 0;
  }
  .content .card .slider ul {
    flex-wrap: wrap;
  }
  .content .card .slider ul li {
    width: 50%;
  }
  .content .card .slider ul li .text span {
    font-size: 12px;
  }
  .content .card .slider ul li .text strong {
    font-size: 18px;
  }
}
.content .card .box-contact {
  display: flex;
  justify-content: end;
  width: 20%;
}
.content .card .box-contact .contact {
  display: flex;
  background: #215fa8;
  color: #fff;
  padding: 20px 30px;
  margin-bottom: 20px;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
}
.content .card .box-contact .contact > div {
  display: flex;
  gap: 8px;
  align-items: center;
}
.content .card .box-contact .contact > div.infos {
  align-items: start;
}
.content .card .box-contact .contact > div.infos .icon {
  width: 14px;
  height: 14px;
  display: flex;
  position: relative;
  top: 2px;
}
.content .card .box-contact .contact > div.infos .value {
  font-size: 12px;
  font-weight: 300;
  max-width: 90%;
}
.content .card .box-contact .contact > div .icon {
  width: 20px;
  height: 20px;
  display: flex;
}
.content .card .box-contact .contact > div .value {
  font-weight: bold;
}
.content .card .box-contact .contact > div .value a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 799px) {
  .content .card .box-contact {
    width: 100%;
    padding: 30px;
  }
  .content .card .box-contact .contact {
    margin: 0;
  }
}
.content .card .construction {
  border-left: 5px solid #aaa;
  padding: 20px 30px;
  border-radius: 0 5px 5px 0;
  background: #f7f7f7;
  font-size: 15px;
  display: flex;
  width: 80%;
  margin-bottom: 40px;
}
@media (max-width: 799px) {
  .content .card .construction {
    padding: 10px 15px;
  }
}
.content .card .construction .icon {
  width: 10%;
  display: flex;
  justify-content: center;
}
@media (max-width: 799px) {
  .content .card .construction .icon {
    display: none;
  }
}
.content .card .construction .icon svg {
  color: #aaa;
  width: 50%;
}
.content .card .construction .text {
  color: #aaa;
}
.content .card .construction .text h2 {
  color: #555;
  font-size: 22px;
}
.content .card .construction .text h2 .icon {
  display: none;
}
@media (max-width: 799px) {
  .content .card .construction {
    width: 83%;
    margin: 0 30px 30px !important;
    font-size: 12px;
  }
  .content .card .construction .text h2 {
    display: flex;
    gap: 10px;
    font-size: 18px;
    align-items: center;
  }
  .content .card .construction .text h2 .icon {
    display: block;
    width: 70px;
  }
  .content .card .construction .text h2 .icon svg {
    width: 100%;
  }
}
.content .card .footer {
  background: #fe7002;
  display: flex;
  justify-content: end;
}
.content .card .footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.content .card .footer ul li {
  padding: 0;
  margin: 0;
  display: flex;
}
.content .card .footer ul li a svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.content .card .footer p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  padding: 5px 20px;
}

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