@font-face {
  font-family: "Magistral-Medium";
  src: url("../font/Magistral-Medium.ttf") format("ttf"),
    url("../font/Magistral-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

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

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

.orange-text {
  color: #ed502e !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo {
  font-family: "Magistral-Medium";
}

#header .logo a {
  color: #000000;
}

#header .logo img {
  max-height: 60px;
}

#header .logo a.white-title {
  color: #fff !important;
}

.header-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: bold;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ed502e;
}

.navbar .getstarted {
  background: #ed502e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .header-icon i {
  font-size: 22px;
}

.navbar .header-icon {
  margin-left: 10px;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #ef6445;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .header-buttons {
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .header-buttons {
    display: flex;
  }

  .navbar-mobile .getstarted {
    margin: 15px 5px 15px 5px !important;
  }
}

@media (max-width: 350px) {
  .header-buttons {
    display: inline-block;
  }

  .navbar-mobile .getstarted {
    margin: 10px !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ed502e;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
  background: url("../img/hero/hero-bg.jpg") no-repeat center center/cover;
}

#hero .hero-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero .hero-width {
  width: 50%;
}

#hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}

#hero .hero-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  font-family: "Roboto", sans-serif;
  color: #ed502e;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #ed502e;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #ed502e;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

#hero .hero-items {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
}

#hero .hero-item {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

#hero .hero-item i {
  font-size: 26px;
  color: #ed502e;
}

#hero h4 {
  margin: 0;
  font-size: 20px;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .hero-container {
    text-align: center;
    top: 74px;
  }

  #hero .hero-width {
    width: auto;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

@media screen and (max-width: 576px) {
  #hero h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 3px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.wemake {
  background-color: #fff;
  padding: 75px 0px 60px 0px;
}

.wemake__title {
  color: #121212;
  font-size: 42px;
  line-height: 42px;
  text-align: center;
}

.wemake__title-desc {
  text-align: center;
  margin-bottom: 50px;
  font-size: 15px;
}

.wemake__title-desc::after {
  content: "";
  max-width: 570px;
  height: 2.5px;
  display: block;
  margin: 20px auto 0px;
  background-color: #edae01;
}

.mySwiper {
  height: 440px !important;
}

.wemake__wrapper {
  display: flex;
}

.wemake__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.wemake__content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.wemake__item-desc {
  padding-bottom: 15px;
}

.wemake__img {
  min-width: 248px;
  height: 248px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.wemake__img img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.wemake__item-slider {
  position: relative;
  overflow: hidden;
}

.wemake__item-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wemake__item-slide img {
  width: 100% !important;
}

.wemake__item-slide.active {
  opacity: 1;
}

.wemake__item a {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.2px;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  background-color: #ed502e;
  color: #fff;
}

.wemake__item a:hover {
  color: rgb(227, 219, 219);
}

.wemake__item-desc {
  font-size: 17px;
}

.wemake__price {
  margin: 10px 0;
  font-weight: bold;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

@media (max-width: 991.92px) {
  .wemake__item a {
    font-size: 14px;
  }

  .mySwiper {
    height: 460px !important;
  }
}

@media (max-width: 767.97px) {
  .wemake__item {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .wemake__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .wemake__title-desc {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
#  Documents Section
--------------------------------------------------------------*/
.documents-title {
  color: #121212;
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 50px;
  text-align: center;
}

.documents-title::after {
  content: "";
  max-width: 570px;
  height: 2.5px;
  display: block;
  margin: 20px auto 0px;
  background-color: #edae01;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

.docs__content {
  margin-bottom: 30px;
}

.docs__items {
  display: flex;
  flex-wrap: wrap;
}

.docs__column {
  flex: 0 1 33.3333%;
}

.docs__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #626262;
}

.docs__subtitle {
  font-weight: 700;
  font-size: 16px;
  padding: 10px 0px;
  color: #444;
  box-shadow: inset -1px 4px 5px 0px rgb(0 0 0 / 4%);
}

.docs__info {
  flex: 0 1 110px;
  padding: 10px 20px;
  border-bottom: 1px solid #626262;
  border-color: rgba(0, 0, 0, 0.08);
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-shadow {
  box-shadow: inset -1px 5px 3px -2px rgb(0 0 0 / 6%);
}

.docs__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs__btn {
  font-size: 16px;
  font-weight: 700;
  padding: 11px 35px;
  background-color: #ed502e;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  letter-spacing: 1.5px;
}

.docs__btn:hover {
  color: rgb(227, 219, 219);
}

.brblock {
  border-right: 1px solid #000;
  border-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 1020px) {
  .docs__column {
    flex: 0 1 50%;
  }
}

@media (max-width: 992px) and (min-width: 576px) {
  .mt-media {
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  .docs__column {
    flex: 0 1 100%;
  }
}

@media (max-width: 576px) {
  .documents-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .documents {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Order
--------------------------------------------------------------*/
.order .order-title {
  color: #121212;
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 50px;
  text-align: center;
}

.order .order-title::after {
  content: "";
  max-width: 570px;
  height: 2.5px;
  display: block;
  margin: 20px auto 0px;
  background-color: #edae01;
}

.order-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.order__column {
  flex: 0 1 22.8%;
  text-align: center;
  padding: 20px 10px 30px 10px;
  margin-bottom: 30px;
}

.order__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order__item-wrapper {
  flex: 1 1 auto;
}

.order__item-descr {
  padding-bottom: 15px;
}

.order-image {
  width: 248px;
  height: 165px;
  margin-bottom: 20px;
}

.order__item-img {
  max-width: 60%;
  height: 100%;
  object-fit: contain;
}

.order__item-descr {
  font-size: 17px;
}

.order__item-descr span {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  color: #ed502e;
}

@media (max-width: 768px) {
  .order-items {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .order-items {
    justify-content: space-around;
  }
}

@media (max-width: 576px) {
  .order .order-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .order {
    padding: 40px 0;
  }

  .order__item-descr span {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .why-us__title {
  color: #121212;
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 50px;
  text-align: center;
}

.why-us .why-us__title::after {
  content: "";
  max-width: 570px;
  height: 2.5px;
  display: block;
  margin: 30px auto 0px;
  background-color: #edae01;
}

.why__us-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.why__us-column {
  flex: 0 1 31.333%;
  text-align: center;
  padding: 20px 10px 30px 10px;
  margin-bottom: 30px;
}

.why__us-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why__item-wrapper {
  flex: 1 1 auto;
}

.why__item-descr {
  padding-bottom: 15px;
}

.why__us-image {
  margin-bottom: 30px;
}

.why__item-img {
  max-width: 100%;
}

.why__item-descr {
  font-size: 14px;
}

.why__item-descr span {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  padding-bottom: 10px;
}

.why__item-descr p {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .why__us-items {
    justify-content: center;
    flex-direction: column;
  }

  .why__us-column {
    flex: 0 1 auto;
  }
}

@media (min-width: 768px) {
  .why__us-items {
    justify-content: space-around;
  }
}

@media (max-width: 576px) {
  .why-us .why-us__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .why-us {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
}

.cta h3 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #000;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  color: #000;
}

.cta .cta-btn:hover {
  background: #ed502e;
  color: #fff;
}

@media (max-width: 576px) {
  .cta {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 5px solid #ed502e;
  border-left: 5px solid #05101e;
  border-right: 5px solid #05101e;
  border-bottom: 5px solid #05101e;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-family: "Magistral-Medium";
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #ed502e;
  text-decoration: none;
}

#footer .map {
  border-top: 5px solid #ed502e;
  border-left: 5px solid #05101e;
  border-right: 5px solid #05101e;
  border-bottom: 5px solid #05101e;
  height: 333px;
}

#footer .social-links-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #edae01 50%, #ed502e 50%);
  height: 45px;
  line-height: 45px;
  width: 100%;
  z-index: 99;
}

#footer .social-links-fixed i {
  font-size: 22px;
  padding-right: 15px;
  vertical-align: middle;
}

#footer .social-links-fixed .call-btn {
  padding: 0 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  float: left;
  width: 50%;
  margin: 0;
}

#footer .social-links-fixed .whatsapp-btn {
  float: right;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
  margin: 30px 0 40px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }

  #footer .social-links-fixed .call-btn {
    font-size: 15px;
  }
}