/*

-------- STYLE INDEX ---------

    1. BASE
        1.1 BASE - HEADER
        1.2 BASE - FOOTER
    2. HOME
        2.1 HOME - HERO SECTION
        2.2 HOME - CATEGORY SECTION
        2.3 HOME - ABOUT SECTION
        2.4 HOME - PARTNERS SECTION
        2.5 HOME - REPRESENTATIVE SECTION
        2.6 HOME - NEWS SECTION
        2.7 HOME - VIDEO SECTION
        2.8 HOME - PORTFOLIO SECTION
    3. PRODUTOS
        3.1 PRODUTOS - PRODUCTS SECTION
    4. EMPRESA
        4.1 EMPRESA - NETWORK SECTION
        4.2 EMPRESA - ABNT SECTION
        4.3 EMPRESA - MISSION SECTION
        4.4 EMPRESA - STRUCTURE SECTION
    5. SINGLE
    6. CONTACT
    7. SEARCH PAGE

*/
/*   1. BASE   */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  max-height: 100vh;
  height: 100%;
  width: 100%;
  background: #ffffff;
}

*,
input,
button {
  border: none;
  background: none;
  outline: none !important;
  font-family: "Ubuntu";
}

.container-default {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}

.title {
  color: #f6921e;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 6px;
  text-align: center;
}

.btn-default {
  background: #f6921e;
  color: #ffffff;
  border-radius: 24px;
  padding: 0 20px;
  text-decoration: none;
  border: 2px solid #f6921e;
  display: block;
  width: fit-content;
  font-size: 20px;
  font-weight: 500;
  transition: 0.2s;
}
.btn-default:hover {
  background: #ffffff;
  color: #f6921e;
  text-decoration: none;
}

.btn-default-secondary {
  background: #ffffff;
  color: #f6921e;
  border-radius: 24px;
  padding: 0 42px;
  text-decoration: none;
  border: 2px solid #ffffff;
  display: block;
  width: fit-content;
  font-size: 16px;
  font-weight: lighter;
  text-transform: uppercase;
  text-align: center;
  line-height: 120%;
  transition: 0.2s;
}
.btn-default-secondary:hover {
  background: transparent;
  color: #ffffff;
  text-decoration: none;
}

.nav-carousel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  left: 4px;
  width: calc(100% - 8px);
}
.nav-carousel button {
  background: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.dots-carousel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  bottom: 30px;
}
.dots-carousel button {
  background: rgba(255, 255, 255, 0.4) !important;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 6px;
}
.dots-carousel button.active {
  background: white !important;
}

.category-card {
  text-decoration: none;
}
.category-card img {
  border-radius: 16px;
  width: 100%;
  transition: 0.2s;
}
.category-card:hover img {
  transform: translateY(-12px);
}

.hero-section-secondary {
  background: url("../img/hero-secondary.png") center center/cover no-repeat;
  padding: 36px 0;
  height: 140px;
  color: #ffffff;
  margin-top: 80px;
}
.hero-section-secondary h1 {
  font-size: 32px;
  margin-bottom: 0;
}
.hero-section-secondary p {
  font-size: 18px;
}

@media (max-width: 991px) {
  .hero-section-secondary {
    padding: 36px 15px;
    height: 160px;
  }

  .title {
    font-size: 24px;
  }

  .btn-default {
    font-size: 16px;
  }
}
/*   1.1 BASE - HEADER   */
.header {
  background-color: #ffffff;
  color: #140f2d;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}
.header .navbar-light {
  min-height: 80px;
}
.header .imgLogo {
  display: block;
}
.header nav {
  display: flex;
  justify-content: space-between !important;
  align-items: center !important;
  position: relative;
}
.header nav .navbar-collapse {
  width: auto;
  flex-grow: unset;
}
.header nav .menu-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.header nav .menu-options li a {
  color: #140f2d;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: 23.12px;
  outline: none;
  font-size: 14px;
  padding: 3px 17px;
  transition: 0.2s;
  position: relative;
}
.header nav .menu-options li a::after {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #000;
  width: 0px;
  bottom: -3px;
  left: 0px;
  transition: 0.2s;
}
.header nav .menu-options li a:hover::after {
  width: 100%;
}
.header nav .menu-options .border-left {
  border-left: 1px solid #f2f2f2;
  height: 25px;
  margin-left: 15px;
  margin-right: 15px;
}
.header nav .btn-search {
  width: 40px;
  height: 40px;
  background-color: #e7e7f1;
  border: none;
  outline: none;
  border-radius: 50%;
  margin-left: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  color: #f6921e;
}
.header nav .btn-search:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.buscaMenuNavbar {
  position: relative;
}
.buscaMenuNavbar form {
  position: absolute;
  right: 0px;
  top: 50px;
}
.buscaMenuNavbar form input {
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  font-weight: 400;
  border: none;
  min-width: 350px;
  padding-right: 10px;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  height: 40px;
  padding-left: 15px;
  box-shadow: 0px 4px 16px -2px rgba(0, 0, 0, 0.16);
  border: 1px solid #f1f3f7;
}
.buscaMenuNavbar form button {
  height: 32px;
  width: 32px;
  border: none;
  outline: none;
  background-color: #f3f3f8;
  border-radius: 8px;
  position: absolute;
  top: 4px;
  transition: 0.2s;
  right: 4px;
}
.buscaMenuNavbar form button:hover {
  opacity: 0.8;
  transition: 0.2s;
}

@media (max-width: 1200px) {
  .header nav .navbar-collapse {
    top: 73px;
    background-color: #fff;
    position: absolute;
    right: 0;
    width: 100% !important;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .header nav .navbar-collapse ul {
    flex-direction: column;
  }
  .header nav .navbar-collapse ul li {
    width: 100%;
    display: flex;
  }
  .header nav .navbar-collapse ul li a {
    width: 100%;
    flex: 1;
    padding: 20px 40px;
  }
  .header nav .navbar-collapse ul .socialMediaMenuHeader,
  .header nav .navbar-collapse ul .buscaMenuNavbar {
    display: none;
  }
}
/*   1.2 BASE - FOOTER   */
.footer {
  background: black;
  padding-top: 50px;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer-medias {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 27px 24px 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-medias .flexAlignFooterMedia {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
.footer .footer-medias .flexAlignFooterMedia .footer-options {
  padding-left: 30px;
}
.footer .footer-medias .flexAlignFooterMedia .footer-options a {
  color: #e7e7f1;
  font-weight: 500;
  font-size: 14px;
  margin-right: 15px;
}
.footer .footer-medias .footer-medias-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .footer-medias .footer-medias-container p {
  margin: 0;
  color: #e7e7f1;
  font-size: 13px;
  opacity: 0.4;
  line-height: 19px;
}
.footer .footer-medias .footer-medias-container div {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.footer .footer-medias .footer-medias-container div a {
  margin-left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  color: #ffffff;
}
.footer .footer-medias .footer-medias-container div a:first-child {
  margin-left: 21px;
}
.footer .copyright {
  padding: 24px 27px 31px 27px;
}
.footer .copyright p {
  margin: 0;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .footer .footer-medias {
    flex-direction: column;
    border-bottom: none;
  }
  .footer .footer-medias .flexAlignFooterMedia {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-medias .flexAlignFooterMedia .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .footer .footer-medias .flexAlignFooterMedia .footer-nav a {
    padding: 10px;
  }
  .footer .footer-medias .footer-medias-container {
    flex-direction: column;
    margin-top: 40px;
  }
  .footer .footer-medias .footer-medias-container div {
    margin-top: 20px;
  }
  .footer .copyright {
    text-align: center;
  }
}
/*   2. HOME   */
/*   2.1 HOME - HERO SECTION   */
.hero-section {
  margin-top: 80px;
}
.hero-section #heroCarousel .item {
  height: 100%;
}
.hero-section #heroCarousel .item img {
  height: 70vh;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-section #heroCarousel .item img {
    height: 180px;
  }
}
/*   2.2 HOME - CATEGORY SECTION   */
.categories-section {
  padding: 20px 0 56px 0;
}
.categories-section .container-default p {
  text-align: center;
  margin: 0;
  font-size: 20px;
}
.categories-section .container-default .btn-default {
  margin: 0 auto;
  font-weight: 400;
}
.categories-section #categoryCarousel {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 95%;
}
.categories-section #categoryCarousel .owl-stage-outer {
  padding-top: 20px;
}
.categories-section #categoryCarousel .nav-carousel {
  width: 110%;
  left: -5%;
  z-index: -1;
}
.categories-section #categoryCarousel .nav-carousel button {
  background: rgba(204, 204, 204, 0.5);
}

@media (max-width: 991px) {
  .categories-section #categoryCarousel {
    width: 90%;
    margin-top: 16px;
  }
  .categories-section #categoryCarousel .nav-carousel {
    width: 120%;
    left: -10%;
  }
  .categories-section .container-default p {
    font-size: 16px;
  }
}
/*   2.3 HOME - ABOUT SECTION   */
.about-section {
  /* background: url("../img/empresa2.png") center center/cover no-repeat; */
  background-image: url("../img/empresa2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56px 0 30px;
}
.about-section p {
  max-width: 230px;
  width: 100%;
  color: #ffffff;
  margin-bottom: 56px;
  margin-left: 30px;
}
.about-section .about-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.about-section .about-title span {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.about-section .about-title span h1 {
  font-size: 80px;
  color: #ffffff;
}
.about-section .about-title h2 {
  font-size: 36px;
  max-width: 200px;
  width: 100%;
  color: #ffffff;
}
.about-section .btn-default-secondary {
  margin-left: 30px;
  max-width: 230px;
  width: 100%;
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 991px) {
  .about-section {
    position: relative;
  }
  .about-section .container-default {
    position: relative;
    z-index: 1;
  }
  .about-section p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .about-section .about-title {
    justify-content: center;
  }
  .about-section .btn-default-secondary {
    margin: 0 auto;
  }
  .about-section .iframe-video iframe {
    height: 315px;
  }

  .about-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*   2.4 HOME - PARTNERS SECTION   */
.partners-section {
  padding: 10px 0 100px 0;
  background: #ebebeb;
  margin-top: 40px;
}
.partners-section p {
  text-align: center;
  font-size: 20px;
}
.partners-section #partnersCarousel {
  margin: 0 auto;
  margin-top: 80px;
  width: 95%;
}
.partners-section #partnersCarousel .item img {
  height: 56px;
  width: 240px;
  object-fit: contain;
  margin: auto;
}
.partners-section #partnersCarousel .nav-carousel {
  width: 110%;
  left: -5%;
  top: calc(50% - 12px);
}
.partners-section #partnersCarousel .nav-carousel button {
  background: rgba(87, 87, 87, 0.5);
  color: #ffffff;
}

@media (max-width: 991px) {
  .partners-section p {
    font-size: 16px;
  }
}
/*   2.5 HOME - REPRESENTATIVE SECTION   */
.representatives-section {
  padding-top: 64px;
}
.representatives-section .col-md-3 {
  display: flex;
  align-items: flex-end;
}
.representatives-section .col-md-3 .representatives-img {
  width: 100%;
}
.representatives-section .col-md-3 .representatives-img img {
  width: 100%;
  height: auto;
}
.representatives-section .representatives-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.representatives-section .representatives-text-container .title {
  margin-bottom: 30px;
  font-size: 24px;
}
.representatives-section .representatives-text-container p {
  text-align: justify;
  max-width: 464px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 48px;
  font-size: 20px;
}
.representatives-section .representatives-text-container .btn-default {
  padding: 8px 20px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .representatives-section .col-md-3 {
    display: none;
  }
  .representatives-section .col-md-9 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .representatives-section .representatives-text-container p {
    font-size: 16px;
  }
}
/*   2.6 HOME - NEWS SECTION   */
.news-section {
  background: #ebebeb;
  padding: 36px 0 50px 0;
}
.news-section .container-default {
  padding: 0 40px;
}
.news-section .title {
  margin-bottom: 18px;
}
.news-section .news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: 0.2s;
}
.news-section .news-card:hover {
  transform: translateY(-10px);
}
.news-section .news-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.news-section .news-card .card-body {
  background: black;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 0 0 16px 16px;
  color: #ffffff;
  min-height: 212px;
}
.news-section .news-card .card-body span {
  font-size: 14px;
  font-weight: lighter;
  margin-bottom: 16px;
  display: block;
}
.news-section .news-card .card-body h3 {
  margin: 0 auto;
  margin-bottom: 16px;
  font-size: 18px;
  text-align: center;
  max-width: 60%;
  width: 100%;
}
.news-section .news-card .card-body p {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 12px;
  font-size: 12px;
  max-width: 90%;
  width: 100%;
  word-wrap: break-word;
}

@media (max-width: 1200px) {
  .news-section .container-default {
    padding: 0;
  }
  .news-section .news-card {
    margin: 12px 0;
  }
  .news-section .news-card img {
    height: 130px;
  }
  .news-section .news-card .card-body {
    min-height: unset;
  }
  .news-section .news-card .card-body h3 {
    max-width: 85%;
  }
  .news-section .news-card .card-body p {
    max-width: 100%;
  }
}
/*   2.7 HOME - VIDEO SECTION   */
.video-section {
  padding: 70px 0;
}
.video-section .col-md-3 {
  display: flex;
  align-items: center;
}
.video-section .iframe-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section .video-box {
  background: #f6921e;
  border-radius: 24px;
  color: #ffffff;
  padding: 24px 36px;
}
.video-section .video-box h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.video-section .video-box p {
  text-align: center;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 991px) {
  .video-section .col-md-3,
  .video-section .col-md-9 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .video-section .video-box {
    margin: 0 auto;
    margin-bottom: 24px;
    max-width: 276px;
    width: 100%;
  }
  .video-section img {
    width: 100%;
  }
  .video-section .iframe-video iframe {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .video-section .iframe-video iframe {
    height: 200px;
  }
}
/*   2.8 HOME - PORTFOLIO SECTION   */
.portfolio-section {
  background: url("../img/MADEIRA.png") center center/cover no-repeat;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 48px;
  border-radius: 24px;
  padding: 64px 0;
}
.portfolio-section .col-md-6 {
  position: relative;
}
.portfolio-section img {
  position: absolute;
  right: 0;
  top: -88px;
  right: calc(50% - 120px);
  height: 330px;
  width: auto;
}
.portfolio-section .portfolio-textbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio-section .portfolio-textbox h1 {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  max-width: 350px;
  width: 100%;
  margin-bottom: 40px;
  text-shadow: 1px 4px 4px rgba(17, 17, 17, 0.7);
}
.portfolio-section .portfolio-textbox .btn-default {
  box-shadow: 1px 4px 4px rgba(17, 17, 17, 0.7);
  padding: 4px 30px;
}
.portfolio-section .portfolio-textbox .btn-default:hover {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.portfolio-product-section {
  margin-bottom: 220px;
}

@media (max-width: 991px) {
  .portfolio-section {
    padding: 30px 0;
  }
  .portfolio-section .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .portfolio-section img {
    position: unset;
    margin: 0 auto;
    display: block;
    margin-bottom: -60px;
    margin-top: 20px;
    height: 240px;
  }
  .portfolio-section .portfolio-textbox h1 {
    font-size: 24px;
  }

  .portfolio-product-section {
    margin-bottom: 150px;
  }
}
/*   3. PRODUTOS   */
/*   3.1 PRODUTOS - PRODUCTS SECTION   */
.products-section {
  padding: 60px 0 200px 0;
}
.products-section .col-md-3 {
  margin: 30px 0;
}

@media (max-width: 991px) {
  .products-section {
    padding-bottom: 100px;
  }
}
/*   4. EMPRESA   */
/*   4.1 EMPRESA - NETWORK SECTION   */
.network-section {
  padding-top: 30px;
}
.network-section .title {
  margin-bottom: 30px;
}
.network-section p {
  font-size: 18px;
  text-align: justify;
  margin: 0;
}
.network-section .network-bg {
  width: 100%;
}

@media (max-width: 991px) {
  .network-section p {
    font-size: 16px;
  }
}
/*   4.2 EMPRESA - ABNT SECTION   */
.abnt-section {
  padding: 30px 0 20px 0;
  border-bottom: 4px solid #ccc;
}
.abnt-section p {
  text-align: justify;
}
.abnt-section .abnt-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.abnt-section .abnt-img-container img {
  width: 270px;
}

/*   4.3 EMPRESA - MISSION SECTION   */
.mission-section {
  padding: 30px 0 20px 0;
}
.mission-section .mission-item {
  margin-bottom: 36px;
}
.mission-section .mission-item .title {
  text-align: left;
  margin: 0;
}
.mission-section img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin-left: auto;
}

@media (max-width: 991px) {
  .mission-section img {
    margin: 0 auto;
    display: block;
    max-width: 260px;
  }
}
/*   4.4 EMPRESA - STRUCTURE SECTION   */
.structure-section {
  background: #ebebeb;
  padding: 40px 0;
}
.structure-section .title {
  margin-bottom: 24px;
}
.structure-section p {
  font-size: 20px;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 18px;
}
.structure-section .sell-team-box {
  background: #f6921e;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.structure-section .sell-team-box p {
  margin: 0;
  font-family: "Cookie";
  color: #ffffff;
  font-size: 32px;
}
.structure-section .sell-team-box img {
  width: 24px;
  margin: 0 8px;
}

.structure-items-section {
  background: url("../img/structure-bg1.png") center center/cover no-repeat;
  padding: 20px 0;
}
.structure-items-section .container-default .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.structure-items-section .structure-item {
  display: flex;
  align-items: center;
  margin: 12px 30px;
}
.structure-items-section .structure-item img {
  width: 40px;
  border-radius: 50%;
  position: relative;
  margin-right: 12px;
}
.structure-items-section .structure-item img::after {
  content: "";
  width: 30px;
  height: 30px;
  background: #f6921e;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.structure-items-section .structure-item p {
  font-size: 24px;
  margin: 0;
  font-weight: lighter;
}
.structure-items-section .bg-structure-img-mobile {
  display: none;
}

.structure-items-reverse-section {
  background: url("../img/structure-bg2.png") center center/cover no-repeat;
}

@media (max-width: 991px) {
  .structure-section p {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
  }
  .structure-section .sell-team-box {
    max-width: 316px;
  }
  .structure-section .sell-team-box p {
    font-size: 18px;
  }
  .structure-section .sell-team-box img {
    width: 18px;
  }

  .structure-items-reverse-section,
  .structure-items-section {
    padding: 20px 0 0 0;
    background: #ebebeb;
  }
  .structure-items-reverse-section .row,
  .structure-items-section .row {
    justify-content: center;
  }
  .structure-items-reverse-section .row .col-md-6:first-child,
  .structure-items-section .row .col-md-6:first-child {
    display: none;
  }
  .structure-items-reverse-section .structure-item,
  .structure-items-section .structure-item {
    margin: 12px 0;
  }
  .structure-items-reverse-section .structure-item p,
  .structure-items-section .structure-item p {
    font-size: 18px;
  }
  .structure-items-reverse-section .bg-structure-img-mobile,
  .structure-items-section .bg-structure-img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .structure-items-reverse-section {
    padding: 0 0 20px 0;
  }
  .structure-items-reverse-section .row .col-md-6:first-child {
    display: block;
  }
  .structure-items-reverse-section .row .col-md-6:last-child {
    display: none;
  }
}
/*   5. SINGLE   */
.single-content-section {
  padding: 50px 0;
  margin-top: 80px;
}
.single-content-section .breadcrumps {
  display: flex;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 36px;
}
.single-content-section .breadcrumps p {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 4px;
}
.single-content-section .single-content-container {
  max-width: 83.333%;
  width: 100%;
  margin: 0 auto;
}
.single-content-section .single-content-container img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.single-content-section .single-content-container h1 {
  font-size: 30px;
  margin-bottom: 20px;
}
.single-content-section .single-content-container p {
  font-size: 18px;
  line-height: 200%;
  word-wrap: break-word;
}
.single-content-section .single-content-container .metadata-box {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.single-content-section .single-content-container .metadata-box p {
  margin: 0;
  font-size: 16px;
  font-weight: lighter;
}
.single-content-section .single-content-container .metadata-box p svg {
  margin-right: 8px;
}
.single-content-section .single-content-container .metadata-box p:last-child {
  margin-left: 30px;
}

.share-media-container {
  display: flex;
  align-items: center;
}
.share-media-container a {
  color: black;
  padding: 0 8px;
  text-decoration: none;
  transition: 0.2s;
}
.share-media-container a:hover {
  opacity: 0.7;
  color: black;
}
.share-media-container p {
  color: #cacad3;
  margin: 0;
  margin-left: 4px;
}
.share-media-container p svg {
  margin-right: 10px;
}
.share-media-container.mobile {
  display: none;
}

.single-content-footer-section {
  padding: 20px 0;
}
.single-content-footer-section .single-content-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.single-content-footer-section .change-post-btn {
  color: #f6921e;
  font-size: 16px;
  padding: 10px 0;
  text-decoration: none;
  margin-top: 70px;
  display: inline-block;
}
.single-content-footer-section .change-post-btn svg {
  transition: 0.2s;
  margin-right: 28px;
}
.single-content-footer-section .change-post-btn.reverse svg {
  margin-right: 0;
  margin-left: 28px;
}
.single-content-footer-section .change-post-btn.reverse:hover svg {
  transform: translateX(10px);
}
.single-content-footer-section .change-post-btn:hover svg {
  transform: translateX(-10px);
}
.single-content-footer-section .col-md-6:last-child {
  text-align: right;
}
.single-content-footer-section .tag-list {
  display: flex;
  align-items: center;
}
.single-content-footer-section .tag-list .btn-default {
  font-size: 16px;
}
.single-content-footer-section .tag-list .btn-default + .btn-default {
  margin-left: 8px;
}
.single-content-footer-section .tag-list .btn-default:hover {
  background: #f6921e;
  color: #ffffff;
}

.readmore-section {
  background: #ffffff;
  padding: 40px 0;
}
.readmore-section .title {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .metadata-box {
    margin-bottom: 36px;
  }
  .metadata-box p svg {
    width: 24px;
  }

  .share-media-container {
    text-align: center;
    margin-bottom: 40px;
    display: none;
  }
  .share-media-container.mobile {
    display: flex;
  }

  .tag-list {
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .tag-list .btn-default {
    margin: 6px 0;
  }
}
/*   6. CONTACT   */
.page-contact-content {
  background-color: #ffffff;
  padding-bottom: 205px;
  margin-bottom: -100px;
}

@media screen and (max-width: 425px) {
  .page-contact-content {
    background-color: transparent;
  }
}
.page-contact-content .description {
  padding-top: 66px;
  padding-bottom: 68px;
  display: flex;
  width: 100%;
  flex-grow: 1;
}

@media screen and (max-width: 425px) {
  .page-contact-content .description {
    padding-top: 40px;
  }
}
.page-contact-content .description p {
  line-height: 29px;
  margin: 0;
  font-size: 18px;
  color: #140f2d;
}

@media screen and (max-width: 425px) {
  .page-contact-content .description p {
    text-align: center;
    font-size: 16px;
    line-height: 23px;
  }
}
.page-contact-content .contact-area {
  border-radius: 16px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 991px) {
  .page-contact-content .contact-area {
    flex-direction: column;
  }
}
.page-contact-content .contact-area .accordion {
  border: none;
  background: #ffffff;
  border-radius: 16px 0px 0px 16px;
  flex: 1;
}

@media screen and (max-width: 425px) {
  .page-contact-content .contact-area .accordion {
    display: none;
  }
}
.page-contact-content .contact-area .accordion.accordion-flush {
  display: none;
}

@media screen and (max-width: 425px) {
  .page-contact-content .contact-area .accordion.accordion-flush {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .accordion {
    border-radius: 16px 16px 0 0;
  }
}
.page-contact-content .contact-area .accordion .accordion-item {
  padding: 33px 32px 24px 51px;
  border: 1px solid #d5d7db;
}

@media screen and (max-width: 425px) {
  .page-contact-content .contact-area .accordion .accordion-item {
    padding: 46px 29px 30px 29px;
  }
}
.page-contact-content .contact-area .accordion .accordion-item:first-child {
  border-radius: 16px 0px 0px 0px;
}

@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .accordion .accordion-item:first-child {
    border-radius: 16px 16px 0 0;
  }
}
.page-contact-content .contact-area .accordion .accordion-item:last-child {
  border-radius: 0px 0px 0px 16px;
}

@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .accordion .accordion-item:last-child {
    border-radius: 0;
  }
}
.page-contact-content .contact-area .accordion .accordion-item.border-15 {
  border-radius: 16px 0px 0px 16px;
}

@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .accordion .accordion-item.border-15 {
    border-radius: 16px 16px 0 0;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 425px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button {
    flex-direction: column;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button
  div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 425px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button
    div {
    align-items: center;
    margin-bottom: 24px;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button
  div
  h2 {
  line-height: 52.02px;
  font-size: 32px;
  color: #140f2d;
}

@media screen and (max-width: 425px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button
    div
    h2 {
    text-align: center;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 8px;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button
  div
  p {
  max-width: 400px;
  line-height: 26.1px;
  margin: 0;
  margin-top: 4px;
  color: #000000;
  text-align: left;
  font-size: 16px;
}

@media screen and (max-width: 425px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button
    div
    p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button
  i {
  font-size: 36px;
  color: #f6921e;
  display: none;
}

@media screen and (max-width: 991px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button
    i {
    display: block;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  display: none;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed
  i {
  display: block;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse {
  border: none;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .text-required {
  color: #a0a0a7;
  line-height: 18.7px;
  margin: 32px 0 12px 0;
  font-size: 17px;
  width: 100%;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .input-file-container
  div {
  position: relative;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .input-file-container
  div
  label {
  border: 1px solid #f6921e;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 15px;
  font-size: 17px;
  font-weight: 500;
  color: #f6921e;
}

@media screen and (max-width: 991px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-collapse
    .input-file-container
    div
    label {
    width: 100%;
    text-align: center;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .input-file-container
  div
  input {
  opacity: 1;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .input-file-container
  p {
  max-width: 170px;
  margin: 0;
  font-size: 17px;
  margin-top: 15px !important;
}

@media screen and (max-width: 991px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-collapse
    .input-file-container
    p {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container {
  max-height: 400px;
  overflow-y: scroll;
  margin-bottom: 20px;
  padding-right: 27px;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container
  h3 {
  margin-top: 38px;
  font-size: 20px;
  font-weight: 700;
  color: #140f2d;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container
  h3:first-child {
  margin-top: 0;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container
  p {
  margin: 0;
  margin-top: 9px;
  color: #140f2d;
  font-size: 20px;
}

@media screen and (max-width: 425px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-collapse
    .faq-container
    p {
    font-size: 16px;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container::-webkit-scrollbar {
  width: 20px;
}

@media screen and (max-width: 425px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    .accordion-collapse
    .faq-container::-webkit-scrollbar {
    width: 5px;
  }
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #c4c4c4;
  border-radius: 10px;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  .accordion-collapse
  .faq-container::-webkit-scrollbar-thumb:hover {
  background: black;
}

.page-contact-content .contact-area .contact-info {
  background: linear-gradient(360deg, #f6921e 0%, #f6921e 132.42%);
  border-radius: 0px 16px 16px 0px;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 50px 30px 50px 30px;
}

.page-contact-content .contact-area .contact-info a {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .contact-info {
    border-radius: 0 0 16px 16px;
  }
}
.page-contact-content .contact-area .contact-info .data-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-contact-content .contact-area .contact-info .data-container h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.page-contact-content .contact-area .contact-info .data-container h3.filial-sp {
  margin-top: 30px;
}

.page-contact-content .contact-area .contact-info .data-container h3::after {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #ffffff;
}

@media screen and (max-width: 991px) {
  .page-contact-content
    .contact-area
    .contact-info
    .data-container
    h3:last-child {
    margin-top: 33px;
  }
}
.page-contact-content .contact-area .contact-info .data-container .adress {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 12px;
}

.page-contact-content .contact-area .contact-info .data-container .adress span {
  margin-right: 9px;
  font-size: 12px;
}

.page-contact-content .contact-area .contact-info .data-container .adress p {
  margin: 0;
  line-height: 15px;
  margin-bottom: 16px;
  font-size: 14px;
}

.privacy-policy-link {
  margin-top: 24px;
  display: block;
}

.page-contact-content
  .contact-area
  .contact-info
  .data-container
  .adress
  p.p-big {
  font-size: 15px;
}

@media screen and (max-width: 991px) {
  .page-contact-content
    .contact-area
    .contact-info
    .data-container
    .adress
    p.p-big {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .contact-info .data-container .adress p {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.page-contact-content .contact-area .contact-info .data-container .adress h4 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .page-contact-content .contact-area .contact-info .data-container .adress h4 {
    margin-bottom: 10px;
  }
}
.page-contact-content .contact-area .contact-info .data-container .adress-sp {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 10px;
}

.page-contact-content
  .contact-area
  .contact-info
  .data-container
  .adress-sp
  span {
  margin-right: 9px;
  font-size: 12px;
}

.page-contact-content
  .contact-area
  .contact-info
  .data-container
  .adress-sp
  div
  h4 {
  font-weight: 500;
  font-size: 15px;
}

.page-contact-content
  .contact-area
  .contact-info
  .data-container
  .adress-sp
  div
  p {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
}

.page-contact-content .contact-area .accordion .accordion-item form p {
  margin: 0;
  width: 100%;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 24px;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  input,
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  select,
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  textarea {
  border: 1px solid #2f2f30;
  width: 100%;
  padding: 12px;
  margin-bottom: 24px;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  select {
  cursor: pointer;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  input,
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  select {
  height: 46px;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  textarea {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  .btn-default {
  padding: 0 20px;
  border: 2px solid #f6921e;
  height: fit-content;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  #curriculum {
  display: none;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  .btn-default-secondary {
  cursor: pointer;
  border: 2px solid #f6921e;
  width: 100%;
  padding: 8px 30px;
  font-weight: 700;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  .btn-default-secondary:hover {
  background-color: #f6921e;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  .form-area {
  width: 50%;
  flex: 0 0 auto;
  padding: 0 15px;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-container
  .form-area:last-child {
  padding-bottom: 24px;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding: 0 15px;
}
.page-contact-content
  .contact-area
  .accordion
  .accordion-item
  form
  .form-footer
  p {
  color: #a3a5a8;
  width: fit-content;
}

@media (max-width: 991px) {
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    form
    .form-footer {
    flex-direction: column;
    padding: 0;
  }
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    form
    .form-footer
    .btn-default {
    margin-top: 24px;
  }
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    form
    .form-container {
    flex-direction: column;
  }
  .page-contact-content
    .contact-area
    .accordion
    .accordion-item
    form
    .form-container
    .form-area {
    width: 100%;
    padding: 0;
  }
}
/*   7. SEARCH PAGE   */
.search-page .news-card {
  margin: 20px 0;
}

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