@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&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');


* {
  font-family: 'Montserrat', sans-serif;
}


:root {

  --theme-color: #c78333;
  --theme-color-1: #000;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
  overflow-x: clip;
}


.bg-color-2 {
  background: #F1F7FD;
}

.bg-color-3 {
  background: #0F1D34 !important;
}

/* all round css  */

a {
  text-decoration: none !important;
}

li {
  list-style: none;
}

.bar.bar-big::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 2px;
  width: 50px;
  border-radius: 0;
  background: linear-gradient(45deg, #df833e, #04325d);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}

.bar.bar-big::before {
  margin: auto;
}

.bar.bar-big {
  height: 2px;
  width: 120px;
  background: linear-gradient(45deg, #f58634, #e3843d);
  position: relative;
  margin: 4px 0;
}

@keyframes MOVE-BG {
  0% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }

  100% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}


.about_top h2 {
  font-size: 40px;
  font-weight: 600;
  color: #04325d;
}


.about_us h4 {
  font-size: 24px;
  font-weight: 600;
  color: #f58634;
}


.home .main_title h4 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

/* all round css  */


/* top header ki css start */

section.top {
  background: #04325d;
  padding: 10px 0px;
}

li.info_li a {
  color: #ffffff !important;
}

li.info_li a i {
  color: #f58634 !important;
  font-size: 18px;
  font-weight: 400;
}

/* top header ki css end */


/* header ki css start  */


.navbar .navbar-brand img {
  width: 150px;
  height: 100%;
}

nav.navbar {
  box-shadow: 0px 2px 4px 0px #140b0b61;
  background: #fff !important;
}

nav.navbar .nav-item a.nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #000 !important;
  transition: all 0.5s;
}



.navbar-expand-lg .navbar-nav {
  gap: 30px;
}

.bt button {
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  box-shadow: 1px 2px 4px #00000038;
  background: linear-gradient(45deg, #f58634, #0c67a5);
  transition: all 0.5s;
}

.bt button:hover {
  border-radius: 0px !important;
  background: linear-gradient(45deg, #0c67a5, #f58634);

}

.bt button a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.fixed {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  background: rgb(231, 231, 231);
  animation: sticky 2s;
  box-shadow: 0px -1px 4px 0px;
  transition: all 0.5s;
}

@keyframes fixed {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}


/* header ki css end  */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 650px;
  background: linear-gradient(45deg, #bd7328, #fcd96d);
  overflow: hidden;
  position: relative;
}



input.form-control1 {
  padding: 6px 30px;
  border: none;
  background: #04325d;
  font-weight: 600;
  color: #fff;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  background: linear-gradient(45deg, #000000b3, #04325d);
}

#heroCarousel {
  overflow: hidden !important;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: start;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
  padding-top: 100px;
}



.home .main.main1 {
  padding: 30px 30px;
  background: #f58634bf;
}


.home .form-control {
  margin-bottom: 15px;
  border: none;
  border-radius: 0px;
  box-shadow: none !important;
}


/* #hero .carousel-container .container {
  margin-bottom: 100px;
} */

#hero .carousel-container>.container>* {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#hero h2 {
  color: #f58634;
  font-size: 34px;
  font-weight: 700;
}


.home .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}


.home .title1 h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}


#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 20px auto;
  color: #fff;
}


.home .bts button {
  padding: 8px 30px;
  background: #f58634;
  border: none;
  border-radius: 5px;
}



.home .bts button a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}



#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: linear-gradient(45deg, #bd7328, #fcd96d);
}

#hero .btn-get-started {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #000;
  animation-delay: 0.8s;
  background: linear-gradient(45deg, #bd7328, #fcd96d);
  width: auto !important;
}

#hero .btn-get-started:hover {
  background: linear-gradient(45deg, #fcd96d, #bd7328);
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  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: #00393b;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
  padding: 0 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}

@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }
}



.shape {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.shape svg {
  width: 100%;
}

.main.main_box_1 {
  background: linear-gradient(45deg, #09568f, #0b63a0);
}

.main.main_box_3 {
  background: linear-gradient(45deg, #09568f, #0b63a0);
}




.top_sect img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  margin-left: 18px;
}

.main.main_box_1 img,
.main.main_box_3 img {
  filter: invert(1);
}

.top_sect .cnt {
  padding-left: 15px;
}


.top_sect .cnt h4 {
  color: #fff;
}


.top_sect .cnt p {
  color: #fff;
}


.top_sect .main {
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 5px 1px #0009;
  height: auto;
  padding: 20px 0;
}

.about_us .abt_img {
  overflow: hidden;
}

.about_us .abt_img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  border-radius: 15px;
}

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


.counts {
  background: linear-gradient(45deg, #000000e0, #000000c7), url(../img/bey_bg.webp);
  width: 100%;
  color: #fff;
  height: 650PX;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counts .cnt_count p {
  margin: auto;
  text-align: center;
  width: 60%;
  padding-bottom: 40px;
}

.counts .btn_count {
  margin: auto;
  text-align: center;
}

.counts .counts_box {
  text-align: center;
}

.counts .count_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.counts button a {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 18px;
}

.counts .counts_box .count {
  font-size: 35px;
  color: #f58634;
  font-weight: 600;
  padding-bottom: 10px;
}

.counts button {
  padding: 10px 50px;
  border: none;
  background: linear-gradient(45deg, #f58634, #f58634);
  box-shadow: 1px 2px 6px 0px #ffffff3b;
  border-radius: 5px;
  transition: all 0.5s;
}



.counts .count_flex:before {
  content: "";
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  border-bottom: 2px solid;
}

.counts h4 {
  padding-top: 18px;
  padding-bottom: 20px;
}


.counts .main_title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #f58634;
}


section.counts {
  background: #04325d;
}

.counts .counts_box p {
  color: #dda84b;
}

.counts span.ps-3.h3 {
  color: #f58634;
}

.counts h5.text-center.pt-5 {
  color: #f58634;
  font-size: 30px;
  font-weight: 600;
}

.brd_bt {
  border-bottom: 2px solid #f58634;
  width: 12%;
  text-align: center;
  margin: auto;
  transform: rotate(270deg);
}

.counts .counts_box p {
  margin-bottom: 35px;
}

/* section contact start */

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

section.contact {
  background: linear-gradient(45deg, #bd732824, #fcd96d1c);
}

.contact .row {
  align-items: center;
}

.contact_img img {
  width: 100%;
}

.frms {
  background: linear-gradient(46deg, #f58634, #f58634);
  padding: 20px 40px;
}

.contact h2 {
  font-size: 40px;
  font-weight: 700;
  color: #04325d;
}


.col-md-6.col-lg-5.d-flex.align-self-stretch.info_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
}


.contact-wrap h3.mb-4 {
  font-size: 20px;
  margin-bottom: 10px !important;
  color: #fff;
}

.info_cnt .info-wrap p.mb-4 {
  color: #09538a;
  font-size: 15px;
  font-weight: 700;
}

.contact .form-control::placeholder {
  color: #fff;
}

.contact form.quri_form {
  padding: 10px 0px;
}

.contact .form-control {
  margin-bottom: 15px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #fefefe !important;
  background: none !important;
  padding: 0;
  height: 45px;
  box-shadow: none !important;
  outline: none !important;
}

.contact textarea.form-control {
  height: 90px;
}

.quri_btn>button {
  width: auto;
  padding: 8px 36px;
  border: none;
  background: #fff;
  border-radius: 3px;
}


.contact .row .info_cnt {
  background: #fff;
  padding: 0;
}

.info-wrap .dbox .text p {
  margin: 0;
  color: #212529;
}

.contact .row .info_cnt .dbox a .icon span {
  width: 40px;
  height: 40px;
  border: 1px solid #f58634;
  border-radius: 25px;
  color: #f58634;
  transition: all .4s ease-in;
}


/* section contact end */


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

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

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #f58634;
}

section.footer-2.bg--2 {
  background: #04325d;
  color: #fff;
}

.ftr_logo img {
  width: 100px;
  object-fit: cover;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  color: #131419;
  font-weight: 400;
  padding-top: 15px;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #131419;
  color: #c87d25;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
  transition: 0.3s;

}

#footer .footer-top .social-links a:hover {
  background: linear-gradient(45deg, #fcd96d, #bd7328);
  color: #131419;
  box-shadow: 0 0 5px 1px #ffffff1f;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #04325d;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #131419;
}

#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: 5px;
  color: #13191a;
  font-size: 20px !important;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #131419;
  padding: 10px 0;
}

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


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

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

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

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #f57823;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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


.ftr-bg .info i {
  font-size: 16px;
  color: #f58634;
  float: left;
  font-family: 'Font Awesome 5 Pro';
  width: 40px;
  height: 40px;
  background: #04325d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-style: normal !important;
  transition: all 0.3s ease-in-out;
}



.ftr-bg .info h3 {
  font-size: 18px;
  padding: 0 0 0 60px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #131419;
}

.ftr-bg .info p a {
  text-decoration: none;
  color: #000000;
}


.ftr-bg .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #131419;
}

.footer-2 h2 a {
  color: #c87d25;
  font-weight: 700 !important;
}

#footer .footer-top .footer-links ul a {
  color: #131419;
  transition: all 0.5s;
  font-weight: 500;
}


#footer .footer-top .footer-links ul a:hover {
  color: #c1792c !important;
  padding-left: 5px;
  font-weight: 500;
}


section.top_sect {
  padding-top: 50px;
}

.main.main_box_2 {
  background: #f58634;
  color: #fff;
}

.main.main_box_2 img {
  filter: invert(1);
}


/*----------------------------------------*/
/* FEATURES CSS START
/*----------------------------------------*/

.features-section .bg-shape-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.features-section .bg-shape-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

section.features-section {
  background: #edeff6;
  padding: 80px 0 !important;
}

.features-box-area {
  padding: 30px 15px;
  background: #fff;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.features-box-area .icon-box {
  font-size: 50px;
  color: var(--theme-color);
}

.features-box-area .shape-1 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.features-box-area .shape-2 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}

.features-box-area .shape-3 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: top right;
}

.features-box-area:hover .shape-3 {
  opacity: 1;
}

.features-box-area:hover .shape-2 {
  opacity: 0;
}

.features-box-area:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #000;
  transition: all 700ms ease;
}

.features-box-area:hover h5 {
  color: #fff;
  position: relative;
}

.features-box-area a {
  color: #c78533;
}

.features-box-area:hover a {
  color: #fff;
}

.features-box-area:hover p {
  color: #fff;
  position: relative;
}

.features-box-area:hover .icon-box {
  color: #fff;
  position: relative;
}

.features-box-area:hover:before {
  width: 100%;
  left: 0;
}

.features-box-area button.rd_more {
  border: none;
  display: inline-block;
  background: none;
  padding: 0;
  height: auto;
  width: max-content;
}

.features-box-area button.rd_more a {
  background: #c78533;
  display: block;
  position: relative;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid;
  color: #fff;
  transition: all .4s;
}

.features-box-area:hover button.rd_more a {
  border-color: #c78533;
  background: transparent;
}


section.contact {
  background: linear-gradient(45deg, #bd732824, #fcd96d1c);
  overflow: hidden;
}

.contact .dbox {
  padding-bottom: 10px;
}


/* website inner page start */

.website-frt {
  background: linear-gradient(45deg, #000000b0, #00000047), url(../img/iner_1.jpg);
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.website-frt.color-type-2.unrefined.has-type {
  background: linear-gradient(45deg, #000000b0, #00000047), url(../img/unled.png);

}

.website-frt.plastic {
  background: linear-gradient(45deg, #000000b0, #00000047), url(../img/bt_plastic.jpg);

}

.website-frt .top_cnt h4 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  font-family: 'Roboto';
}

.wrap_frt a {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
}

.wrap_frt span.span a {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

span.line {
  color: #fff;
}

.bft h4 {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}

.bft span.bft_span {
  font-size: 18px;
  font-weight: 500;
  color: #c58232;
}

.bft span.bft_span {
  font-size: 18px;
  font-weight: 500;
  color: #c58232;
  padding-right: 15px;
}

.bft li.bft_li {
  padding-bottom: 6px;
}

.about_bft p span.about_bft_span {
  font-weight: 700;
  color: #c17a2d;
  font-size: 18px;
}

.lead .card_img img {
  width: 100%;
  height: 250px;
  transition: all 0.5s;
}

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

.lead .card_img {
  overflow: hidden;
}

.lead .card_title {
  background: linear-gradient(45deg, #bd7328, #fcd96d);
  padding: 8px 0px;
}

.lead .card_title a {
  color: #000000 !important;
  font-weight: 600;
  font-size: 20px;
}

/* website inner page end */








@media (max-width: 1024px) {

  .top_sect .main {
    display: flex;
    align-items: center;
    box-shadow: 0px 1px 5px 1px #0009;
    height: 270px;
    padding: 15px 0;
    flex-wrap: wrap;
  }

  section.counts.mt-5.py-5 {
    margin-top: 0 !important;
  }

  section.top_sect {
    padding-top: 20px;
  }

  section.features-section {
    background: #edeff6;
    padding: 30px 0 !important;
  }

  section.contact {
    background: linear-gradient(45deg, #bd732824, #fcd96d1c);
    overflow: hidden;
    padding: 20px 0px !important;
  }

  .contact .dbox {
    padding-bottom: 15px;
  }

  button.navbar-toggler {
    color: #fff !important;
    border: 1px solid;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1) !important;
  }

  .navbar-toggler:focus {
    box-shadow: 0px 1px 0px 1px !important;
  }

  .navbar-expand-lg .navbar-nav {
    gap: 0px;
  }


}

@media (max-width: 767px) {

  .navbar-expand-lg .navbar-nav {
    gap: 0px;
    line-height: 14px;
  }

  section.top {
    display: none;
  }

  button.navbar-toggler {
    color: #fff !important;
    border: 1px solid;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(0) !important;
  }

  .navbar-toggler:focus {
    box-shadow: 0px 1px 0px 1px !important;
  }

  .carousel-control-next {
    right: 0;
    width: 0 !important;
    display: none !important;
  }

  .carousel-control-prev {
    right: 0;
    width: 0 !important;
    display: none !important;
  }

  #hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0 !important;
    right: 0;
    left: 0;
  }

  #hero h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
  }


  .counts .counts_box p {
    margin-bottom: 5px;
  }

  .counts .counts_box .count {
    font-size: 25px;
    padding-bottom: 0px;
  }

  .counts h4 {
    padding-top: 10px;
  }


  .counts .cnt_count p {
    font-size: 14px;
    width: 100%;
    padding-bottom: 5px;
  }

  .counts .cnt_count p {
    padding-top: 10px;
  }

  .counts {
    padding: 0px !important;
  }

  .counts span i {
    font-size: 18px;
  }

  .counts button {
    padding: 8px 50px;
  }

  .counts {
    width: 100%;
    color: #fff;
    height: 560PX;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brd_bt {
    display: none;
  }

  .counts .counts_box p {
    margin-bottom: 5px;
  }

  .counts .counts_box .count {
    font-size: 25px;
    padding-bottom: 0px;
  }

  .counts h4 {
    padding-top: 10px;
  }


  .counts .cnt_count p {
    font-size: 14px;
    width: 100%;
    padding-bottom: 5px;
  }

  .counts .cnt_count p {
    padding-top: 0px;
    padding-bottom: 10px;
  }

  .counts {
    padding: 0px !important;
  }

  .counts span i {
    font-size: 18px;
  }

  .counts button {
    padding: 8px 50px;
  }

  .counts {
    color: #fff;
    height: 650PX;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .counts h5.text-center.pt-5 {
    color: #c88434;
    font-size: 22px;
    padding: 10px 0 0 0 !important;
    font-weight: 600;
  }

  .footer-2 h2.fs-6.text-drak {
    font-size: 14px !important;
    line-height: 24px;
  }

  #hero {
    width: 100%;
    height: 810px;
    background: linear-gradient(45deg, #bd7328, #fcd96d);
    overflow: hidden;
    position: relative;
  }

  section.top_sect {
    padding-top: 0px;
  }

  .top_sect .main {
    margin-bottom: 20px !important;
  }

  .top_sect .main {
    display: flex;
    align-items: center;
    box-shadow: 0px 1px 5px 1px #0009;
    height: auto;
    padding: 20px 0;
    flex-direction: column;
    justify-content: space-between;
  }

  .top_sect h4 {
    font-size: 20px;
  }

  .top_sect p {
    font-size: 14px;
  }

  .top_sect .cnt {
    padding-left: 0px;
    text-align: center;
    padding-top: 15px;
  }

  section.counts.mt-5.py-5 {
    margin: 0 !important;
  }

  .top_sect img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    margin-left: 0;
  }

  section.features-section {
    background: #edeff6;
    padding: 30px 0 !important;
  }

  .contact .row {
    align-items: center;
    margin-top: 15px !important;
  }

  section.contact {
    padding: 10px 0px !important;
  }

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

  #hero .carousel-container {
    padding-top: 10px;
  }


  .website-frt .top_cnt h4 {
    font-size: 20px;
    text-align: center;
  }

  .website-frt {
    height: 250px;
  }

  .lead .card_img img {
    height: 200px;
    object-fit: cover;
  }

}















.service .sec_head span {
  color: #0d4f6f;
}



div#v-pills-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}


.service .for_icon img {
  width: 80px;
  height: 80px;
  transition: all 0.5s;
}


.service .for_icon {
  overflow: hidden;
  padding: 10px 0;
}


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


div#v-pills-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}


div#v-pills-home.active {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 29px;
}



div#v-pills-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}


[aria-labelledby="v-pills-profile-tab"] {
  display: none !important;
}


.tab-pane.fade.active.show {
  display: flex !important;
}


.service .title a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}


.service ul.d-flex.list-unstyled {
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}


.service ul li.text-center {
  width: 22%;
  margin: 10px;
  padding: 20px;
  background: #fff;
  position: relative;
  z-index: 99;
  transition: all .4s;
  box-shadow: 0 0 6px 0 #00000082;
  border-radius: 20px;
}


.service .title i {
  padding-top: 15px;
  color: #e8883a;
  transition: all .4s;
}


.service .title a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  transition: all .4s;
}



.service .nav-link.active {
  background: #e8883a !important;
  color: #fff !important;
}


section#service {
  background: linear-gradient(45deg, #000000e0, #000000de), url(../img/bg_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.service .sec_head {
  margin: 40px 0px;
}


.service .sec_head h5 {
  font-size: 40px;
  font-weight: 700;
  color: #04325d;
  background: #fff;
}


button#v-pills-home-tab {
  border-radius: 0px;
  color: #fff;
  background: #04325d;
  width: 49%;
}


button#v-pills-profile-tab {
  border-radius: 0px;
  background: #04325d;
  color: #fff;
  text-transform: capitalize;
  width: 50%;
  margin-left: 10px;
}






section.doc {
  background: repeating-linear-gradient(70deg, #04325d, #04325d 1px);
}


.doc .main_title h3 {
  font-size: 40px;
  text-transform: capitalize;
  color: #e8883a;
  font-weight: 700;
}


.doc .main_title h3 {
  font-size: 40px;
  text-transform: capitalize;
  color: #f58634;
  font-weight: 700;
  padding-bottom: 20px;
}


.doc .main {
  background: #fff;
  padding: 25px;
  height: 100%;
  border-radius: 20px;
  position: relative;
  transition: all .4s;
  z-index: 9;
}


.doc .main:hover {
  border-radius: 5px;
}



.doc .for_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}


.doc .for_icon i {
  font-size: 50px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 3px solid #04325d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e8883a;
}


.doc .title h4 {
  font-size: 18px;
  font-weight: 600;
  padding-top: 17px;
}




@media (max-width: 767.98px) {

  .home .col-lg-6 {
    padding: 0px !important;
  }

  .home .main_title h4 {
    display: none;
  }


  #hero p {
    font-size: 14px;
  }

  .offset-1 {
    margin-left: 0 !important;
  }

  div#quote {
    padding: 0;
  }

  .home .main.main1 {
    padding: 30px 20px;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .about_top h2 {
    font-size: 20px;
  }

  .about_us h4 {
    font-size: 14px;
  }

  .about_prg p {
    font-size: 13px;
  }

  .counts .main_title h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }



  .service .sec_head {
    margin: 20px 0px;
  }



  button#v-pills-home-tab {
    width: 100%;
  }


  button#v-pills-profile-tab {
    width: 100%;
    margin-left: 0px;
    margin-top: 10px;
  }




  .service ul.d-flex.list-unstyled {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
  }


  .service ul li.text-center {
    width: 43%;
    margin: 0px 10px 15px 10px;
    padding: 5px;
    background: #fff;
  }




  .service .title a {
    text-decoration: none;
    font-size: 12px;
  }

  .doc .main_title h3 {
    font-size: 19px;
    padding-bottom: 10px;
  }


  .doc .col-md-3 {
    margin-top: 10px;
  }


  section.footer-2.bg--2 {
    padding: 5px 0 !important;
  }


  .inner_home h2 {
    margin-bottom: 10px;
    font-size: 18px !important;
    font-weight: 700;
  }


  .inner_home .main_title h4 {
    display: block !important;
    font-size: 16px !important;
  }

  .navbar .navbar-brand img {
    width: 120px !important;
    height: 100%;
  }


  .shape {
    position: absolute;
    bottom: -10px !important;
    left: 0;
    width: 100%;
    z-index: 1;
  }


  .iso20 .inner_home h2 {
    margin-bottom: 10px;
    font-size: 17px !important;
    font-weight: 700;
  }


  .iso20 .about_us h4 {
    font-size: 13px;
  }

  .content {
    margin-top: 50px !important;
  }

  .wrapper-2 h2 {
    font-size: 36px !important;
}

}






.about_us .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}





.wrapper-1 {
  background: #fff;
  height: initial;
  max-width: 620px;
  margin: 0 auto;
  margin-top: 50px;
  box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}


.wrapper-2 {
  padding: 30px;
  text-align: center;
}

.wrapper-2 p {
  text-decoration: none;
  color: black;
}

.go-home {
  color: #fff !important;
  background: #f58634;
  border: none;
  padding: 10px 50px;
  margin: 30px 0;
  border-radius: 30px;
  text-transform: capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}


.wrapper-2 h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 700;
  color: #04325d;
}

.go-home a {
  color: #fff !important;
  text-decoration: none;
}

.footer-like {
  text-align: center;
}

.content {
  margin-top: 200px;
}