/** Shenzhen Gaopuyi Technology Co. Ltd CSS */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: Helvetica, "WenQuanYi Zen Hei", "PingFang SC", "Microsoft JhengHei", "DFKai-SB", sans-serif;
  color: #3a4550;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Helvetica, "WenQuanYi Zen Hei", "PingFang SC", "Microsoft JhengHei", "DFKai-SB", sans-serif;
}

.btn {
  text-transform: uppercase;
  font-weight: 600;
}

.btn:focus {
  box-shadow: none;
}

.btn-orange,
.btn-orange:focus {
  text-transform: uppercase;
  color: #fff;
  background: #ff4a17;
  border-color: #ff4a17;
}

.btn-orange:hover,
.btn-orange:active {
  background: #e33200;
  border-color: #e33200;
}

ol.category {
	counter-reset: item;
	list-style-type: none;
}
ol.category li {
	counter-increment: item;
	margin-left: 1rem;
}

ol.category li::before {
	content: counter(item, cjk-heavenly-stem)'类：';
	margin-left: -3rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff4a17;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff6a40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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 #ff4a17;
  border-top-color: #ffe9e3;
  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: 767px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(0, 14, 54, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-weight: 400;
}

#header .logo a {
  display:block;
  font-size: 13px;
  color: #e8e8e8;
  padding: 0 0 10px;
  
}

#header .logo a:last-child {
  padding: 0;
  
}

#header .logo img {
  max-height: 80px;
}

@media (max-width: 575px) {
  #header .logo img {
    max-height: 48px;
  }
  
  #header .logo a {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff4a17;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: #ff4a17;
	background: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
	transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: #15222b;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #ff4a17;
	background: none;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: #15222b;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: #ff4a17;
	background: none;
  }

  .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 (min-width: 992px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #15222b;
    white-space: nowrap;
    transition: 0.3s;
  }

  .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: #ff4a17;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 5px 20px;
    transition: all 0.5s ease-in-out;
	background: #f0f4f8;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 48px;
    z-index: 9999;
    right: 20px;
  }
  
  #header.header-scrolled .mobile-nav-toggle {
    top: 38px;
  }

  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  .mobile-nav-toggle:hover, .mobile-nav-toggle.bi-x:hover {
    color: #ff4a17;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9996;
	background: rgba(0, 0, 0, 0.6);
  }
}

@media (max-width: 575px) {
  .mobile-nav-toggle {
	top: 30px;
    right: 15px;
  }
  
  #header.header-scrolled .mobile-nav-toggle {
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-image: url("../img/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-item {
	height:100%
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*text-align: center;*/
}

#hero h1 {
  margin: 0 0 15px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: #fff;
}

#hero h1 > span {
  font-size: 72px;
  line-height: 82px;
  text-transform: uppercase;
  color: #ff6a40;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
}

#hero .btn-read-more {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ff4a17;
  border: 2px solid #ff4a17;
}

#hero .btn-read-more:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero.error-section {
  color: #fff;
}

#hero.error-section h1 {
  font-size: 5.5em!important;
  font-weight: 600;
  line-height: 72px;
}

#hero.error-section h3 {
  font-size: 2em!important;
  font-weight: 500;
  color: #ff4a17;
  line-height: 48px;
}

@media (max-width: 1199px) {
  #hero h1 {
    font-size: 36px;
    line-height: 46px;
  }
  
  #hero h1 > span {
	font-size: 56px;
    line-height: 56px;
  }
}

@media (max-width: 767px) {
  #hero {
	background-image: url("../img/hero-bg1.webp");
	background-attachment: scroll !important;
	background-position: center 55%;
  }
	
  #hero .container-fluid {
	position: absolute;
	bottom: 150px;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 30px;
    line-height: 40px;
  }
  
  #hero h1 > span {
	font-size: 52px;
    line-height: 52px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
  font-weight: 500;
}

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

.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: 1px;
  text-transform: uppercase;
  color: #5c8eb0;
}

.section-title h2::before, .section-title h2::after {
  content: "";
  width: 60px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #263d4d;
}

@media (max-width: 575px) {
  .section-title p {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .position-relative .nav-pills-position {
  position:absolute;
  width: 100%;
  bottom: 30px;
  z-index: 9;
}

.services .nav-pills {
  border: 0;
}

.services .nav-pills a{
  outline: none;
}

.services .nav-item {
	padding: 10px;
}

.services .nav-link {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid #fff;
  padding: 20px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.services .nav-link i {
  padding-bottom: 10px;
  font-size: 48px;
  line-height: 1;
}

.services .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.services .nav-link:hover {
  color: #ff4a17;
}

.services .nav-link.active {
  background: #ff4a17;
  color: #fff;
  border-color: #ff4a17;
}

@media (max-width: 767px) {
  .services .nav-link {
    padding: 15px;
  }
  .services .nav-link i {
    line-height: 1;
    font-size: 40px;
  }
}

.services .tab-content {
  margin-top: 30px;
}

.services .tab-pane {
  width: 100%;
  height: 760px;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}

.services .tab-pane:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 14, 54, 0.25);
  z-index: 8;
}

.services .tab-pane.finance {
  background-image: url("../img/finance-bg.webp");
}

.services .tab-pane.business {
  background-image: url("../img/business-bg.webp");
}

.services .tab-pane.education {
  background-image: url("../img/education-bg.webp");
}

.services .tab-pane.government {
  background-image: url("../img/government-bg.webp");
}

.services .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.services .tab-pane ul {
  list-style: none;
  padding: 0;
}

.services .tab-pane ul li {
  padding-bottom: 10px;
}

.services .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff4a17;
}

.services .tab-pane p:last-child {
  margin-bottom: 0;
}

.services .tab-pane .description {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  bottom: 180px;
  z-index: 9;
}

.services .tab-pane .description div {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 30px;
}

@media (max-width: 767px) {
  .services .position-relative .nav-pills-position {
    bottom: 20px;
  }
  .services .tab-pane {
	background-attachment: scroll !important;
	background-position: 75% center;
	height: 810px;
  }
  .services .tab-pane .description {
    bottom: 270px;
  }
  .services .tab-pane .description div {
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Recruitment Section
--------------------------------------------------------------*/
#recruitment {
  width: 100%;
  height: 680px;
  background-image: url("../img/recruitment-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  padding: 0;
}

#recruitment:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 20, 26, 0.1);
}

#recruitment .recruitment-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: left;
  flex-direction: column;
}

#recruitment .container-fluid {
  position: absolute;
  background: rgba(255, 74, 23, 0.8);
  width: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
  bottom: 120px;
}

#recruitment h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#recruitment h2 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1199px) {
  #recruitment .container-fluid {
	width: 400px;
  }
  #recruitment h1 {
    font-size: 35px;
    line-height: 43px;
  }
  
  #recruitment h2 {
    font-size: 17px;
    line-height: 25px;
  }
}

@media (max-width: 575px) {
  #recruitment .container-fluid {
	width: 300px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Job List
--------------------------------------------------------------*/
.job-list .accordion-item {
  color: #3a4550;
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0);
}

.job-list .accordion-collapse {
  border: 0;
}

.job-list .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

.job-list .accordion-button {
  padding: 20px 50px 20px 30px;
  font-weight: 500;
  background: #f0f4f8;
  border: 1px solid #c1c3c5;
  font-size: 18px;
  line-height: 28px;
  color: #333;
  text-align: left;
  box-shadow: none;
}

.job-list .accordion-button:not(.collapsed), .job-list .accordion-button:not(.collapsed):hover {
  color: #fff;
  background: #2e4b5e;
  border-bottom: 2px solid #4f82a2;
  box-shadow: none;
}

.job-list .accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e4b5e'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
  position: absolute;
  right: 20px;
  top: 20px;
}

.job-list .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
}

.job-list .accordion-button:hover {
  background: #d9e5ed;
}

.job-list .accordion-body {
  padding: 25px 30px;
  background: #f0f4f8;
  border: 1px solid #c1c3c5;
  border-top: 0;
  box-shadow: none;
}

.job-list .accordion-body h5 {
	font-size: 16px;
	text-decoration: underline;
	text-transform: capitalize;
}

.job-list .accordion-body ul {
	margin-top: 30px;
	margin-bottom: 30px;
}

.job-list .accordion-body ul li {
	font-size: 0.938em;
	line-height: 2em;
}

.job-list .accordion-body h4, .job-list .accordion-body h5 {
	font-weight: 700;
}

/* Modal */

.job-list .modal {
    padding: 0 10px !important;
}

.job-list .modal-dialog {
	width: 100%;
	max-width: 800px;
	margin: 50px auto;
}

.job-list .modal-dialog .btn-outline-secondary {
	border-color: #ccc;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.job-list .modal-body .col-form-label {
	padding-right: 0;
}

.job-list .benefits-tag {
  display: inline-block;
  background-color: #ff4a17;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  padding: 10px 15px;
  margin: 0 5px 10px 0;
}

.job-list .benefits-tag .icon {
  font-size: 21px;
  vertical-align: text-bottom;
}

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
#contact-us {
  width: 100%;
  height: 100vh;
  background-image: url("../img/contact-us-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  padding: 0;
}

#contact-us:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 20, 26, 0.1);
}

#contact-us .contact-us-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: left;
  flex-direction: column;
}

#contact-us .container-fluid {
  position: absolute;
  background: rgba(255, 74, 23, 0.8);
  width: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
  bottom: 90px;
}

#contact-us h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#contact-us h2 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
}

#contact-info {
	position: absolute;
	left: 210px;
	bottom: 0;
	width: calc(100% - 210px);
	background: rgba(255, 255, 255, 0.9);
	padding: 45px 2rem 35px;
}

#contact-info h3 {
  font-size: 28px;
  font-weight: 600;
}

#contact-info h5 {
  font-size: 19px;
  line-height: 38px;
}

@media (max-width: 1199px) {
  #contact-us .container-fluid {
	width: 400px;
	bottom: 100px;
  }
  #contact-us h1 {
    font-size: 35px;
    line-height: 43px;
  }
  #contact-us h2 {
    font-size: 17px;
    line-height: 25px;
  }
  #contact-info h3 {
	font-size: 22px;
  }
  #contact-info h5 {
	font-size: 17px;
	line-height: 34px;
  }
}

@media (max-width: 575px) {
  #contact-us .container-fluid {
	width: 300px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  #contact-info {
	left: 20px;
	width: calc(100% - 20px);
	padding: 30px 1rem 15px;
  }
  #contact-info h3 {
	font-size: 18px;
  }
  #contact-info h5 {
	font-size: 14px;
	line-height: 28px;
  }
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

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

#footer .footer-top {
  background: #15222b;
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

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

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


#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: #ff5e31;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff4a17;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

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

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff4a17;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits a {
  transition: 0.3s;
}