﻿:root {
  --main-color: #B70303;
  --blue-color: #003069;
  --gry-color: #F9F8FB;
  --white-color:#fff;
  --black-color:#000;
  --semi-black: #1E1E1E;
  --main-font: 'Roboto', sans-serif;
}
html, body{
  font-family: var(--main-font);
}
a{
  text-decoration: none;
}
.container-fluid{
  /* padding: 0 0 0 4%; */
}
@media (min-width:1450px){
  .container{
      max-width: 1500px;
  }
}
h1, h2, h3, h5, h6{
  font-family: var(--main-font);
}
p{
  font-family: var(--main-font);
}
/* Header */
.main_menu_hdr{
  /* background: none;
  z-index: 99;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0; */
  /* padding: 10px 0px; */
  background: var(--white-color);
}
.left_top{
  display: flex;
  justify-content: flex-start;
}
.main_menu {
  display: block;
  position: relative;
  background: none;
  padding: 0px;
  border-radius: 0;
}
.main_menu .navigation.navbar{
  padding: 0;
}
.container-menu {
  width:80%;
  margin:0 auto;
}
.logo{
  display: block;
  padding: 0 15px;
}
.logo a{
  position: relative;
  z-index: 1;
  width: 225px;
  display: block;
}
.logo a img{
  width: 100%;
}
.tm h4{
   font-weight: 400;
   font-size: 14px;
   line-height: 16px;
   color: var(--white-color);
   margin-bottom: 0;
}
.tm h4 a{
  color: var(--white-color);
}
.tm span{
 color: var(--main-color);
 padding-right: 10px;
}
.tm{
  padding: 0px 20px;
}
.bdr_1{
  border-right: 0.5px solid #FFFFFF;
  padding: 0px 20px;
}
.right_top{
  background: var(--blue-color);
  padding: 10px 0px;
  position: relative;
}
.right_top::before{
  /* position: absolute;
  top: 0px;
  right: 0px;
  content: "";
  background: var(--blue-color);
  z-index: 99;
  width: 100%;
  height: 100%; */
}
.call_1{
  padding: 5px 0px;
}
.cl-img{
  padding-right: 10px;
}
.call_1 .cl-text h3{
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--black-color);
}
.call_1 .cl-text h4 a{
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 0;
  color: var(--black-color);
}
/* Banner */
.banner_sec{
  width: 100%;
  background-size: cover;
  position: relative;
}
.slide .slide__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgb(0 0 0 / 30%); */
}
.sqr{
   position: absolute; 
   top: -50%;
   left: -10%;
   z-index: -1;
}
.sqr{
  width: 100px;
  height: 100px;
  position: relative;
  animation-name: box1;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-fill-mode: alternate;
  animation-delay: 1s;
  animation-timing-function: linear;
}
@keyframes box1{
  0%{
    top: 0px;
    left: 0px;
  }
  25%{
    top: 50px;
    left: 0px; 
  }
  75%{
    top: 50px;
    left: 50px;
  }
  100%{
    top: 0px;
    left: 0px;
  }
}
/*  */
.multi-line-two {
  left: 80%;
}
.animation-block2 {
  animation-duration: 80s;
  animation-iteration-count: infinite;
  background: var(--main-color);
  height: 10px;
  width: 10px;
  margin: 0px 0px 0px -5px;
  transform-origin: bottom;
}
.bounce-2{
	animation-name: bounce-2;
	animation-timing-function: linear;
}


@keyframes bounce-2 {
	100%   { transform: translateY(0); }
	50%  { transform: translateY(100vh); }
	0% { transform: translateY(0); }
}

.bounce-1 {
	animation-name: bounce-1;
	animation-timing-function: linear;
}


@keyframes bounce-1 {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(100vh); }
	100% { transform: translateY(0); }
}




/*   */

@media (min-width: 992px) {
  .slider, .slide {
    height: 85vh;
  }
}
.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width:40%;
}
.slide .slide__content.slide__content__left {
  left: 20%;
  transform: translate(-20%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  animation:fadeInLeft 0.5s both 1.5s;
  letter-spacing: 2px;
}
.slide .slide__content--headings h5 {
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  animation:fadeInLeft 1s both 1.5s;
}
.slide .slide__content--headings .title {
  font-size: 70px;
  font-weight: 700;
  color: var(--white-color);
}
.slide .slide__content--headings .title span{
  
}

.slidebottomleft{
  animation:fadeInUp 1.5s both 1.5s;
}
.slick-dotted .slick-slider {
margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  top: 50%;
  right: 34px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  transform: translate(0px, -50%);
}
.slick-dots li {
position: relative;
display: inline-block;
margin: 0px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
border: 0;
display: block;
outline: none;
line-height: 0px;
font-size: 0px;
color: transparent;
padding: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
outline: none;
}

.simple-dots .slick-dots li {
width: 20px;
height: 20px;
}
.simple-dots .slick-dots li button {
border-radius: 50%;
background-color: white;
opacity: 0.25;
width: 20px;
height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
color: white;
opacity: 0.75;
}

.stick-dots .slick-dots li {
height: 3px;
width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 1;
  width: 35px;
  height: 3px;
  padding: 0;
  border-radius: 30px;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
color: var(--main-color);
opacity: 1;
width: 50px;
background: var(--main-color);
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
opacity: 1;
}


.slider .slide.slick-active{
  animation:Slick-FastSwipeIn 1s both;
}

/* ==== Slider Image Transition === */
@keyframes Slick-FastSwipeIn{
    0%{transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);} 
    100%{transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);} 
}

@-webkit-keyframes ProgressDots{from{width:0px;}to{width:100%;}}
@keyframes ProgressDots{from{width:0px;}to{width:100%;}}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
from {
  transform: scale3d(1, 1, 1);
  transition: 1s;
}
to {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: 1s;
}
}
@keyframes zoomInImage {
from {
  transform: scale3d(1, 1, 1);
  transition: 1s;
}
to {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: 1s;
}
}
.zoomInImage {
-webkit-animation-name: zoomInImage;
animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
from {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: 1s;
}
to {
  transform: scale3d(1, 1, 1);
  transition: 1s;
}
}
@keyframes zoomOutImage {
from {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: 1s;
}
to {
  transform: scale3d(1, 1, 1);
  transition: 1s;
}
}
.zoomOutImage {
-webkit-animation-name: zoomOutImage;
animation-name: zoomOutImage;
transition: 1s;
}
.slick-nav {
color: var(--white-color);
/* --border: rgba(255, 255, 255, .12); */
width: 44px;
height: 44px;
position: absolute;
cursor: pointer;
top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
left: 3%;
transform: scaleX(-1);
z-index: 1;
}
.slick-nav.next-arrow {
  left: 3%;
  top: 52%;
}
.slick-nav i {
display: block;
position: absolute;
margin: -10px 0 0 -10px;
width: 20px;
height: 20px;
left: 50%;
top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
content: "";
width: 10px;
height: 2px;
border-radius: 1px;
position: absolute;
left: 50%;
top: 50%;
background: var(--white-color);
margin: -1px 0 0 -5px;
display: block;
transform-origin: 9px 50%;
color: var(--white-color);
}
.slick-nav i:before {
transform: rotate(-40deg);
color: var(--white-color);
}
.slick-nav i:after {
transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
content: "";
display: block;
position: absolute;
left: 1px;
right: 1px;
top: 1px;
bottom: 1px;
border-radius: 50%;
border: 2px solid var(--white-color);
}
.slick-nav svg {
width: 44px;
height: 44px;
display: block;
position: relative;
z-index: 1;
color: var(--white-color);
stroke-width: 2px;
stroke-dashoffset: 126;
stroke-dasharray: 126 126 0;
transform: rotate(0deg);
}
.slick-nav.animate svg {
-webkit-animation: stroke 1s ease forwards 0.3s;
animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
-webkit-animation: arrow 1.6s ease forwards;
      animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
-webkit-animation: arrowUp 1.6s ease forwards;
      animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
-webkit-animation: arrowDown 1.6s ease forwards;
animation: arrowDown 1.6s ease forwards;
}
@-webkit-keyframes stroke {
52% {
  transform: rotate(-180deg);
  stroke-dashoffset: 0;
}
52.1% {
  transform: rotate(-360deg);
  stroke-dashoffset: 0;
}
100% {
  transform: rotate(-180deg);
  stroke-dashoffset: 126;
}
}
@keyframes stroke {
52% {
transform: rotate(-180deg);
stroke-dashoffset: 0;
}
52.1% {
transform: rotate(-360deg);
stroke-dashoffset: 0;
}
100% {
transform: rotate(-180deg);
stroke-dashoffset: 126;
}
}
@-webkit-keyframes arrow {
0%, 100% {
transform: translateX(0);
opacity: 1;
}
23% {
transform: translateX(17px);
opacity: 1;
}
24%, 80% {
transform: translateX(-22px);
opacity: 0;
}
81% {
opacity: 1;
transform: translateX(-22px);
}
}
@keyframes arrow {
0%, 100% {
transform: translateX(0);
opacity: 1;
}
23% {
transform: translateX(17px);
opacity: 1;
}
24%, 80% {
transform: translateX(-22px);
opacity: 0;
}
81% {
opacity: 1;
transform: translateX(-22px);
}
}
@-webkit-keyframes arrowUp {
0%, 100% {
transform: rotate(-40deg) scaleX(1);
}
20%, 80% {
transform: rotate(0deg) scaleX(0.1);
}
}
@keyframes arrowUp {
0%, 100% {
transform: rotate(-40deg) scaleX(1);
}
20%, 80% {
transform: rotate(0deg) scaleX(0.1);
}
}
@-webkit-keyframes arrowDown {
0%, 100% {
transform: rotate(40deg) scaleX(1);
}
20%, 80% {
transform: rotate(0deg) scaleX(0.1);
}
}
@keyframes arrowDown {
0%, 100% {
transform: rotate(40deg) scaleX(1);
}
20%, 80% {
transform: rotate(0deg) scaleX(0.1);
}
}
/*-------- button Effect-------*/
.red_btn {
display: inline-block;
box-sizing: border-box;
padding: 15px 40px;
position: relative;
color: var(--main-color);
border: 2px solid var(--main-color);
text-transform: uppercase;
text-decoration: none;
}
.red_btn:hover{
 background: var(--main-color);
 transition: ease all 0.5s;
}
.red_btn:hover span{
  color: var(--white-color);
}
.red_btn span {
font-weight: 600;
position: relative;
font-size: 14px;
letter-spacing: 2px;
color: var(--black-color);
padding-right: 5px;
}
.red_btn:before {
content: "";
height: 0;
width: 100%;
transform: translateX(0%);
position: absolute;
bottom: 0;
left: 0;
background: var(--white-color);
color: var(--black-color);
transition: all ease-in 0.3s;
}
.red_btn:hover i{
  color: var(--white-color);
}
.red_btn_1{
  position: relative;
}
.red_btn_2{
  background: var(--main-color);
  color: var(--white-color);
}
.red_btn_2 span{
  color: var(--white-color);
}
.red_btn_2{
  background: var(--main-color);
  color: var(--white-color);
}
.red_btn_2:hover span{
  color: var(--main-color);
}
.red_btn_2:hover i{
  color: var(--main-color);
}
.red_btn_2:hover{
  background: var(--white-color);
  color: var(--main-color);
  transition: ease all 0.5s;
}
/*  */
.btn-bdr{
  position: relative;
}
.btn-bdr::before{
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  left: auto;
  width: 30px;
  height: 30px;
  background: none;
  z-index: 99;
  border-right: 2px solid #b70303;
  border-top: 2px solid #b70303;
}
.btn-bdr::after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: none;
  z-index: 99;
  border-left: 2px solid #b70303;
  border-bottom: 2px solid #b70303;
}
a.red_btn:hover.btn-bdr::after{
 width: 100%;
 height: 100%;
 transition: all ease-in 0.5s;
}
a.red_btn:hover.btn-bdr::before{
  width: 100%;
  height: 100%;
  transition: all ease-in 0.5s;
 }
.red_btn_1{
  /* position: absolute;
  content: "";
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  width: 5%;
  height: 5%; */
}
/* .red_btn:hover:before{
bottom: 0;
transition: all ease-in 0.3s;
height: 100%;
color: var(--black-color);
}
.red_btn.white_bg{
color: var(--black-color);
background: var(--white-color);
}
.red_btn.white_bg:before {
background: rgb(255 255 255 / 50%);
}
.red_btn.white_bg span{
color: var(--black-color);
}
.red_btn.black_bg{
color: var(--white-color);
background: var(--black-color);
}
.red_btn.black_bg:before {
background: rgb(0 0 0 / 50%);
}
.red_btn.black_bg span{
color: var(--white-color);
}
.red_btn_2:hover::before{
  background: var(--main-color);
}
.red_btn_2:hover span{
  color: var(--white-color);
} */
/* Service */
.sevice-sec{
  background: var(--blue-color);
}
.eft:hover{
  background: var(--main-color);
  transition: ease all 0.5s;
}
.srv-icon{
  padding-bottom: 20px;
}
.srv-text h3{
  color: var(--white-color);
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.srv-text p{
  color: var(--white-color);
  font-size: 14px;
  line-height: 18px;
}
.srv-box{
  padding: 50px 20px;
}
.bdr{
  border-right: solid 1px rgb(255 255 255 / 50%);
  position: relative;
}
.srl{
  max-height: 280px;
  overflow: hidden;
  overflow-y: auto;  
  padding-right: 10px;
}
#srl_1::-webkit-scrollbar
{
  width: 5px;
  border-radius: 10px;
  background-color: #ccc;
}

#srl_1::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--main-color);
}
.bdr:before{
  position: absolute;
  content: "";
  bottom: 0;
  right: -2px;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.srv-box-wrap{
  margin-bottom: 50px;
}
.srv-box{

}

/* .serv-sec{
  background: var(--gry-color);
  padding: 0px 0px 100px;
  padding: 0px 0px 100px;
  margin-top: -5%;
}
.ser-img{
  position: relative;
}
.ser-img img{
  width: 100%;
  min-height: 445px;
  object-fit: contain;
}
.serv-text-wrap{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 0px 10px 20px;
  width: 100%;
}
.ser-text h3{
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 0;
}
.ser-text h3 span{
  display: block;
  font-weight: 300;
  font-size: 14px;
  color: var(--white-color);
}
.serv-sec-box-2{
  background: var(--blue-color);
  padding: 56px 30px;
}
.serv-sec-box-2 h4{
  font-weight: 300;
  font-size: 28px;  
  margin-bottom: 0;
  color: var(--white-color);
  padding-bottom: 10px
}
.serv-sec-box-2 h4 span{
  font-weight: 500;
  font-size: 36px; 
  display: block;
}
.serv-sec-box-2 h3{
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 0;
  color: var(--white-color);
  padding-bottom: 10px;
}
.serv-sec-box-2 h3 span{
  font-weight: 300;
  font-size: 28px; 
  display: block;
}
.serv-sec-box-2 p{
  color: var(--white-color);
  font-weight: 300;
  font-size: 14px;
}
.serv-sec-box:hover .serv-text-wrap{
  background: var(--white-color);
  width: 100%;
  transition: ease all 0.5s;
}
.serv-sec-box:hover .ser-text h3{
  color: var(--black-color);
  transition: ease all 0.5s;
}
.serv-sec-box:hover .ser-text h3 span{ 
  color: var(--black-color);
  transition: ease all 0.5s;
}
.serv-icon{
  display: none;
}
.serv-icon span{
  background: var(--main-color);
  color: var(--white-color);
  padding: 20px 15px; 
}
.serv-sec-box:hover .serv-icon{
  transition: ease all 0.5s;
  display: block;
}
.serv-sec-wrap{
  position: relative;
}
.ser-img{
  position: relative;
}
.serv-sec-box:hover .ser-img::before{
  position: absolute;
  content: "";
  background: rgb(2 3 8 / 50%);
  width: 100%;
  height: 100%;
  z-index: 0;
} */


/* Improve */
.improve-sec{
  background: var(--main-color);
  padding: 50px 0px;
}
.hd-4 h2{
    color: var(--white-color);
    padding: 15px 0px;
    font-size: 36px;
}
.imp-img{
   padding-bottom: 10px;   
}
.imp-img img{
  width: 100%;
}
.imp-sec{
  padding-top: 30px;
}
.imp-text{
  /*padding-top: 30px;*/
}
.imp-text h3{
 color: var(--white-color);
 font-weight: 400;
 font-size: 28px;
 margin-bottom: 0;
 padding-bottom: 20px;
}
.imp-text p{
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
 }
 /* Sup */
 .sup-1{
  padding: 50px 0px;
 }
.sup-1-img img{
  width: 100%;
}
.sup-1-img {
  position: relative;
}
.sup-1-img::before {
  position: absolute;
  content: "";
  background: rgb(0 0 0 / 50%);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.sup-1-text{
  position: absolute;
  top: 10%;
  left: 0%;
  z-index: 10;
  padding: 0px 50px;
}
/* wht-we-do */
.wht-we-do{
 padding-top: 50px;
}
.proj-img-warp .slick-slide.slick-current.slick-active {
  margin-top: -30px;
}
.proj-img-warp .slick-list{
  /* overflow: inherit; */
}
/* .wht-we-text .hd-1.org::after{
  width: 10%;
} */
/* About Sec */
.abt-sec{
  padding: 100px 0px;
}

.abt-img-1 img{
  width: 100%;
  height: 100%;
}
.abt-img-1{
    padding-right: 50px;
    width: 100%;
    height: 500px;
}
.abt-img{
  position: relative;
}
.abt-img-2{
  position: absolute;
  top: 15%;
  right: 0%;
}
.ex-box{
  position: absolute;
  bottom: 10%;
  left: -5%;
}
.ex-head{
  padding: 15px;
  background: var(--blue-color);
  width: 150px;
  height: 140px;
  text-align: left;
  position: relative;
}
.ex-head::before{
  position: absolute;
  content: "";
  top: -34%;
  left: 14%;
  width: 100px;
  height: 100px;
  background: #002858;
  z-index: -1;
  transform: rotate(137deg);
}
.ex-head h4{
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: var(--white-color);
}
.ex-head h4 span{
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  display: block;
}
.hd-1.org{
  position: relative;
}
.abt-un h2::after{
    
}
.abt-para p{
  font-size: 18px!important;
  line-height: 28px!important;  
}
/* .hd-1.org::before{
  position: absolute;
  content: "";
  height: 20%;
  width: 23%;
  top: -22%;
  left: 1px;
  z-index: 0;
  border-top: 8px solid var(--main-color);
  border-right: 8px solid var(--main-color);
  border-left: 8px solid var(--main-color);
  border-bottom: none;
} */
.hd-1.org h2::after{
  position: absolute;
  content: "";
  height: 20%;
  width: 23%;
  bottom: 0%;
  left: 1px;
  z-index: 0;
  border-bottom: 8px solid var(--blue-color);
}
.abt-un h2::after {
    width: 63%!important;
}
.hd-1.org h2 span{
  color: var(--main-color);
}
.hd-1.org h2{
  color: var(--semi-black);
  background: var(--white-color);
  padding: 15px 0px;
  position: relative;
}
.hd-1 h2 span{
  font-weight: 400;
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.hd-1 h2 {
  font-weight: 600;
  font-size: 36px;
}
.para p{
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--semi-black);
}
.most-r{
  padding: 20px 0px;
}
.most-1{
  padding-bottom: 20px;
  animation: fadeInLeft 1s both 1.5s;
}
.most-icon{
  padding: 16px;
  background: var(--main-color);
  border-radius: 50%;
  /* width: 100px;
  height: 80px; */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 2px 10px #D9D9D9;
  margin-right: 15px;
}
.most-1-t h3{
  font-weight: 600;
  font-size: 14px;
  color: var(--black-color);
  text-transform: uppercase;
}
.most-1-t p{
  font-weight: 300;
  font-size: 14px;
  color: var(--semi-black);
}
/* abt-comp */
.abt-comp {
  background: var(--main-color);
  padding: 100px 0px;
}
.abt-comp-text {
  padding-bottom: 50px;
}
.msn-tab .nav-tabs {
  border-bottom: none;
}
.msn-tab .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--white-color);
  background: var(--blue-color)!important;
}
.msn-tab .nav-link {
  border: 1px solid #fff!important;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--text-font);
  letter-spacing: 2px;
  text-decoration: none;
  padding: 15px 40px;
  font-size: 14px;
  background: transparent!important;
  border-radius: 0px !important;
  margin-right: 20px;
}
.tab-pane {
  padding-top: 50px;
}
.tab-pane p {
  color: #fff;
}
.abt-comp-img img {
  width: 100%;
}
/* Best Serv Sec */
.best-serv{
  background: url(../../static/image/bst-ser-bg.png), #004394;
  padding: 100px 0px 0px;
}

.hd-1.org.wht::before {
  border-top: 8px solid var(--white-color);
  border-right: 8px solid var(--white-color);
  border-left: 8px solid var(--white-color);
  border-bottom: none;
}
.hd-1.org.wht::after {
  border-bottom: 8px solid var(--white-color);
}
.hd-1.org.wht h2{
  background: transparent;
  color: var(--white-color);
}
.hd-1.org.wht h2 span{
  color: var(--white-color);
}
.para.wht p{
  color: var(--white-color);
}
.best-serv-sl{
  background: var(--white-color);
  padding: 30px;
}
.best-serv-sl-2{
  padding: 0px 30px 30px 30px;
}
.best-serv-sl-text{
  padding: 20px 0px;
}
.hd-2 h3{
  color: var(--black-color);
  font-weight: 600;
  font-size: 28px;
}
.ser-list ul{
  padding: 0;
}
.ser-list ul li{
  list-style: none;
}
.ser-list ul li a span{
  color: var(--main-color);
  margin-right: 10px;
  font-size: 20px;
}
.ser-list ul li a{
  font-weight: 400;
  font-size: 16px;
  color: var(--black-color);
}
.ser-list ul li{
  margin-bottom: 20px;
}
.serv-img_2 img{
  width: 100%;
}
.service-div{
  padding-bottom: 50px;
}
.best-serv-sl{
  position: relative;
  min-height: 630px;
}
.best-serv-slider-wrap:hover{
  transition: ease all 0.5s;
}
.best-serv-slider-wrap:hover .best-serv-sl::before{
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 5px;
    height: 60%;
    top: 20%;
    left: -5px;
}
.service-sec{
  padding: 100px 0px;
}
/* proj-sec */
.proj-sec{
  padding: 100px 0px 0px;
}
.hd-1.org.cen h2::before{
  left: 40%;
  top: -45%;
  height: 40%;
}
.hd-1.org.cen h2::after{
  left: 40%;
}
.hd-1.org.cen{
  text-align: center;
}
.proj-img img{ 
  width: 100%;
  object-fit: cover;
  height: 450px;
  margin: 0 auto;
}
.container.container_1 {
  max-width: 1920px;
  margin: 0;
}
/* .proj-img{
  padding-top: 50px;
} */
.hd-3 h3{
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}
.proj-text{
  padding: 30px;
  background: var(--blue-color);
  padding: 80px 40px 40px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.proj-wrap{
  position: relative;
  padding-top: 30px;
}
.proj-text{
  opacity: 0;
  visibility: hidden;
  transition: ease all 0.5s;
}
.proj-wrap:hover {
  transition: ease all 0.5s;
  margin-top: -30px;
}
.proj-wrap:hover .proj-text{
  visibility: visible;
  opacity: 1;
}
.fdup{
  animation:fadeInUp 0.5s both 0.5s;
}
.test-img{
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
/* our-service */
.our-service{
  background: var(--blue-color);
}
.our-service .imp-img-box{
  padding-bottom: 30px;
}
/* Progress */
.data_percentage{
  text-align: center;
  position: relative;
}
.circle_percent {
  font-size: 120px;
  width: 1em;
  height: 1em;
  position: relative;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}
.circle_inner {position: absolute; left: 0; top: 0; width: 1em; height: 1em; clip:rect(0 1em 1em .5em);}
.round_per {position: absolute; left: 0; top: 0; width: 1em; height: 1em; background: var(--main-color); clip:rect(0 1em 1em .5em); transform:rotate(180deg); transition:1.05s;}
.percent_more .circle_inner {clip:rect(0 .5em 1em 0em);}
.percent_more:after {position: absolute; left: .5em; top:0em; right: 0; bottom: 0; background: var(--main-color); content:'';}
.circle_inbox {position: absolute; top: 7px; left: 7px; right: 7px; bottom: 7px; background: #F9F8FB; z-index:3; border-radius: 50%;}
.percent_text {position: absolute; font-size: 48px; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3;font-weight:800;}
.solution_box{
  background: var(--white-color);
  box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}

.progress_1{
  padding: 100px 0px;
  background: #F9F8FB;
}
.prs-text{
  text-align: center;
  padding-top: 20px;
}
.prs-text h4{
  font-weight: 600;
  font-size: 14px;
  color: var(--black-color);
  text-transform: uppercase;
}
.prs-text p{
  font-weight: 300;
  font-size: 14px;
  color: var(--semi-black);
}

/* we-work */
.we-work{
  background: url(../../static/image/wrk-bg.jpg);
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  padding: 100px 0px;
}
.we-work::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 48 105 / 50%);
}
.we-work-wrap{
  position: relative;
  padding: 30px 0px 0px;
}
.we-work-bx{
  padding: 50px 30px;
  background: rgb(255 255 255 / 30%);
  margin-bottom: 20px;
  min-height: 305px;
}
/* testimonial_1 */
.testimonial_1{
  padding: 100px 0px;
}
.test-slide{
  padding-top: 30px;
  text-align: center;
}
.test-img{
  position: relative;
  margin-bottom: 20px;
}
.test-head h4{
  font-weight: 500;
  font-size: 24px;
  color: var(--semi-black);
}
.test-head h4 span{
  font-weight: 400;
  font-size: 14px;
  color: var(--main-color);
  display: block;
  padding: 10px 0px;
}
.quote {
  position: absolute;
  right: 0%;
  top: 0%;
}
.quote span {
  background: var(--blue-color);
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote span i {
  color: var(--white-color);
}
.test-slide .slick-dots li button {
  background: #D9D9D9;
  border-radius: 50%;
}
.test-slide .slick-dots {
  position: absolute!important;
  top: 100%!important;
  left: 0%!important;
  transform: inherit;
}
.test-slide .slick-dots li {
 margin: 0px 3px;
}
.test-slide .slick-active button{
  background: var(--main-color)!important;
}
/* work_1 */
.work_1{
  margin-top: -5%;
}
.work_1-img-wrap{
  position: relative;
}
.work_1-text{
    padding: 20px;
    background: var(--white-color);
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 265px;
    height: 180px;
}
.work_1-p{
  font-weight: 400;
  font-size: 18px;
  color: var(--semi-black);
}
.work_1-icon{
  padding-bottom: 20px;
}
.work_1-img img{
  width: 100%;
}
.work_2-text{
  background: var(--main-color);
}
.work_2-text .work_1-p p{
  color: var(--white-color);
}
.abt-we-work{
  padding: 100px 0px 200px;
}
.abt-we-work::before{
  background: rgb(0 48 105 / 90%);
}
/* team-sec */
.team-sec{
  padding: 150px 0px 50px;
}
.hd-1 p{
  font-weight: 300;
  font-size: 14px;
  color: var(--semi-black);
}
.team-div{
  text-align: center;
}
.team-text{
  text-align: center;
  padding: 20px 0px;
}
.team-text h4{
  font-weight: 500;
  font-size: 20px;
  color: var(--black-color);
}
.team-text h4 span{
  font-weight: 300;
  font-size: 20px;
  color: var(--black-color);
  display: block;
}
.team-img-sec{
  padding: 100px 0px 0px;
}
/* feature */

/* Accordian */
.feature .accordion .accordion-button {
   font-weight: 500;
    font-size: 20px;
    color: var(--semi-black);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 5px 20px;
}
.feature .accordion .accordion-button::after {
  content: "\2B";
  background-image: none;
  font-size: 28px;
  height: auto;
  width: auto;
  color: var(--text-color);
  font-weight: 400;
}
.feature .accordion .accordion-item{
  background: transparent;
  border: none;
}
.feature .accordion .accordion-body{
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--semi-black);
  padding: 0 20px;
}
.feature .accordion{
  padding-bottom: 100px; 
}
.fet-img img{ 
  width: 100%;
}
/*  */
.awrd-img-1{
  display: inline-block;
  padding-right: 30px;
}

/* Footer */
.ftr-top{
  background: var(--semi-black);
  padding: 50px;
}
.ftr-logo{
  padding-bottom: 20px;
}
.ftr-logo img {
    width: 250px;
}
.read-btn{
  color: var(--main-color);
  font-weight: 600;
  font-size: 10px;
  line-height: 23px;
  text-decoration: none;
  letter-spacing: 2px;
}
.read-btn:hover{
  color: var(--main-color);
}
.social-icon{
  margin-top: 30px;
}
.social-icon ul{
  padding: 0;
}
.social-icon ul li{
  display: inline-block;
  margin-right: 15px;
}
.social-icon ul li span{
  background: rgb(254 75 4 / 20%);
  width: 35px;
  height: 35px;
  display: flex;
  color: var(--main-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all ease-in 0.3s;
}
.social-icon ul li a{
  text-decoration: none;
}
.find-us h4{
  font-weight: 400;
  font-size: 24px;
  color: var(--white-color);
  margin-bottom: 20px;
}
.add-icon span {
  color: var(--main-color);
}
.add-text h4{
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 18px; 
  color: var(--white-color);
  margin-bottom: 5px;
}
.add-text p, .add-text a{
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--white-color);
  text-decoration: none;
  font-family: var(--text-font);
}
.add-icon{
  padding-right: 20px;
}
.add{
  padding-bottom: 20px;
}
.ftr-frm form .form-group .form-control{
  background: rgb(255 255 255 / 10%);
  border-radius: 0;
  border: none;
  margin-bottom: 15px;
  color: rgb(255 255 255 / 50%);
}
.ftr-frm .form-group .form-control::-webkit-input-placeholder { /* Edge */
  font-weight: 400;
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--text-font);
  color: rgb(255 255 255 / 50%);
}
.ftr-frm .form-group .form-control:-ms-input-placeholder { /* Internet Explorer */
  font-weight: 400;
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--text-font);
  color: rgb(255 255 255 / 50%);
}
.ftr-frm .form-group .form-control::placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--text-font);
  color: rgb(255 255 255 / 50%);
}
.indus-head p{
  color: rgb(255 255 255 / 20%);
}
/* ftr-btm */
.ftr-btm{
  background: var(--blue-color);
  padding: 0px 0 0px;
}
.ftr-link{
  text-align: center;
  padding: 20px 0px;
}
.ftr-link ul{
  padding: 0 0px 20px;
  margin: 0;
}
.ftr-link ul li{
  display: inline-block;
  padding: 0px 20px;
}
.ftr-link ul li a{
  text-decoration: none;
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  font-family: var(--text-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ftr-link p{
  color: rgb(255 255 255 / 50%);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.ftr-link p a {
  text-decoration: none;
  color: rgb(255 255 255 / 50%);
}
.scroll_btm_btn {
  position: relative;
}
/* .scroll_text {
  position: fixed;
  right: 12px;
  bottom: 120px;
  z-index: 99;
  transform: rotate(270deg);
  cursor: pointer;
  z-index: 99;
  &:hover {
    background-color: var(--main-color);
  }
} */
.scroll_text {
  position: absolute;
  right: 12px;
  bottom: 120px;
  z-index: 99;
  transform: rotate(270deg);
  cursor: pointer;
}
.scroll_text h3 {
  position: relative;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400px;
  letter-spacing: 5px;
}
.scroll_text h3:before {
  content: '';
  position: absolute;
  top: -42px;
  right: -60px;
  height: 100px;
  width: 2px;
  background: var(--main-color);
  transition: all ease-in 0.3s;
  background-size: cover;
  transform: rotate(270deg);
}
/* Inner page */
.inr-bnr-img img{
  width: 100%;
}
.inr-bnr{
  position: relative;
}
.inr-bnr-text{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.inr-bnr-text h1{
  font-weight: 800;
  font-size: 80px;
  color: var(--main-color);
}
.inr-bnr-text p{
  font-weight: 400;
  font-size: 18px;
  color: var(--black-color);
}
.inr-bd{
  position: absolute;
  top: 50%;
  left: -5%;
  z-index: 10;
  transform: translate(0%, -50%);
  width: 50%;
  margin: 0 auto; 
}
/* service-page */

/* Project page */

/* Contact Page */
.inner_contact_sec {
  padding: 50px 0;
}
.font_size_line_height {
  width: 100%;
  padding: 51px;
  background: #fff;
  box-shadow: 0 0 40px rgb(0 0 0 / 10%);
  border-top: 10px solid var(--main-color);
  border-radius: 15px;
}
.con-head h4 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}
.inner_contact_sec .main_loc {
  margin-bottom: 20px;
  text-align: center;
  padding: 50px;
  background: #fff;
  box-shadow: 0 0px 50px rgb(0 0 0 / 10%);
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 300px;
}
.inner_contact_sec .main_loc .main_icon {
  background: var(--white-color);
  color: var(--blue);
  width: 50px;
  height: 50px;
  line-height: 53px;
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.main_loc .main_icon i {
  background: var(--main-color);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 53px;
  text-align: center;
  font-size: 18px;
  display: block;
}
.main_text h5 {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
}
.main_text p, .main_text a {
  color: #000;
  text-decoration: none;
}
.inner_contact_sec .form-group .btn_green {
  border: none;
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
}
.inr-frm .form-group{
  margin-bottom: 15px;
}
.inr-frm textarea.form-control {
  height: 100px;
}
.inr-frm .form-control:focus{
 outline: none;
 box-shadow: none;
 border: 1px solid #ced4da;
}
/* Testimonial */
.textimonial{
  width: 100%;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: var(--blue-color);
}
.testimonial-slide-box {
  background: var(--white-color);
  padding: 40px 18px;
  border-radius: 15px;
  margin: 0px 10px;
  min-height: 300px;
  margin-bottom: 30px;
  box-shadow: 0 0 35px rgb(0 0 0 / 20%);
}
.testimonial-slide-img-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.textimonial .test-img{
  margin-right: 20px; 
}
.test-star ul{
  padding: 0;
  margin: 0;
}
/*  */
/* .ftr-sub {
  position: absolute;
} */
.ftr-sub ul li{
  display: block!important;
}
/*  */
.career{
  background: var(--blue-color);
}
.career .wrapper{
	width: 100%;
  height: 500px;
	opacity: 1;
	background: linear-gradient(-55deg, transparent 25%, #B70303 25%, #B70303 75%, transparent 75%, transparent 100%);
	/*background: linear-gradient(-210deg, transparent 0%, #16181E 0%, #16181E 70%, transparent 50%, transparent 100%);*/
	transition: all 0.5s cubic-bezier(0.67, 0, 0.3, 1) 1s;
	display: flex;
	justify-content:center;
	align-items:center;
	text-align: center;
}
.career .content{
	/*transform:rotate(50deg);*/
	padding: 1rem;
	color:rgba(255,255,255,1);
}
.career .content h1{
	font-size: 3rem;
	color:rgba(255,255,255,1);
}
.career .content p{
	font-size: 1.1rem;
	color:rgba(255,255,255,1);
}
.career .content a{
	color:rgba(255,255,255,1);
	display: inline-block;
	padding: 2.1% 4%;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    
}
.career .btn1{
	border: 1px solid rgba(255,255,255,1);;
	transition: .2s ease-in-out;
}
.career .btn1:hover{
	border: 1px solid rgba(255,255,255,1);;
	background-color:rgba(255,255,255,1);;
	color: black;
	transition: .2s ease-in-out;
}
.career .btn2{
	margin-left: 3%;
    background: linear-gradient(to right, #252AFF 0%, #25FFED 100%);
    border-image: linear-gradient(to bottom right, #252AFF 0%, #25FFED 100%);
	border-image-slice: 1;
	border-width: 1px;
    border-style: solid;
    transition: .2s ease-in-out
}
.career .btn2:hover{
	background: none;
	border-image: linear-gradient(to bottom right, #252AFF 0%, #25FFED 100%);
	border-image-slice: 1;
	border-width: 1px;
    border-style: solid;
    transition: .2s ease-in-out
}

@media screen and (max-width: 355px){
	.career .content{
		/*transform:rotate(50deg);*/
		padding: 1rem 1.4rem;
	}
	.career .content h1{
		font-size: 2.5rem;
		/*margin: 5px 0px;*/
		/*line-height: 1.2;*/
	}
	.career .wrapper{
		background: linear-gradient(-210deg, transparent 0%, #16181E 0%, #16181E 70%, transparent 50%, transparent 100%);
		transition: all 0.5s cubic-bezier(0.67, 0, 0.3, 1) 1s;
		display: flex;
		justify-content:center;
		align-items:flex-start;
		text-align: left;
	}
}

@media screen and (min-width: 356px) and (max-width: 650px){
	.career .content{
		/*transform:rotate(50deg);*/
		padding: 1rem 1.4rem;
	}
	.career .wrapper{
		background: linear-gradient(-210deg, transparent 0%, #16181E 0%, #16181E 70%, transparent 50%, transparent 100%);
		transition: all 0.5s cubic-bezier(0.67, 0, 0.3, 1) 1s;
		display: flex;
		justify-content:center;
		align-items:flex-start;
		text-align: left;
	}
}
/*  */

/* #scrl {
  position: fixed;
  opacity: 0;
} */
#cssmenu > ul > li > a svg {
    display: none;
}

/* career page*/
.career-sec-wrap{
  padding: 50px 0px;
}
.career-form{
  padding: 50px 0px;
}
.en-img img{
  width: 100%;
}
.en-frm{
  box-shadow: -20px 0px 38px rgb(0 0 0 / 30%);
  padding: 30px;
  border-radius: 30px;
}
.en-frm .form-group label{
  padding-bottom: 5px;
}



/*08-06-2023 */
.career-sec .accordion-button::after {
  content: "\2B";
  background-image: none;
  font-size: 28px;
  height: auto;
  width: auto;
  color: var(--text-color);
  font-weight: 400;
}

.career-sec .accordion-button:not(.collapsed)::after {
  content: "\2212";
}

.career-sec .accordion-item {
  border: none;
}

.career-sec .accordion-button:not(.collapsed) {
  background: var(--main-color);
  border: none;
  box-shadow: none;
  color: var(--white-color);
  font-weight: 600;
}

.career-sec .accordion-button {
  font-size: 18px;
  background: var(--blue-color);
  color: var(--white-color);
  margin-bottom: 5px;
  padding: 5px 10px;
}

.career-sec .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.career-sec .ac-des {
  text-align: center;
}

.career-sec .ac-des h3 {
  font-size: 16px;
  padding: 10px;
  color: var(--black-color);
  margin: 0;
  background: #e7e7e7;
  text-align: left;
}

.career-sec .ac-des p {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  padding: 20px 20px 20px 10px;
  background: rgb(204 204 204 / 8%);
  margin: 5px 0px;
}

.career-sec .accordion-body {
  padding: 5px 25px !important;
}
.jobs p{
   font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;   
}