/**
* Template Name: Techie - v4.8.1
* Template URL: https://bootstrapmade.com/techie-free-skin-bootstrap-3/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ------------------------------------------------------------ */
/* -------------------------- GENERAL ------------------------- */
/* ------------------------------------------------------------ */

body {
  font-family: 'Open Sans';
}

a {
  color: #f59a29;
  text-decoration: none;
}

a:hover {
  color: #f59a29;
  text-decoration: none;
}

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

/* ------------------------------------------------------------ */
/* ------------------------- PRELOADER ------------------------ */
/* ------------------------------------------------------------ */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f59a29;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

/* ------------------------------------------------------------ */
/* ------- DISABLE AOS ANIMATION DELAY ON MOBILE DEVICES ------ */
/* ------------------------------------------------------------ */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* ------------------------------------------------------------ */
/* --------------------------- HEADER ------------------------- */
/* ------------------------------------------------------------ */

#header {
  transition: all .5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #3c3c3c;
}

@media only screen and (max-width: 430px) {
  #header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}

/* ------------------------------------------------------------ */
/* ---------------------- NAVIGATION MENU --------------------- */
/* ------------------------------------------------------------ */

header {
  width: 100%;
}

.menu_container {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #fff;
}

.menu_links {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .5s;
  z-index: 10;
}

.menu_item {
  list-style: none;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  color: #fff;
  font-family: 'Roboto';
  font-weight: bold;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f59a29;
}

.logo img {
  display: flex;
  justify-content: center;
  margin: 0 30px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.5s;
}

.logo img:hover {
  transform: scale(1.1);
}

.menu_hamburger {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  display: none;
}

.fa-bars {
  display: block;
  font-size: 30px;
  color: #fff;
}

.close {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  display: none;
}

/* ------------------------------------------------------------ */
/* ---------------------- MENU RESPONSIVE --------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1000px) {
  header {
    width: 100%;
    overflow: hidden;
  }

  .menu_hamburger {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  .close {
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 20px;
  }

  .logo img {
    display: none;
  }

  .nav-link {
    padding: 10px;
    text-decoration: none;
    color: #3c3c3c;
  }

  .menu_item .id{
    margin-top: -16px;
  }

  .menu_item {
    --clip: 0;
    overflow: hidden;
  }

  .menu_links {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    overflow-y: auto;
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }

  .menu_links--show {
    transform: unset;
    width: 80%;
  }
}

/* ------------------------------------------------------------ */
/* -------------------------- FOOTER -------------------------- */
/* ------------------------------------------------------------ */

#footer {
  color: #fff;
  font-size: 14px;
  background: #3c3c3c;
  /* background: #ed6b41; */

  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Open Sans';
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(237, 107, 65, 0.8);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #f59a29;
}

#footer .copyright-wrap {
  border-top: 1px solid #f59a29;
}

.footer-links i {
  margin-right: 10px;
}

.footer-contact img {
  width: 50px;
}

.footer-contact .box-spam {
  width: 300px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid #ed6b41;
}