* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overscroll-behavior: contain;
}

html {
  font-size: 16px;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 992px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

::-webkit-scrollbar-track {
  background-color: #F2F3F5;
}

::-webkit-scrollbar {
  border-radius: 1rem;
  width: 0.2rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: #181614;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-height: 100vh;
}

a {
  color: #FFA646;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #181614;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

.btn {
  font-size: 1rem;
  color: #F2F3F5;
  background-color: #FFA646;
  border: none;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none;
  color: #F2F3F5;
  background-color: #FFA646;
}
.btn:hover {
  color: #F2F3F5;
  background-color: #322112;
}

main {
  width: 100%;
}

.box-shadow {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 1rem;
  bottom: -1rem;
  z-index: 99999;
  background: #FFA646;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 1.5rem;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #F2F3F5;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 1rem;
}

#hero {
  width: 100%;
  min-height: 100vh;
  background: url("/assets/images/background.jpg") center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 0rem 0rem;
  padding-bottom: 1rem;
  position: relative;
  box-shadow: inset 0 0 0 2000px rgba(24, 22, 20, 0.5);
}
#hero #hero_container {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 0rem 2rem;
}
#hero #hero_container h2 {
  line-height: 4.75rem;
  text-align: left;
  color: #fff;
  font-size: 5rem;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  padding: 1rem 0rem;
}
#hero #hero_container h2 span {
  color: #FFA646;
}
#hero #hero_container h2::after {
  content: "";
  display: block;
  width: 35%;
  height: 0.5rem;
  background-color: #F2F3F5;
  margin-top: 1rem;
}
#hero #hero_container h3 {
  text-transform: uppercase;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
  padding-right: 1rem;
  font-weight: 100;
}
#hero #hero_container .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
#hero #hero_container .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
#hero #hero_container .btn-watch-video {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}
#hero #hero_container .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero #hero_container .btn-watch-video:hover i {
  color: #fff;
}
#hero #hero_text {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 1.3rem;
  margin: 1rem 0rem;
  opacity: 0;
  transition: all 1s ease;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    min-height: 100vh;
  }
  #hero #hero_container h2 {
    font-size: 4rem;
    line-height: 3.75rem;
  }
  #hero #hero_container h3 {
    font-size: 0.85rem;
    line-height: 1.2rem;
  }
  #hero #hero_text {
    font-size: 1rem;
    font-weight: 200;
    margin-top: 0;
  }
}
#hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  text-align: center;
}

section {
  width: 100%;
  min-height: 10vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

section {
  padding: 5rem 0;
  overflow: hidden;
}
section.inner_page {
  margin-top: 1rem;
  padding: 0;
  min-height: 100vh;
}
@media only screen and (max-width: 992px) {
  section.inner_page {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  section.inner_page {
    margin-top: 5rem;
  }
}
section .section-title {
  text-align: center;
  padding-bottom: 2rem;
  width: 100%;
}
section .section-title h2 {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: rgba(255, 166, 70, 0.1);
  color: #FFA646;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 2.5rem;
}
section .section-title h3 {
  margin: 1rem 0 0 0;
  font-size: 2rem;
  font-weight: 700;
}
section .section-title h3 span {
  color: #ffa646;
}
section .section-title p {
  margin: 1rem auto 0 auto;
  font-weight: 600;
}

.section-bg {
  background-color: rgba(242, 243, 245, 0.05);
}

@media (min-width: 1200px) {
  .section-title p {
    width: 50%;
  }
}
#log {
  height: 100vh;
}
#log .forms {
  background-color: #fff;
  padding: 2rem;
}
#log .forms .error {
  text-align: center;
  color: #FC4F4F;
}
#log .forms .log_head {
  text-align: center;
  margin-bottom: 2.5rem;
}
#log .forms .log_head h3 {
  color: #181614;
}
#log .forms .log_head h3 span {
  color: #FFA646;
  font-weight: 700;
}
#log .forms .log_head p {
  color: rgba(24, 22, 20, 0.5);
}
#log .forms form {
  margin: 0.5rem 0rem;
}
#log .forms form .form-group {
  margin: 1rem 0rem;
  margin-top: 1.5rem;
  color: rgba(24, 22, 20, 0.9);
}
#log .forms form .form-group input {
  height: 2.7rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(24, 22, 20, 0.1);
  color: #181614;
  font-family: "Poppins", sans-serif;
}
#log .forms form .form-group input:active, #log .forms form .form-group input:focus {
  box-shadow: none;
  border: 1px solid #FFA646;
}
#log .forms form .form-group input::placeholder {
  color: rgba(24, 22, 20, 0.4);
}
#log .forms form .forgot {
  text-align: right;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-decoration: underline;
  color: rgba(24, 22, 20, 0.8);
}
#log .forms form .forgot a {
  color: rgba(24, 22, 20, 0.5);
}
#log .forms form button {
  width: 100%;
  background-color: #FFA646;
  border: none;
  padding: 0.6rem 1.5rem;
  margin: 1rem 0rem;
  color: #F2F3F5;
  transition: all 0.3s ease-in-out;
}
#log .forms form button:hover {
  background-color: #181614;
}
#log .forms .log_footer {
  text-align: center;
  font-size: 0.8rem;
}
#log .forms .log_footer a {
  font-weight: 600;
}

.contact {
  margin-top: 3rem;
}
.contact .info-container {
  background-color: #181614;
  height: 100%;
  padding: 20px;
  border-radius: 1rem;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}
.contact .info-item {
  width: 100%;
  background-color: #181614;
  margin-bottom: 20px;
  padding: 20px;
  color: #fff;
}
.contact .info-item:last-child {
  margin-bottom: 0;
}
.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item a {
  color: #fff;
}
.contact .info-item a:hover {
  color: #FFA646;
}
.contact .info-item:hover i {
  background: #fff;
  color: #FFA646;
}
.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 1rem;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #FC4F4F;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #21BF73;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #21BF73;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
  padding: 10px 12px;
}
.contact .php-email-form textarea:focus {
  border-color: #181614;
}
.contact .php-email-form input[type=text] {
  padding: 12px 15px;
}
.contact .php-email-form input[type=text]:focus {
  border-color: #181614;
}
.contact .php-email-form input[type=email] {
  padding: 12px 15px;
}
.contact .php-email-form input[type=email]:focus {
  border-color: #181614;
}
.contact .php-email-form button[type=submit] {
  background: #322112;
  border: 0;
  padding: 0.65rem 1.5rem;
  color: #F2F3F5;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 2rem;
}
.contact .php-email-form button[type=submit]:hover {
  background: #FFA646;
}

#header {
  background: transparent;
  z-index: 995;
  padding: 1.5rem 0;
  transition: all 0.5s ease-in-out;
}
#header .logo {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .logo svg {
  height: 2.5rem;
  width: auto;
  margin-right: 0.5rem;
}
#header .logo h1 {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  margin: 0;
}
#header .logo h1 span {
  color: #181614;
}
#header .navbar {
  margin: 0.5rem 0;
  margin-left: auto;
}
#header .navbar .nav-items {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  position: relative;
}
#header .navbar .nav-items .nav-item {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 0rem 0.5rem;
  text-transform: uppercase;
}
#header .navbar .nav-items .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0rem 0rem;
  padding: 0.25rem 0.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#header .navbar .nav-items .nav-item .nav-link i {
  font-size: 1rem;
  line-height: 0;
  margin-left: 5px;
}
#header .navbar .nav-items .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #FFA646;
  transform: translate(105%, 0);
  transition: all 0.4s ease;
}
#header .navbar .nav-items .nav-item .nav-link.active {
  color: #322112;
}
#header .navbar .nav-items .nav-item .nav-link.active:focus {
  color: #F2F3F5;
}
#header .navbar .nav-items .nav-item:hover .nav-link {
  color: #322112;
}
#header .navbar .nav-items .nav-item:hover .nav-link::after {
  transform: translate(0, 0);
}
#header .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 1rem;
}
#header .btn-group .btn {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border-radius: 5rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 0.1rem solid #F2F3F5;
  z-index: 997;
  transition: all 0.3s ease;
}
#header .btn-group .btn:hover {
  background: #F2F3F5;
  color: #181614;
}
#header .harmburger {
  cursor: pointer;
  display: none;
  margin: 0rem 0.5rem;
  margin-left: 1rem;
  z-index: 999;
}
#header .harmburger .lin {
  background-color: #fff;
  height: 0.15rem;
  border-radius: 1rem;
  width: 1.7rem;
  margin: 0.4rem 0rem;
  transition: all 0.3s ease-in-out;
}
#header .harmburger.active .lin:nth-child(1) {
  transform: translate(0, 350%) rotate(45deg);
}
#header .harmburger.active .lin:nth-child(2) {
  opacity: 0;
}
#header .harmburger.active .lin:nth-child(3) {
  transform: translate(0, -350%) rotate(-45deg);
}
#header.inner-page .logo h1, #header.header-scrolled .logo h1 {
  color: #171615;
  margin: 0;
}
#header.inner-page .logo h1 span, #header.header-scrolled .logo h1 span {
  color: #322112;
}
#header.inner-page .navbar .nav-items .nav-item .nav-link, #header.header-scrolled .navbar .nav-items .nav-item .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
#header.inner-page .navbar .nav-items .nav-item .nav-link::after, #header.header-scrolled .navbar .nav-items .nav-item .nav-link::after {
  background-color: #FFA646;
}
#header.inner-page .navbar .nav-items .nav-item .nav-link.active, #header.header-scrolled .navbar .nav-items .nav-item .nav-link.active {
  color: #FFA646;
}
#header.inner-page .navbar .nav-items .nav-item .nav-link.active:focus, #header.header-scrolled .navbar .nav-items .nav-item .nav-link.active:focus {
  color: #F2F3F5;
}
#header.inner-page .navbar .nav-items .nav-item:hover .nav-link, #header.header-scrolled .navbar .nav-items .nav-item:hover .nav-link {
  color: #FFA646;
}
#header.inner-page .btn-group, #header.header-scrolled .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 1rem;
}
#header.inner-page .btn-group .btn, #header.header-scrolled .btn-group .btn {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border-radius: 5rem;
  color: #FFA646;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 0.1rem solid #FFA646;
  z-index: 997;
  transition: all 0.3s ease;
}
#header.inner-page .btn-group .btn:hover, #header.header-scrolled .btn-group .btn:hover {
  background: #FFA646;
  color: #fff;
}
#header.inner-page .harmburger, #header.header-scrolled .harmburger {
  cursor: pointer;
  display: none;
  margin: 0rem 0.5rem;
  margin-left: 1rem;
  z-index: 999;
}
#header.inner-page .harmburger .lin, #header.header-scrolled .harmburger .lin {
  background-color: #fff;
  height: 0.15rem;
  border-radius: 1rem;
  width: 1.7rem;
  margin: 0.4rem 0rem;
  transition: all 0.3s ease-in-out;
}
#header.inner-page .harmburger.active .lin:nth-child(1), #header.header-scrolled .harmburger.active .lin:nth-child(1) {
  transform: translate(0, 350%) rotate(45deg);
}
#header.inner-page .harmburger.active .lin:nth-child(2), #header.header-scrolled .harmburger.active .lin:nth-child(2) {
  opacity: 0;
}
#header.inner-page .harmburger.active .lin:nth-child(3), #header.header-scrolled .harmburger.active .lin:nth-child(3) {
  transform: translate(0, -350%) rotate(-45deg);
}
#header.inner-page {
  padding: 1rem;
  background: rgba(24, 22, 20, 0.85);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
}
#header.header-scrolled {
  padding: 0.75rem 0;
  background: rgba(24, 22, 20, 0.85);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  #header {
    padding: 1.5rem 0rem;
  }
  #header .harmburger {
    display: block;
  }
  #header .navbar .nav-items {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(23, 22, 21, 0.5);
    backdrop-filter: blur(1rem);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-100%, 0);
    padding: 2.5rem;
    transition: all 0.3s ease-in-out;
  }
  #header .navbar .nav-items .nav-item {
    margin: 0.5rem 0rem;
    position: relative;
    width: 100%;
    padding: 0rem 1rem;
  }
  #header .navbar .nav-items .nav-item .nav-link {
    color: #fff;
    font-size: 1.15rem;
    padding: 0.5rem 2rem;
    justify-content: flex-start;
    border: 0.1rem solid #FFA646;
    border-radius: 5rem;
    text-transform: none;
  }
  #header .navbar .nav-items .nav-item .nav-link.active {
    border: none;
    font-weight: 500;
    color: #181614;
    background: #F2F3F5;
  }
  #header .navbar .nav-items .nav-item .nav-link.active::after {
    display: none;
  }
  #header .navbar .nav-items.active {
    transform: translate(0, 0);
  }
  #header .navbar .nav-items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1rem);
    background: rgba(23, 22, 21, 0.5);
  }
  #header.header-scrolled {
    padding: 1rem 0;
  }
}
@media (max-width: 768px) {
  #header .logo svg {
    margin-left: 0.5rem;
    height: 2.5rem;
  }
}

footer {
  width: 100%;
  margin-top: auto;
  background-color: #181614;
  color: #fff;
}
footer .cc {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem;
  font-size: 0.8rem;
}
footer .cc a {
  font-weight: 700;
}
footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .social-links a {
  background-color: rgba(255, 166, 70, 0.2);
  margin: 0rem 0.2rem;
  padding: 0.15rem 0.3rem;
  border-radius: 5rem;
  transition: all 0.3s ease;
  color: #F2F3F5;
}
footer .social-links a .ico {
  width: 1rem;
  height: 1rem;
}
footer .social-links a:hover {
  background-color: #ffa646;
  color: #181614;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #181614;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: rgba(242, 243, 245, 0.1) rgba(242, 243, 245, 0.1) #322112 rgba(242, 243, 245, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
