@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira+Stencil+One&amp;display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s linear;
  border: none;
  outline: none;
}

html,
body {
  overflow-x: hidden;
}

@keyframes turn360Infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
img {
  width: 100%;
  height: auto;
}

.section-title {
  font-size: 20px;
  text-transform: capitalize;
  color: #181828;
  line-height: 25px;
}

.section-sub {
  font-size: 18px;
  color: #868686;
}

.custom-btn {
  background-color: #006187;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-transform: capitalize;
  margin: 10px 7px 0 0;
}
.custom-btn:hover {
  border: 1px solid #006187;
  color: #006187;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}
.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

header {
  background-image: url("../img/team-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
header .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
header .navbar {
  padding: 20px 0;
  background-color: #000;
  z-index: 999;
}
header .navbar.active {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #181828;
}
header .navbar .bar_icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 16px 14px;
  cursor: pointer;
  display: none;
  overflow: hidden;
}
header .navbar .bar_icon span {
  width: 100%;
  height: 3px;
  background-color: #181828;
  border-radius: 50px;
}
header .navbar .bar_icon span:nth-child(2) {
  margin-left: 7px;
}
header .navbar .bar_icon:hover span:nth-child(2) {
  transform: translateX(-100px);
}
header .navbar .bar_icon:hover span:first-child {
  transform: translateY(9px) translateX(2px) rotate(45deg);
}
header .navbar .bar_icon:hover span:last-child {
  transform: translateY(-6px) translateX(2px) rotate(-45deg);
}
header .navbar .bar_icon:hover {
  box-shadow: 2px 2px 0px #181828, 3px 3px 0px #006187;
}
header .navbar .brand-logo {
  width: 150px;
}
header .navbar .nav-items {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 45px;
  padding:0 15px;
}
.navbar-expand-lg .navbar-nav .nav-link {  
  padding:15px 15px;
}
header .navbar .nav-items .drop_down_menu {
  width: 300px;
  background-color: #181828;
  right:0px;
  top: 25px;
  padding: 20px;
  box-shadow: 4px 3px 16px rgba(255, 255, 255, 0.0901960784);
  border-radius: 8px;
  display: none;
 
}
header .navbar .nav-items .drop_down_menu a {
  text-decoration: none;
   font-size:16px;
}
header .navbar-expand-lg .navbar-nav .dropdown-menu {
        
        min-width: 300px;
    }
header .navbar .nav-items .has-drop-down-menu:hover .drop_down_menu {
  display: block !important;
}
header .navbar .nav-items .nav-item {
  list-style: none;
  text-transform: uppercase;
  position: relative;
}
header .navbar .nav-items .nav-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #006187;
  bottom: 0;
  left: 0;
}
header .navbar .nav-items .nav-item:hover::before {
  width: 100%;
}
header .navbar .nav-items .nav-item a {
  font-size: 16px;
  color: #f1F1f1;
  text-transform: capitalize;
}
header .hero {
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
header .hero .hero_image {
  width: 500px;
  border:1px solid #fff;
  /*animation: turn360Infinite 5s linear infinite;*/
}
header .hero h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #000;
}
header .hero h1 {
    font-size: 50px;
    font-weight: 800;
    margin: 0 0 50px;
}
header .hero p {
  font-size: 20px;
  font-weight: 500;
}

.sidebar {
  position: fixed;
  overflow: hidden;
  left: -100%;
  top: 0;
  width: 30%;
  height: 100%;
  background-color: #006187;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-shadow: 4px 4px 26px rgba(0, 0, 0, 0.4509803922);
  opacity: 0;
  transition: all 0.5s linear !important;
}
.sidebar.active {
  left: 0;
  opacity: 1;
}
.sidebar .brand-logo {
  width: 200px;
  margin: 20px auto;
}
.sidebar ul li {
  list-style: none;
  text-align: center;
  padding: 10px;
  position: relative;
}
.sidebar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #815c12;
  height: 100%;
  z-index: -1;
  width: 0%;
}
.sidebar ul li:hover::before {
  width: 100%;
}
.sidebar ul li:not(:first-child) {
  margin-top: 10px;
}
.sidebar ul li a {
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  height: 100%;
}
.sidebar ul li:hover a {
  letter-spacing: 2px;
}

.services .section-title {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding-right: 10px;
}
.services .line {
  width: 100%;
  height: 1px;
  background-color: #181828;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.services .card {
  padding: 40px 20px;
  background-color: #EEEBE6;
  border: none;
  width: 100%;
  height: 445px;
}
.services .card .card-img-top {
  width: 90px;
  margin: auto;
}
.service-box{
	padding:10px;
}
.about .section-title {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding-right: 10px;
}
.about .line {
  width: 100%;
  height: 1px;
  background-color: #181828;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.about .about_items {
  margin-top: 20px;
  padding-left: 0;
}
.about .about_items .about_item {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.about .about_items .about_item img {
  width: 60px;
}

.team {
  background-image: url("../index.html");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.team .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181828;
  z-index: -1;
}
.team .card {
  background-color: transparent;
}

.pricing .price_box {
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 3px 7px 10px rgba(180, 151, 93, 0.141);
  padding: 50px 20px;
}
.pricing .price_box .price {
  font-family: "Saira Stencil One", sans-serif;
  font-size: 55px;
  color: #181828;
  text-shadow: 0 0 10px #cdcdcd;
}
.pricing .price_box .pay_type {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.2em 0.5em;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.pricing .price_box .pay_type.main {
  color: #617C97;
}
.pricing .price_box .pay_type.sec {
  color: #D5846E;
}
.pricing .price_box button.main {
  background-color: #617C97;
}
.pricing .price_box button.main:hover {
  background-color: #fff;
}
.pricing .price_box button.sec {
  background-color: #181828;
}
.pricing .price_box button.sec:hover {
  background-color: #fff;
}
.pricing .price_box .price_items {
  list-style-type: none;
}
.pricing .price_box .price_items .price_item {
  font-size: 15px;
  color: #181828;
}
.pricing .price_box .price_items .price_item .fe_check {
  width: 30px;
}
.pricing .price_box .price_items .price_item.unav {
  color: #cdcdcd;
}

footer {
  background-image: url("../img/bg-dark.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
footer .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 235, 230, 0.5);
  z-index: -1;
}
footer h3 {
  text-transform: uppercase;
  color: #181828;
  font-size: 20px;
}
footer ul li {
  list-style-type: none;
  font-size: 15px;
}
footer .brand-logo {
  width: 150px;
}
footer form .btn {
  background-color: #ba9a63;
}
footer form .btn svg {
  color: #fff;
}
footer form .btn:hover svg {
  color: #181828;
}

.overlay_background {
  position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: -1;
}
.overlay_background.active {
  opacity: 1;
  display: block;
  z-index: 1;
}

.loading {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading .loader {
  font-size: 48px;
  color: #181828;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  position: relative;
}
.loading .loader:before {
  content: "";
  animation: 5s print linear alternate infinite;
}
.loading .loader:after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translatey(-45%);
  width: 2px;
  height: 1.3em;
  background: currentColor;
  opacity: 0.8;
  animation: 1s blink steps(2) infinite;
}
@keyframes blink {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes print {
  0% {
    content: "L";
  }
  10% {
    content: "Lo";
  }
  20% {
    content: "Loa";
  }
  30% {
    content: "Load";
  }
  40% {
    content: "Loadi";
  }
  50% {
    content: "Loadin";
  }
  60% {
    content: "Loading";
  }
  70% {
    content: "Loading.";
  }
  80% {
    content: "Loading..";
  }
  90%, 100% {
    content: "Loading...";
  }
}/*# sourceMappingURL=style-2.css.map */




.btn_wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
}
a.btn_fill {
    background-color: #006187;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
    text-transform: capitalize;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 5px;
}
a.btn_border {
    color: #856931;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
    text-transform: capitalize;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 5px;
    border: solid 1px #856931;
}

.tag_cloud ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 0;
}
.tag_cloud li {
    margin: 5px 0 0;
}
.tag_cloud li a {
    color: #856931;
    padding: 2px 15px;
    text-transform: capitalize;
    margin: 0 7px 0 0;
    text-decoration: none;
    border-radius: 40px;
    border: solid 1px #856931;
    display: block;
    font-size: 13px;
}
.team .card-img-top {
    width: 200px;
    display: block;
    margin: 20px auto 0;
}
.consultation ul {
    display: flex;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}
.consultation li {
    padding: 10px 20px 10px 48px;
    border: solid 1px #EEEBE6;
    margin: 0 0 0 -1px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 25px auto;
    font-size: 14px;
}
li#face-face {
    background-image: url(../img/communication.png);
}
li#telephonic {
	background-image: url(../img/chat.png);
}
li#online-report {
	background-image: url(../img/call.png);
}


ul.footer_items {
    padding: 0;
}
.footer_items li {
    display: inline-block;
}
.footer_items li a {
    display: block;
    width: 30px;
    height: 30px;
    color: #fff;
    padding: 0 0 0;
    box-sizing: border-box;
    border-radius: 50%;
    background-size: 100% 100% !important;
}
.footer_items li:first-child a {
    background: rgba(0, 0, 0, 0) url(../img/youtube.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(2) a {
    background: rgba(0, 0, 0, 0) url(../img/facebook.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(3) a {
    background: rgba(0, 0, 0, 0) url(../img/twitter.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(4) a {
    background: rgba(0, 0, 0, 0) url(../img/linkedin.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(5) a {
    background: rgba(0, 0, 0, 0) url(../img/pinterest.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(6) a {
    background: rgba(0, 0, 0, 0) url(../img/redit.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(7) a {
    background: rgba(0, 0, 0, 0) url(../img/Instagram.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(8) a {
    background: rgba(0, 0, 0, 0) url(../img/tumblr.png) no-repeat scroll 0 0 / auto;
}
.footer_items li:nth-child(9) a {
    background: rgba(0, 0, 0, 0) url(../img/rss.png) no-repeat scroll 0 0 / auto;
}