/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Michroma', sans-serif;
  color: #000000;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#header .img-fluid {
max-width: 100%;
height: auto;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 0 0 30px;
}

.header-social-links a {
  color: #000000;
  padding-left: 8px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  font-size: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #ecbb45;
}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# 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 > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #cc171d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}

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

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

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

.mobile-nav-toggle.bi-x {
  color: #fff;
  font-size: 30px;
}

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

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 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: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  background-color: rgba(33, 38, 42, 0.9);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 18px;
  color: #ffffff;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 70px);
  background: url("../img/mainBackGround.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero .hero-content {
  height: 100vh;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#hero:before {
  content: "";
  background: rgba(56, 64, 70, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 70px;
  color: #fff;
  letter-spacing: 3px;
}

#hero h1 #highrisk {
  color: #fff;
}

#hero h1 #global {
  color: #fff;
}

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 25px;
    line-height: 25px;
  }
}

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

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

.section-title {
  text-align: center;
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #cc171d;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  font-size: 23px;
  margin-bottom: 0;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ecbb45;
  border-top-color: #151515;
  border-bottom-color: #151515;
  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);
  }
}

/*--------------------------------------------------------------
# Our Speciality
--------------------------------------------------------------*/
.our-speciality .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
}

.our-speciality .icon-box .icon {
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: #000000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #ecbb45;
}

.our-speciality .icon-box .icon .iconify {
  font-size: 50px;
}

.our-speciality .icon-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Who We Are
--------------------------------------------------------------*/
.who-we-are {
  padding: 0;
  background-color: #000000;
}

.who-we-are .container {
  color: #ecbb45;
  text-align: center;
  padding-top: 35px;
  padding-bottom: 45px;
}

.who-we-are h2 {
  color: #ffffff;
}

.who-we-are-paragraph {
  font-size: 18px;
  text-align: justify;
}

.who-we-are .icon-boxes {
  padding-top: 10px;
}

.who-we-are .icon-boxes h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  color: #cc171d;
}

.who-we-are .icon-boxes p {
  font-size: 16px;
  color: #ffffff;
}

.who-we-are .img-fluid {
  width: 100%;
  height: auto;
  padding-top: 15%;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .who-we-are .img-fluid {
    margin-left: 0;
  }
}

.who-we-are .row .icon-boxes .iconify {
  color: #ecbb45;
  width: 50%;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background-color: #000000;
  border-top: 1px solid #b6daf2;
}

.team .member {
  text-align: center;
  border-radius: 6px;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: normal;
  margin-bottom: 2px;
  font-size: 30px;
  color: #cc171d;
}

.team .member span {
  display: block;
  font-size: 18px;
  color: #ffffff;
}

.team .member p {
  padding-top: 10px;
  font-size: 17px;
  font-style: italic;
  color: #ecbb45;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #ffffff;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #cc171d;
}

.team .member .social i {
  font-size: 25px;
  margin: 0 2px;
}

.team .member .quote-icon-right {
  color: #cc171d;
  font-size: 18px;
}

.team .member .quote-icon-left {
  color: #cc171d;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: #fff;
}

.services .icon-box {
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #000000;
  transition: ease-in-out 0.3s;
}

.services .icon-box i {
  float: left;
  color: #ecbb45;
  font-size: 46px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 18px;
  color: #ffffff;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 16px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000000;
  padding: 0 0 30px 0;
  color: #ffffff;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  text-align: center;
  padding-top: 30px;
}

#footer .footer-top .footer-info .logo img {
  max-height: 55px;
  margin-bottom: 30px;
}

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

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

#footer .footer-top .footer-info a {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top .footer-info a:hover{
  color: #ecbb45;
}

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

#footer .footer-bottom .social-links a {
  font-size: 25px;
  display: inline-block;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 38px;
  height: 38px;
  transition: 0.3s;
  background: #ffffff;
}

#footer .footer-bottom .social-links a:hover {
  color: #ffffff;
  background: #ecbb45;
  text-decoration: none;
}

#footer .footer-bottom .social-links{
  text-align: right;
  padding-top: 20px;
}

#footer .footer-bottom{
  border-top: 4px solid #cc171d;
}

#footer .copyright {
  text-align: left;
  padding-top: 20px;
}

#footer .credits {
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

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