@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


@font-face {
    font-family: 'montserratbold';
    src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratsemibold';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'montserratextrabold';
    src: url('../fonts/montserrat-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratlight';
    src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratmedium';
    src: url('../fonts/montserrat-medium-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratregular';
    src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratthin';
    src: url('../fonts/montserrat-thin-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body{
    font-family: 'montserratregular';
}
h1,h2{
    font-size: 2.2rem;
    font-family: 'montserratmedium';
}
h3,h4{
    font-size: 2rem;
    font-family: 'montserratmedium';  
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #1a362a;
    border-radius: 5px;
}
::-webkit-scrollbar-track {
    background: #dedede;
}

a:hover {
    text-decoration: none;
}


.home-manu {
	background: #1a362b;
}
.home-banner{
	background: url('../images/merge-bg-1.png');
    background-color: #1a362a;
	background-repeat: no-repeat;
	background-size: cover;
    background-position: bottom;
	padding: 30px 0 100px 0;
}
.home-banner .carousel-caption {
    position: absolute;
    right: auto;
    bottom: auto;
    left: 5%;
    top: 5%;
    text-align: left;
    width: 45%;
}
.home-banner .carousel-caption h2{
	font-size: 3.5rem;
}

.home-banner .carousel-indicators [data-bs-target] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 1;
    background: transparent;
}
.home-banner .carousel-indicators [data-bs-target].indicators-bg-1{
 	background: #000;
}
.home-banner .carousel-indicators [data-bs-target].indicators-bg-2{
	background: #016643;
}
.home-banner .carousel-indicators [data-bs-target].indicators-bg-3{
	background: #a16615;
}
.home-banner .carousel-indicators .active{
	border: 2px solid #ccc;
}
.home-banner .carousel-indicators{
	left: auto;
	margin-right: 5%;
    margin-bottom: 3rem;
}
.navbar-brand img{
	width: 125px;
}

.footer-logo{
  width: 120px;
}

.socila-icons{
      font-size: 26px;
}
.navbar-dark .navbar-nav .nav-link{
	color: #fff;
	font-size: 1.2rem;
	margin-left: 15px;
	position: relative;
}
.navbar-nav .nav-link.menu-btn{
	background: #fff;
	color: #000;
	border-radius: 30px;
	padding-right: 1rem;
    padding-left: 1rem;
    transition: 0.3s;
}
.navbar-nav .nav-link.menu-btn:hover{
	background: #000;
	color: #fff;
}


/*Manu Border Bottom Line Animation CSS*/
.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(6,155,104,1) 0%, rgba(3,132,88,1) 35%, rgba(1,102,67,1) 100%);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}
.navbar-dark .navbar-nav .nav-link:hover::before {
  transform: scaleX(1);
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link:hover::before {
	transform: scaleX(0);
}

/*Line Animation CSS*/
.animatedLine {
	position: fixed;
	top: 0;
	height: 100%;
	width: 1px;
	background: rgba(255,255,255,0.04);
	overflow: hidden;
	z-index: 10;
}
.animatedLine:nth-child(1) {
	left: 33%;
}
.animatedLine:nth-child(1)::after {
	animation-delay: -2s;
}
.animatedLine:nth-child(2) {
	left: 66%;
}
.animatedLine:nth-child(2)::after {
	animation-delay: -1s;
}
.animatedLine::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 75px;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
	animation: animatedLine 5s 0s infinite;
	animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
	animation-fill-mode: forwards;
}

@keyframes animatedLine {
  0% {
      top: -150px;
  }
  60% {
      top: calc(100% + 150px);
  }
  100% {
      top: calc(100% + 150px);
  }
}

/*Loader Line CSS*/
.loader-line {
    width: 250px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    margin: 20px 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background: linear-gradient(90deg, rgba(6,155,104,1) 0%, rgba(3,132,88,1) 35%, rgba(1,102,67,1) 100%);
    -webkit-animation: lineAnim 3s linear infinite;
    -moz-animation: lineAnim 3s linear infinite;
    animation: lineAnim 3s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 20%;
    }
    100% {
        left: 100%;
        width: 80%;
    }
}


/*Button Animation CSS*/
.common-btn{
	display: inline-block;
	padding: 10px 30px;
	text-decoration: none;
	color: #000;
	border: 1px solid #fff;
}
.click-btn {
	background: #fff;
	color: #000;
	border-radius: 30px;
	padding-right: 1rem;
    padding-left: 1rem;
    transition: all 0.50s;
}
.navbar-nav .nav-link.click-btn{
	color: #000;
	padding-right: 1rem;
    padding-left: 1rem;
}
.btn-style1 {
  transition: all 0.8s;
}
.btn-style1:hover {
  box-shadow: inset 5em 0 0 0 #000, inset -5em 0 0 0 #000;
  border-color: #000;
  color: #fff;
  background: #000;
}
.common-btn.btn-style1{
	border-color: #fff;
}

/*Clients section CSS*/
.clients{
	padding: 30px 0 10px 0;
	background: #000;
}
.client-logo a {
    transition: 0.3s;
    display: block;
    border: 1px dashed #212121;
    border-radius: 15px;
    padding: 10px;
}
.client-logo a img{
    opacity: 0.5;
    width: 100%;
}
.client-logo a:hover{
    border: 1px solid #ccc;
}
.client-logo a:hover img{
    opacity: 0.8;
}

/*Service Section CSS*/

.services{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
}
.services .nav-pills{
    border-bottom: 1px solid #515151;
}
.services .nav-pills .nav-link{
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}
.services .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background: transparent;
    color: #fff;
    border-bottom: 2px solid #016643;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.common-list{
    margin: 0;
    padding: 0;
}
.common-list li{
    list-style: none;
    padding-left: 24px;
    margin-bottom: 8px;
    margin-top: 8px;
    position: relative;
}
.common-list li:before{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    font-size: 1rem;
    border-radius: 50%;
    color: #a16615;
    left: 0;
    top: 0px;
}
.common-list li ol li:before{
    content: " ";
}
.common-list li ol li{
    list-style: disc;
    padding-left: 0;
}
.small-text{
    font-size: 0.8rem;
}

.testimonial_section {
  display: block;
  overflow: hidden;
  background: #171717;
}
.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content {
  background-color: #000;
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 62px;
  position: relative;
  border-top-right-radius: 40px;
}
.testimonial_section .about_content .background_layer {
  background-color: #000;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  margin-top: -5px;
  margin-bottom: 6px;
}
.testimonial_section .about_content .layer_content .section_title h2 {
  font-size: 2.2rem;
  font-family: 'montserratmedium';
  padding-bottom: 50px;
  margin-bottom: 0px;
  color: #fff;
}
.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}
.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}
.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #016643;
}
.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}

.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container {
  background-color: #016643;
  margin-left: -170px !important;
  position: relative;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: #016643;
  width: auto;
  margin-right: -200px;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 29px 0px 17px 40px;
  position: relative;
  text-align: center;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 40px 17px 38px 20px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
  border-radius: 15px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: #016643;
  position: absolute;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 45%;
  border-radius: 15px;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 175px;
  right: 55px;
  border-radius: 5px;
  background: #016643;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: #000;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 175px;
  right: 15px;
  border-radius: 5px;
  display: block;
  background: #016643;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: #000;
}
.home-cta{
    background: url(../images/merge-bg-1.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 60px 0 60px 0;
}

/*Reels CSS*/
.reels{
    background: #000;
    padding: 30px 0 60px 0;
}
.reels-box a img{
    border-radius: 30px;
}
.reels-carousel .owl-item:nth-child(even) {
  margin-top: 50px;
}

/*Stats CSS*/
.stats{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 20px 0;
    padding-top: 0;
}
.stats-box{
    background: #fff;
    padding: 50px 60px;
    border-radius: 40px;
}
.stats-content p{
    font-weight: bold;
}
.stats-box .common-btn {
    border: 1px solid #000;
}


/*ScrollSpy CSS*/
.scrollspy{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 80px 0;
}
.img-links::-webkit-scrollbar-thumb{
    background: #016643;
}
.img-links::-webkit-scrollbar {
    width: 5px;
}
.featured-img{
    padding-top: 30px;
}

.mouse_scroll {
  overflow: visible;
  position: relative;
}
.side_sec {
  display: flex;
}
.img-links{
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}
.img-links button {
  text-align: left;
  padding: 10px 20px;
  border-radius: 20px;
  margin: 20px 0px;
  background: transparent;
  border: none;
}
.img-links button.active {
  border: 1px solid #212121;

}

.featured-img {
  position: sticky;
}
.featured-img img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.side-text {
  display: flex;
}
.side-text h3{
  color:orange;
}
.side-text p{
  color:#fff;
}
.theme-color{
    color: #016643;
    font-weight: bold;
    text-transform: uppercase;
}

.bdr-right {
    border-right: 1px solid #fff;
}

/*Industries CSS*/

.industries{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 80px 0;
    padding-bottom: 0;
}


.ind-box i{
    display: block;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.ind-box span{
    display: block;
    color: #fff;
}

.ind-box{
  display: block;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #373737;
  position: relative;
  cursor: pointer;
}
span{
  display: block;
}
.ind-box::before, .ind-box::after{
  content:"";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

span::before, span::after{
  content:"";
  width:2px;
  height:0;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
  border-radius: 10px;
}
.ind-box:hover::before, .ind-box:hover::after{
  width: 100%;
}
.ind-box:hover span::before, .ind-box:hover span::after{
  height: 100%;
}


/*Animation Button Outline*/

.outline-btn {
  position: relative;
  cursor: pointer;
}
.outline-btn span{
  display: block;
}
.outline-btn::before, .outline-btn::after{
  content:"";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

.outline-btn span::before, .outline-btn span::after{
  content:"";
  width:2px;
  height:0;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}
.outline-btn:hover::before, .outline-btn:hover::after{
  width: 100%;
}
.outline-btn:hover span::before, .outline-btn:hover span::after{
  height: 100%;
}


/*----- .ind-box 1 -----*/
.btn-1::before, .btn-1::after{
  transition-delay: 0.4s;
}
.btn-1 span::before, .btn-1 span::after{
  transition-delay: 0s;
}
.btn-1::before{
  right: 0;
  top: 0;
}
.btn-1::after{
  left: 0;
  bottom: 0;
}
.btn-1 span::before{
  left: 0;
  top: 0;
}
.btn-1 span::after{
  right: 0;
  bottom: 0;
}
.btn-1:hover::before, .btn-1:hover::after{
  transition-delay: 0s;
}
.btn-1:hover span::before, .btn-1:hover span::after{
  transition-delay: 0.2s;
}

/*--- Button 2 -------*/


.btn-2::before, .btn-2::after{
  transition-delay: 0s;
}
.btn-2 span::before, .btn-2 span::after{
  transition-delay: 0.2s;
}
.btn-2::before{
  right: 0;
  top: 0;
}
.btn-2::after{
  left: 0;
  bottom: 0;
}
.btn-2 span::before{
  left: 0;
  top: 0;
}
.btn-2 span::after{
  right: 0;
  bottom: 0;
}
.btn-2:hover::before, .btn-2:hover::after{
  transition-delay: 0.2s;
}
.btn-2:hover span::before, .btn-2:hover span::after{
  transition-delay: 0s;
}


/*----- button 3 -----*/
.btn-3::after{
  left: 0;
  bottom: 0;
  transition-delay: 0.6s;
}
.btn-3 span::after{
  transition-delay: 0.4s;
  right: 0;
  bottom: 0
}
.btn-3::before{
  right: 0;
  top: 0;
  transition-delay: 0.2s;
}
.btn-3 span::before{
  transition-delay: 0s;
  left: 0;
  top: 0;
}

.btn-3:hover::after{
  transition-delay: 0s;
}
.btn-3:hover span::after{
  transition-delay: 0.2s;
}
.btn-3:hover::before{
  transition-delay: 0.4s;
}
.btn-3:hover span::before{
  transition-delay: 0.6s;
}

/*----- button 4 -----*/
.btn-4::after{
  right:0;
  bottom: 0;
  transition-duration: 0.4s;
}
.btn-4 span::after{
  right:0;
  bottom: 0;
  transition-duration: 0.4s;
}
.btn-4::before{
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}
.btn-4 span::before{
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}

/*----- button 5 -----*/
.btn-5::after{
  left:0;
  bottom: 0;
  transition-duration: 0.4s;
}
.btn-5 span::after{
  right:0;
  top: 0;
  transition-duration: 0.4s;
}
.btn-5::before{
  right: 0;
  top: 0;
  transition-duration: 0.4s;
}
.btn-5 span::before{
  left: 0;
  bottom: 0;
  transition-duration: 0.4s;
}

/*----- button 6 -----*/
.btn-6::before{
  left: 50%;
  top: 0;
  transition-duration: 0.4s;
}
.btn-6::after{
  left: 50%;
  bottom: 0;
  transition-duration: 0.4s;
}
.btn-6 span::before{
  left: 0;
  top: 50%;
  transition-duration: 0.4s;
}
.btn-6 span::after{
  right: 0;
  top: 50%;
  transition-duration: 0.4s;
}
.btn-6:hover::before, .btn-6:hover::after{
  left: 0;
}
.btn-6:hover span::before, .btn-6:hover span::after{
  top: 0;
}

/*Home FAQ*/
.home-faq{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 80px 0;
    padding-bottom: 0;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid #1a362b;
    border-radius: 10px;
}
.accordion-item .accordion-button.collapsed {
    border-radius: 7px;
    background: #1a362b;
    color: #fff;
}
.accordion-item:last-of-type .accordion-button.collapsed{
    border-radius: 7px;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
    border-radius: 10px;
}
.accordion-item:last-of-type, .accordion-item:first-of-type {
    border-radius: 10px;
}
.accordion-button::after{
    background: url('../images/down-arrow.png');
    background-repeat: no-repeat;
    background-size: 1.25rem;
}
.accordion-button:not(.collapsed)::after {
    background: url('../images/up-arrow.png');
    transform: rotate(0deg);
    background-repeat: no-repeat;
    background-size: 1.25rem;
}
.accordion-button:focus {
    border-color: #fff;
    box-shadow: none;
}
.accordion-item:not(:first-of-type) {
    border-top: 1px solid #1a362b;
}
.accordion-body {
    border-top: 1px solid #ccc;
}

/*resources CSS*/
.resources{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 80px 0;
    padding-bottom: 0;
}
.resource-box img{
    border: 1px solid #ccc;
    border-radius: 15px;
}
.resource-box{
    text-decoration: none;
    color: #fff;
    display: block;
    transition: 0.3s;
}
.resource-box:hover{
    color: #fff;
}
.blog-date {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 0.8rem;
}
.resource-box label{
    margin-top: 10px;
    display: block;
    cursor: pointer;
}
.resource-box:hover label{
    color: #016643;
    font-weight: bold;
}

/*Locations CSS*/
.locations{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 80px 0;
    padding-bottom: 0;
}
.location-logo img {
    width: 340px;
}
.location-box{
    transition: 0.3s;
    opacity: 0.7;
}
.location-box:hover {
 opacity: 1;
 cursor: pointer;
}
.location-box hr{
    background: #ccc;
    border-color: #ccc;
}

footer{
    background: url(../images/merge-bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
   background-color: #1a362b;
   padding: 60px 0;
   color: #fff;
}
footer a{
    text-decoration: none;
}
footer img{
    width: 120px;
}
.line{
    border: 1px solid #fff;
    opacity: 1;
    margin-top: 5px;
}
.small-text{
    font-size: .8rem;
}
footer h4{
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 10px;
}
.footer-list,
.footer-list-1 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li,
.footer-list-1 li {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 7px;
    position: relative;
    /*padding-left: 24px;*/
}

.footer-list-1 li {
    padding-left: 0;
}

.footer-list li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

.footer-list li a:hover {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding-left: 10px;
}

.footer-list li i,
.footer-list-1 li i {
    margin-right: 5px;
}

.form-control{
    font-size: 0.8rem;
}
.home-banner .carousel-caption h3{
    font-size: 2.5rem;
    font-family: 'montserratmedium';
}
.locations h4{
    font-size: 1.3rem;
    text-transform: uppercase;
}

.line{
    width: 200px;
    border-color: #000;
    height: 5px !important;
    opacity: 1;
}

/*about-case*/
.about-case{
    background: #000;
    padding: 60px 0;
}
.text-link{
    color: #016643;
    font-weight: bold;
    text-decoration: none;
}
.case-points h5{
    font-family: 'montserratextrabold';
    font-size: 1.2rem;
    color: #212121;
}

/*meet-challenge*/
.meet-challenge{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0;
    padding-bottom: 0;
}

.our-process{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 0;
}
.our-process-box{
    border-radius: 20px;
    border: 1px solid #016643;
    padding: 20px;
    height: 100%;
}
.our-process-box h5{
    font-family: 'montserratextrabold';
    font-size: 1.2rem;
    border-bottom: 1px dashed #016643;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Features List*/
.features-list{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0;
    padding-bottom: 0;
}
.features-list-box{
    border-radius: 20px;
    border: 1px solid #fff;
    padding: 20px;
    height: 100%;
}
.features-list-box p{
    color: #fff;
}
.features-list-box h5{
    font-family: 'montserratbold';
    font-size: 1.1rem;
    border-bottom: 1px dashed #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #fff;
}


/*remarkable success*/
.remarkable-success{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 0;
}
.ol-list{
    padding-left: 15px;
}
.ol-list li{
    color: #fff;
    margin-bottom: 15px;
}

/*cta-1*/
.cta-1{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0;
    padding-bottom: 0;
}
.cta-box{
    padding: 40px;
    color: #fff;
    background: #016643;
    border-radius: 50px;
}

/*feedback*/
.feedback{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}
.project-challenges{
     background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0;
    padding-bottom: 10px;
}

.results{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}
.technologies-used{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0;
    padding-bottom: 0px;
}
.common-img{
    border-radius: 20px;
}

.home-faq.rb{
    background: url(../images/merge-bg-2.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}

.resources.rb{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0;
    padding-bottom: 0px;
}
footer.rb{
    background: url(../images/merge-bg-3.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}


/*Contact CSS*/
.form-floating .form-control{
    background: transparent;
    color: #fff;
}
.form-floating>label{
    color: #fff;
}
.form-floating>.form-select{
    background: transparent;
    color: #878787;
    font-size: 0.8rem;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    opacity: 1;
    font-size: 1.2rem;
}

.locations.rb{
    background: url(../images/merge-bg-2.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}


.scrollspy.rb{
    background: url(../images/merge-bg-2.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}


/*Random Image Gallery*/
#myImg {
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 20px;
  margin-bottom: 10px;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 6;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
  
/* CUSTOM1 */
* {
  box-sizing: border-box;
}

.row-pg {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
  margin-left: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Create four equal columns that sits next to each other */
.column-pg {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  flex-direction: column;
  column-gap: 25px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
/* Custom */
@media screen and (max-width: 600px) {
  .enap-gallery-img {
    padding-left: 5px;
    padding:right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    }
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column-pg {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    column-gap: 5px;
    flex-direction: column;
  }
  .row-pg {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-pg {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    column-gap: 10px;
    flex-direction: column;
  }
  .row-pg {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*portfolio*/
.portfolio-items{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}
.bdr-r-20{
    border-radius: 20px;
}
.cta-2{
   background-color: #171717;
   padding: 60px 0; 
}
.cta-2 .cta-box{
    background: #000;
}

.industries.rb{
    background: url(../images/merge-bg-1.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}
.our-process.rb{
    background: url(../images/merge-bg-2.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-bottom: 10px;
    margin-top: 0;
}
.clients.rb{
    background: url(../images/merge-bg-1.png);
    background-color: #171717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 60px 0 60px 0;
    padding-bottom: 10px;
}

/*recognitions*/
.recognitions{
    background: #020202;
    padding-bottom: 30px;
}
.recognitions ul{
    margin: 0;
    padding: 0;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
}
.recognitions ul li{
    list-style: none;
    display: inline-block;
    border-right: 1px solid #4e4e4e;
}
.recognitions ul li:last-child{
    border-right: 0px solid transparent;
}
.recognitions ul li img{
    width: 180px;
    transition: transform .2s;
}
.recognitions ul li img:hover{
    transform: scale(1.1);
}

.resource-box h4{
    font-size: 1rem;
    font-family: 'montserratmedium';
    margin-bottom: 5px;
}

/*Media Query Start*/


/*Start Media Query*/
@media screen and (max-width: 1400px) {

}


@media screen and (min-width: 1600px) {
  
}
@media screen and (max-width: 1260px) {
    
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }
  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }
  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }
  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }
  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -15px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }
}

/*For Tablet and iPad Screens*/
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .home-banner .carousel-caption h2 {
        font-size: 2rem;
    }
    .home-banner .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }
    .home-banner .carousel-caption {
        width: 90%;
    }
    .nav.nav-pills.justify-content-between{
        justify-content: flex-start !important;
    }
    .nav.nav-pills .nav-item{
        margin-left: 20px;
        padding-right: 25px;
        margin-bottom: 20px;
        border-right: 1px solid #fff;
    }
    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
        top: 20px;
    }
    .stats-box {
        padding: 30px 30px;
    }
}


/*For Mobile Screens*/
@media only screen and (max-width: 767px) {
     .recognitions ul li img {
        width: 100%;    
    }
     .recognitions ul li{
        border: 1px solid #4e4e4e;
        border-radius: 10px;
        margin: 5px 3px;
        width: 30%;
        display: inline-block;
    }
    .recognitions ul{
        border-top: 0px solid #3a3a3a;
        border-bottom: 0px solid #3a3a3a;
    }
    .desktop-view-only{
        display: none;
    }
    .cta-1 img{
        margin-bottom: 30px;
    }
    .case-study-banner .carousel-fade .carousel-item img {
        object-position: left;
    }
    .stats-content p {
        font-weight: bold;
        font-size: 0.8rem;
    }
    .theme-color {
        font-size: 0.8rem;
    }
    .side-text p{
        font-size: 0.8rem;
    }
    .ind-box i {
        font-size: 1.2rem;
    }
    .accordion-item .accordion-button.collapsed {
        font-size: 0.9rem;
    }
    .accordion-item .accordion-button {
        font-size: 0.9rem;
    }
    .accordion-body {
        font-size: 0.8rem;
    }
    .img-links button {
        border-bottom: 1px solid #fff;
    }
    .form-control{
        font-size: 0.8rem;
    }
    .common-btn{
        padding: 7px 16px;
    }
    .navbar.navbar-expand-lg.navbar-dark{
        padding-top: 1rem !important;
    }
    .locations h4{
        font-size: 1.2rem;
        text-transform: uppercase;
    }
    .services .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        background: #016643;
        border-bottom: 0px solid #016643;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 8px 10px;
        display: block;
    }
    .services .nav-pills .nav-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    .nav.nav-pills .nav-item {
        border: 1px solid transparent;
        margin-right: 10px;
        margin-bottom: 15px;
        border-radius: 5px;
    }
    .services img{
        margin-bottom: 30px;
    }
    .stats{
        padding: 40px 0;
    }
    .reels {
        padding-bottom: 20px;
    }
    .testimonial_section .about_content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .services {
        padding: 60px 0 30px 0;
    }
    .home-banner {
        padding: 30px 0 40px 0;
    }
    .testimonial_section .about_content .layer_content .section_title h2{
        font-size: 2rem;
    }
    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content{
        padding: 45px 15px 30px 15px;
    }
    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials{
        padding: 62px 0px 50px 50px;
    }
    .resources{
        padding: 40px 0;
    }
    .home-faq {
        padding: 40px 0;
        padding-bottom: 0;
    }
    .industries {
        padding: 40px 0;
    }
    .ind-box {
        padding: 10px;
        font-size: .9rem;
    }
    .locations {
        text-align: center;
        padding: 40px 0;
    }
    .owl-dots{
        display: none;
    }
    .client-logo a{
        padding: 0;
        border-radius: 10px;
    }
    .reels-carousel .owl-item:nth-child(even) {
        margin-top: 0;
    }
    .home-banner .carousel-caption h3 {
        font-size: 1.7rem;
        font-family: 'montserratmedium';
    }
    h1, h2 {
        font-size: 1.7rem;
        font-family: 'montserratmedium';
    }
    .stats-box {
        background: #fff;
        padding: 30px 30px;
        border-radius: 40px;
    }
    
    .home-banner .carousel-caption p{
        font-size: 0.8rem;
    }
    .home-banner .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }
    .navbar-brand img {
        width: 115px;
    }
    .client-logo a {
        border: 1px solid #696969;
    }
    .nav.nav-pills.justify-content-between{
        justify-content: flex-start !important;
    }
    .side-text{
        display: block;
    }
    .img-links {
        height: 350px;
    }
    .col-md-6.pe-5{
        padding-right: 1rem!important;
    }
    .contact-num a{
        display: block;
        margin-top: 10px;
    }
    .col-md-6.text-end{
        text-align: left !important;
        margin-top: 20px;
    }
    .contact-num i{
        display: none;
    }
    .carousel-fade .carousel-item{
        height: 400px;
        overflow: hidden;
    }
    .carousel-fade .carousel-item img {
        height: 400px;
        object-fit: cover;
        border-radius: 30px;
    }
    .home-banner .carousel-caption h2 {
        font-size: 2rem;
    }
    .home-banner .carousel-caption{
        width: 90%;
    }
    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
        z-index: 1;
        top: 0px;
    }
}


