/*--------------------------------------------------------------------------------------
  MAIN
--------------------------------------------------------------------------------------*/
:root {
  --feal-primary: #aa1313;
  --feal-secondary: #f86767;
  --feal-tertiary: #2f374b;
  --feal-text : #333333;
  --feal-yellow: #f6c131;
  --feal-yellow-h: #f5ba19;
}
::-webkit-scrollbar {
  width: 6px;
  background-color: #cacaca;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #999999;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #cacaca;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
  color: var(--feal-text);
  font-size: 14px;
  line-height: 1.3;
  box-sizing: border-box;
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------------------------------
  PAGE
--------------------------------------------------------------------------------------*/
/* page min h */
.page-feal {
  --nav-footer-h: 0px;
  min-height: calc(100vh - var(--nav-footer-h));
}
/* page section */
.page-section {
  display: flex;
  justify-content: center;
}
/* page return */
.page-return a {
  border-radius: 10px;
  background-color: #e7e6e4;
  padding: 5px 10px;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.15;
  transition: all 0.2s linear;
}
.page-return a:hover {
  background-color: #cfcdc9;
}
@media screen and (max-width: 767px) {
  .page-return a {
    margin-bottom: 25px;
  }
}
/* page banner */
.page-section .page-banner {
  width: 100%;
  margin-bottom: 70px;
}
.page-section .page-banner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
/* page title */
.page-section .page-title {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.page-section .page-title .page-line {
  width: 50%;
  border-bottom: 3px solid var(--feal-primary);
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.page-section .page-title .page-line h1 {
  color: var(--feal-primary);
  text-align: right;
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .page-section {
      position: relative;
  }
  .page-section .page-banner {
    margin-bottom: 50px;
  }
  .page-section .page-banner,
  .page-section .page-banner img {
      height: 400px;
  }
  .page-section .page-banner img {
    position: absolute;
    left: 0;
  }
  .page-section .page-title {
    justify-content: flex-start;
  }
  .page-section .page-title .page-line {
      width: 100%;
      margin-bottom: 25px;
  }
  .page-section .page-title .page-line h1 {
      text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .page-section .page-banner,
  .page-section .page-banner img {
      height: 250px;
  }
  .page-section .page-title .page-line h1 {
    font-size: 40px;
}
}

/*--------------------------------------------------------------------------------------
  BUTTON
--------------------------------------------------------------------------------------*/
.btn-feal {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--feal-secondary);
  color: white !important;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  line-height: 1.15;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}
.btn-feal:hover {
  background-color: #d25757;
}
.btn-feal:focus {
  outline: none;
}
.btn-feal:focus-visible {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/*--------------------------------------------------------------------------------------
  CONTAINER
--------------------------------------------------------------------------------------*/
.container-feal {
  width: 1130px;
}
@media screen and (max-width: 1150px) {
    .container-feal {
        width: 900px;
    }
}
@media screen and (max-width: 991px) {
    .container-feal {
        width: 90%;
    }
}
@media screen and (max-width: 767px) {
    .container-feal {
        width: 92%;
    }
}

/*--------------------------------------------------------------------------
 INPUT
--------------------------------------------------------------------------*/
.input-feal {
  width: 100%;
  border-radius: 10px;
  padding: 9px;
  border: solid 1px transparent;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 #cacaca;
  height: 33px;
  font-size: 16px;
  vertical-align: middle;
  outline: 0;
  font-family: inherit;
  background-clip: initial;
  transition: all 0.2s linear;
}
select.input-feal {
  padding-top: 0;
  padding-bottom: 0;
}
textarea.input-feal {
  height: auto;
}
.input-feal::placeholder {
  color: #949494;
}
.input-feal:focus,
.input-feal:hover {
  border-color: var(--feal-secondary);
}
.input-feal:focus {
  box-shadow: 0 1px 3px 0 #cacaca, 0 0 0 0.2rem rgba(49, 107, 242, 0.25);
}

/*--------------------------------------------------------------------------
 TOP
--------------------------------------------------------------------------*/
#goto_top {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 9998;
  display: none; 
  opacity: 0.8; 
  background-color: var(--feal-primary); 
  color: #fff; 
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: opacity 0.2s linear;
}
#goto_top:hover {
  opacity: 1; 
}

/*--------------------------------------------------------------------------------------
  CAPTCHA
--------------------------------------------------------------------------------------*/
.captcha {
  margin: 8px auto;
}
.captcha img {
  width: 100%;
  max-width: 220px;
  margin-top: 10px;
}
.captcha-image {
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.captcha .form-group {
  margin-top: 10px;
}

/*--------------------------------------------------------------------------------------
 FORM ERROR
--------------------------------------------------------------------------------------*/
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #A70D0D;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #A70D0D;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/*--------------------------------------------------------------------------
 MESSAGE ALERT
--------------------------------------------------------------------------*/
.alert {
  font-size: 14px;
  text-align: center;
}
.alert.alert-hidden {
  display: none;
}
.alert.alert-warning {
  background-color: #A74D4D;
  color: #ffffff;
}
.alert.alert-warning p {
  padding: 0;
  margin: 0;
}
.alert.alert-warning a,
.alert.alert-warning .alert-link {
  color: #ffffff;
}
.alert.alert-success {
  background-color: #418B44;
  color: #ffffff;
}
.alert.alert-success p {
  padding: 0;
  margin: 0;
}
.alert.alert-success a,
.alert.alert-success .alert-link {
  color: #ffffff;
}
.alert.alert-danger {
  background-color: #7E0A0A;
  color: #ffffff;
}
.alert.alert-danger p {
  padding: 0;
  margin: 0;
}
.alert.alert-danger a,
.alert.alert-danger .alert-link {
  color: #ffffff;
}
.alert.alert-info {
  border-color: #e8e8e8;
  background-color: #e8e8e8;
  color: #000000;
}
.alert.alert-info p {
  padding: 0;
  margin: 0;
}
.alert.alert-info a,
.alert.alert-info .alert-link {
  color: #000000;
}
/*--------------------------------------------------------------------------
 PROCESS WINDOW
--------------------------------------------------------------------------*/
.window-process {
  display: none;
}
.window-process.active {
  display: block;
}
.display-process span i {
  font-size: inherit;
  font-weight: bold;
}
/*--------------------------------------------------------------------------
 AJAX
--------------------------------------------------------------------------*/
#ajax_loader {
  display: none;
  background: url(../img/loaders/ajax-loader.gif) no-repeat center; 
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}