@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
:root {
  --baseFont: 'Poppins', sans-serif;
  --primaryColor: #2F82C4;
  --baseColor: #303841;
  --white: #fff;
}
body {
  font-family: var(--baseFont);
  color: var(--baseColor);
  font-size: 22px;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}

.btn {
  font-size: 18px;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
}
.btnPrimary {
  background-color: var(--primaryColor);
  color: var(--white);
}
.btnPrimary:hover {
  background-color: var(--primaryColor);
  color: var(--white);
  opacity: 0.8;
}
.minWdBtn {
  min-width: 260px;
}
.primaryColor {
	color: var(--primaryColor);
}
.primaryBg {
  background-color: var(--primaryColor);
  color: var(--white);
}


/* header */
.headerSection {
	background-color: var(--white);
	position: fixed;
	left: 0;
	right: 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 99;
	padding: 0 40px;
}
.headerSection .container {
  max-width: 100%;
}
.menuCol > ul {
	display: flex;
  font-size: 16px;
}
.menuCol > ul > li > a, .menuCol > ul > li > div > a {
  display: block;
  padding: 28px 30px;
  font-weight: 500;
  position: relative;
}
#dropdownMenuSolutionsItems {
  background-color: #2D80C260;
  top: -20px !important;
  min-width: 220px;
  backdrop-filter: blur(3px);
}
.dropdown-item {
  padding: 10px;
  color: white;
}
.dropdown-item:not(:last-child) {
  border-bottom: 1px solid white;
}
.menuCol > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px;
  background-color: var(--primaryColor);
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  border-radius: 50px 50px 0 0;
}
.menuCol > ul > li > a.active::after {
  height: 9px;
}
.menuCol > ul > li > a.active {
  color: var(--primaryColor);
  /* font-weight: 600; */
}
.menuBackdrop {
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	pointer-events: none;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.actNav .menuBackdrop {
  opacity: 1;
  pointer-events: initial;
}
/*  /header */

/* banner */
.bannerSection {
  background-image: url('../images/banner-bg.webp');
  background-color: rgb(4 51 89 / 30%);
	/* background-color: var(--primaryColor); */
  background-blend-mode: color;
  -webkit-background-size: cover;
  background-size: cover;
	padding: 220px 0 220px;
	text-align: center;
	color: var(--white);
  position: relative;
  overflow: hidden;
}
.btmShape {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/btm-shape.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
  height: 50px;
  color: var(--baseColor);
  padding: 8px 0;
  text-align: center;
}
.btmShape.alt {
  /* background-image: url('../images/btm-shape2.svg'); */
  /* color: white; */
  filter: drop-shadow(0px -.5px 2px var(--baseColor));
  /* drop-shadow(0 .5px 0 var(--baseColor))
  drop-shadow(-.5px 0 0 var(--baseColor)) 
  drop-shadow(0 -.5px 0 var(--baseColor)); */
}
.btmShape.alt.primary {
  background-image: url('../images/btm-shape3.svg');
  color: white;
}
.btmShape a {
  font-size: 1.8rem;
}
.btmShape .icon-circle-wrapper {
  display: inline-block;
  transition: background-color 0.25s;
  height: 1.8rem;
  width: 1.8rem;
  margin-top: 3px;
  border-radius: 50%;
}
.btmShape .icon-circle-wrapper:hover {
  background-color: var(--baseColor);
  color: white;
}
/* .btmShape.alt .icon-circle-wrapper:hover {
  background-color: white;
  color: var(--baseColor);
} */
.icon-circle-wrapper i::before {
  vertical-align: 2px;
}
/* .btmShape > a:hover > i {
  background-color: black;
  color: var(--white);
}
.btmShape.alt > a:hover > i {
  background-color: white;
  color: var(--primaryColor);
} */
.bannerTitle {
	font-size: 80px;
	font-weight: 600;
	text-shadow: 0 3px 6px rgba(0,0,0,0.7);
}
.bannerTitle + h2 {
	display: block;
	font-weight: 100;
	font-size: 60px;
}
.bannerBtn {
  margin-top: 20px;
}
.bannerBtn > .btn {
  border: 1px solid #fff;
}

/* about */
.aboutCol {
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.titleCol {
	padding-bottom: 50px;
}
.lineTitle {
	font-size: 28px;
	font-weight: 100;
}
.lineTitle > span {
	position: relative;
  display: inline-block;
  font-weight: 600;
}
/* .lineTitle > span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  width: 31px;
  height: 3px;
  background-color: var(--primaryColor);
} */
.primaryBg .lineTitle > span::before {
	background-color: var(--baseColor);
}
.lineTitle.leftAlign > span::before {
  margin-right: auto;
}
.lineTitle.rightAlign > span::before {
  margin-left: auto;
}
.lineTitle.centerAlign > span::before {
  margin-left: auto;
  margin-right: auto;
}
.aboutContent {
  margin: 0 auto;
  max-width: 1100px;
}
.aboutBtmCol {
	margin: 100px auto -10px;
  max-width: 935px;
  border-radius: 59px 59px 0 0;
  box-shadow: 0px -2px 7px rgba(0, 0, 0, 0.15);
  padding: 45px 110px 35px;
  color: var(--primaryColor);
  background-color: var(--white);
}
.aboutRightCol {
  position: absolute;
  right: -50px;
  top: 45px;
}

/* section */
.serviceSection {
  position: relative;
  padding: 120px 0 15px;
  overflow: hidden;
}
.serviceContent {
	position: relative;
	z-index: 1;
}
.serviceSection .btmShape {
	height: 70px;
}
.serviceSwiper.swiper {
  overflow: initial;
}
.serviceSwiper .swiper-slide {
	height: auto;
}
.cardStyle1 {
  --cardPadding: 30px;
  --iconHeight: 174px;
	/* box-shadow: 0px 2px 8px rgba(0,0,0,0.2); */
	border-radius: 14px;
	background-color: var(--white);
	color: var(--baseColor);
	padding: var(--cardPadding);
	text-align: center;
  height: 100%;
}
.cs1IconCol {
	height: var(--iconHeight);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.cs1IconCol img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.cs1ContentCol {
	padding-top: 20px;
}
.cs1ContentCol {
	padding-top: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100% - var(--iconHeight));
}
.cs1ContentCol > p {
  margin: auto 0;
}
.cs1ContentCol h4 {
	font-size: 26px;
	font-weight: 500;
  margin-bottom: 15px;
}

/* side navbar social */
.sideNavbarSocial {
  position: fixed;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, .2);
}

.sideNavbarSocial hr {
  position: relative;
  margin-top: 4em;
  width: 2.5px;
  height: 20%;
  background: whitesmoke;
  align-self: center;
  opacity: 100%;
  border-top: initial !important;
}
.sideNavbarSocial hr:last-child {
  position: relative;
  margin-top: 1em;
  width: 2.5px;
  height: 15%;
  /* background: repeating-linear-gradient(90deg, #fff 0px, #fff 3px, transparent 4px, transparent 10px); */
  background-image:linear-gradient(to bottom, #fff 5px, transparent 1px), linear-gradient(#ccc 1px, transparent 1px);
  background-size: 15px 25px;
  background-color: initial;
  align-self: center;
  opacity: 100%;
}

.sideNavbarSocial a {
  align-self: center;
  align-items: center;
  padding: .5em;
}

/* .sideNavbarSocial::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 50%;
  transform:  translateX(-50%);
  bottom: 10px;
  background-image: radial-gradient( ellipse, #fff 6px, #fff 8px, transparent 3px) ;
    background-size: 20px 20px;
    background-position: 0px 0;
  background-repeat: repeat-x;
} */

.dotted {
  border-left: 2.5px dotted whitesmoke;
  left: 50%;
}
.aboutCol > .container {
  margin-bottom: 3em;
}


/* contact */
.contactSection {
	padding: 120px 0 130px;
}
.formStyle .form-floating > .form-control {
	border-color: #707070;
	border-radius: 8px;
	padding: 17px 24px;
}
.formStyle .form-floating > .form-control,
.formStyle .form-floating > label {
  font-size: 18px;
  font-weight: 500;
}
.formStyle .form-floating > label {
	color: #BBBBBB;
	left: 10px;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
	padding: 14px 12px;
}
.formStyle .form-floating > .form-control-plaintext ~ label,
.formStyle .form-floating > .form-control:focus ~ label,
.formStyle .form-floating > .form-control:not(:placeholder-shown) ~ label,
.formStyle .form-floating > .form-select ~ label {
	color: var(--primaryColor);
	-webkit-transform: translateY(-1.6rem) translateX(.15rem);
  -ms-transform: translateY(-1.6rem) translateX(.15rem);
  transform: translateY(-1.6rem) translateX(.15rem);
	font-size: 14px;
  left: 5px;
}
.formStyle .form-floating > textarea.form-control {
	height: 150px;
	resize: none;
}
.formStyle .form-control:focus {
	box-shadow: none;
}
.formBtn {
  text-align: center;
  padding-top: 10px;
}
.contactRightCol {
	padding: 92px 0 0 40px;
}
.contactRight {
	padding-left: 40px;
  padding-bottom: 20px;
  border-left: 1px solid var(--primaryColor);
}
.contactLogoCol {
	padding-bottom: 45px;
}
.cList {
	font-weight: 500;
}
.cList > li + li {
	padding-top: 25px;
}


/* footer */
.footerSection {
	background-color: var(--baseColor);
	color: var(--white);
	padding: 25px 0;
	font-size: 20px;
}
.footerLeftCol {
  width: 450px;
}
.footerLogo {
	padding-bottom: 30px;
}
.footerLeftCol .copyrightCol {
	font-size: 22px;
}
.footerContentCol {
	padding-left: 50px;
	border-left: 1px solid rgba(255,255,255,0.6);
}
.footerTitle {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 30px;
}
.quickLinks li + li, .iconList li + li {
	padding-top: 20px;
}
.iconList li > a {
	position: relative;
	padding-left: 30px;
	display: inline-block;
}
.listIcon {
  position: absolute;
  left: 0;
  top: 6px;
}
.listIcon img {
	display: block;
	max-width: 20px;
	max-height: 20px;
	-o-object-fit: contain;
  object-fit: contain;
}

.socialMenus {
  padding-bottom: 20px;
}
.socialMenus li {
	display: inline-block;
	vertical-align: middle;
  padding-right: 18px;
}
.socialMenus li a {
  display: block;
}
.footerSection a:hover {
  opacity: 0.6;
}

#positive {
  display: none;
  color: green;
  margin-top: 3rem;
}

#negative {
  display: none;
  color: red;
  margin-top: 3rem;
}

.btnMainAction:hover {
  background-color: var(--baseColor);
  opacity: 1;
}

/* animations start*/
@-webkit-keyframes zoomIn {
  from {
      opacity: 0;
      transform: scale3d(.3,.3,.3)
  }

  50% {
      opacity: 1
  }
}

@keyframes zoomIn {
  from {
      opacity: 0;
      transform: scale3d(.3,.3,.3)
  }

  50% {
      opacity: 1
  }
}

@-webkit-keyframes riseUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes riseUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.ariseAnim:nth-child(1) {
  animation-duration: 1s;
  /* animation-fill-mode: both; */
}
.ariseAnim:nth-child(2) {
  animation-duration: 1.5s;
  /* animation-fill-mode: both; */
}
.ariseAnim:nth-child(3) {
  animation-duration: 2s;
  /* animation-fill-mode: both; */
}

.ariseAnim.in-view {
  -webkit-animation-name: riseUp;
  animation-name: riseUp;
}
/* .animate.in-view {
  transition: all 3s ease-in-out;
} */
.titleCol > h3 {
  font-size: 2.5rem;
}

/* media start */
@media (min-width:992px) {
  .serviceSwiper .swiper-slide.swiper-slide-active,
  .serviceSwiper .swiper-slide.swiper-slide-next + .swiper-slide {
  	padding-top: 25px;
  	padding-bottom: 25px;
  }
  .serviceSwiper .swiper-slide.swiper-slide-next .cs1ContentCol h4 {
    padding-top: 25px;
  }
  .serviceSwiper .swiper-slide.swiper-slide-next .cs1ContentCol > p {
    margin-top: 0;
  }
}
@media (min-width:1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  	max-width: 1274px;
  }
}
@media (max-width:1600px) {
  .cardStyle1 {
  	--iconHeight: 140px;
  }
}
@media (max-width:1399px) {
  body {
  	font-size: 20px;
  }
  .bannerTitle {
  	font-size: 60px;
  }
  .bannerTitle + h2 {
    font-size: 40px;
  }
  .titleCol {
  	padding-bottom: 30px;
  }
  .cs1ContentCol h4 {
  	font-size: 22px;
  }
  .cardStyle1 {
  	--cardPadding: 25px;
  	--iconHeight: 120px;
  }
  .footerSection {
  	padding: 60px 0 55px;
  	font-size: 18px;
  }
  .footerTitle {
  	font-size: 22px;
    margin-bottom: 20px;
  }
  .footerLeftCol .copyrightCol {
  	font-size: 20px;
  }
  .footerLeftCol {
  	width: 400px;
  }
  .minWdBtn {
  	min-width: 200px;
  }
  .contactRightCol {
  	padding: 72px 0 0 40px;
  }
}

@media (max-width:1199px) {
  #about .col-4 {
    display: none;
  }
  .aboutCol {
    min-height: inherit;
  }
  body {
  	font-size: 18px;
  }
  .formStyle .form-floating > .form-control, .formStyle .form-floating > label {
  	font-size: 16px;
  }
  .formStyle .form-floating > label {
  	padding: 15px 12px;
  }
  .footerLeftCol {
  	width: 300px;
  }
  .footerContentCol {
  	padding-left: 30px;
  }
  .footerTitle {
  	font-size: 20px;
  }
  .footerSection {
  	font-size: 16px;
  }
  .contactRightCol {
  	padding: 72px 0 0 0px;
  }
  .contactRight {
  	padding-left: 20px;
  }
  .btmShape {
  	/* height: 30px; */
  }
  .headerSection {
  	padding: 0 20px;
  }
}

@media (max-width:991px) {
  .serviceSwiper .servNext:not(.swiper-button-disabled),
  .serviceSwiper .servPrev:not(.swiper-button-disabled) {
    display: block;
  }
  .headerSection {
  	padding: 10px 10px;
  }
  .hamburger {
  	padding: 5px;
  	cursor: pointer;
  }
  .menuColMain {
  	position: fixed;
  	left: 0;
  	right: 0;
  	top: 0;
  	background-color: var(--baseColor);
  	color: var(--white);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 9;
  }
  .actNav .menuColMain {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .menuCol > ul {
  	display: block;
    padding: 20px;
    text-align: right;
  }
  .menuCol > ul > li > .dropdown {
    display: inline-block !important;
  }
  .menuCol > ul > li > a {
  	display: inline-block;
    padding: 0;
  }
  .menuCol > ul > li > a.active {
    color: var(--white);
  }
  .menuCol > ul > li > a::after {
  	display: none;
  }
  .menuCol > ul > li, .menuCol > ul > li > div > a {
  	padding: 15px 0;
  }

  .aboutBtmCol {
  	margin: 80px auto -10px;
  	max-width: 935px;
  	border-radius: 40px 40px 0 0;
  	padding: 45px 40px 35px;
  }
  .aboutCol, .serviceSection, .contactSection {
  	padding-top: 110px;
  }
  .footerContentCol {
  	padding-left: 0;
  	border-left: none;
  }
  .cardStyle1 {
    -webkit-transition: transform 300ms ease-in-out 0s;
    -o-transition: transform 300ms ease-in-out 0s;
    transition: transform 300ms ease-in-out 0s;
  }
  .serviceSwiper .swiper-slide.swiper-slide-active .cardStyle1 {
  	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .servPrev, .servNext {
    width: 50vw;
  	top: 20px;
  	bottom: 0px;
  	height: auto;
  }
  .servPrev::after, .servNext::after {
    display: none;
  }
  .servPrev {
  	left: auto;
  	right: calc(50% + 195px);
  }
  .servNext {
    right: auto;
  	left: calc(50% + 195px);
  }
  #dropdownMenuSolutionsItems {
    position: relative !important;
    float: right !important;
    transform: none !important;
  }
  .footerSection > .footerTop > div > .row.justify-content-between {
    justify-content: center !important;
  }
}

@media (max-width:767px) {
  body {
  	font-size: 15px;
  }
  .headerSection {
  	padding: 10px 0px;
  }
  .serviceSwiper .swiper-slide {
  	width: auto;
  }
  .cardStyle1 {
  	/* width: 280px; */
  }
  .servNext {
  	left: calc(50% + 180px);
  }
  .servPrev {
  	right: calc(50% + 180px);
  }
  .footerTitle {
  	font-size: 16px;
  }
  .listIcon {
  	top: 2px;
  }
  .footerContentCol {
  	max-width: 250px;
  }
  .iconList li > a {
    word-break: break-all;
    line-height: 1.2;
  }
  .quickLinks li + li {
  	padding-top: 25px;
  }
  .cardStyle1 {
  	--iconHeight: 80px;
    --cardPadding: 30px 20px;
  }
  .bannerTitle {
    font-size: 34px;
  }
  .bannerTitle + h2 {
    font-size: 24px;
  }
  .titleCol {
    padding-bottom: 20px;
  }
  .aboutBtmCol {
    margin: 60px auto -10px;
    padding: 30px 25px 20px;
  }
  .quickLinks a {
    text-decoration: underline;
  }
  .logoCol img {
    height: 46px;
  }
  .aboutCol, .serviceSection, .contactSection {
    padding-top: 95px;
    padding-bottom: 50px;
  }
  .formStyle .form-floating > .form-control, .formStyle .form-floating > label {
    font-size: 15px;
  }
  .formStyle .form-floating > label {
    padding: 12px 8px;
    left: 5px;
  }
  .formStyle .form-floating > .form-control-plaintext ~ label, .formStyle .form-floating > .form-control:focus ~ label, .formStyle .form-floating > .form-control:not(:placeholder-shown) ~ label, .formStyle .form-floating > .form-select ~ label {
    left: 0;
  }
  .formStyle .form-floating > .form-control {
    padding: 10px 15px;
    height: 50px;
    min-height: 50px;
  }
  .formStyle .form-floating > textarea.form-control {
    height: 120px;
  }
  .formBtn {
    padding-top: 0;
  }
  .form-floating {
    max-height: 50px;
  }
}

@media (max-width:575px) {
  .bannerSection {
    padding: 180px 0 130px;
  }
  .bannerTitle {
    font-size: 22px;
    line-height: 1.5;
  }
  .bannerTitle + h2 {
    font-size: 16px;
  }
  .lineTitle {
    font-size: 22px;
  }
  .cs1ContentCol h4 {
    font-size: 20px;
  }
  .btmShape {
    /* height: 20px; */
  }
  .btn {
    font-size: 16px;
  }
  .minWdBtn {
    min-width: 160px;
  }
  .contactSection {
    padding-bottom: 80px;
  }
  .footerSection {
    padding: 40px 0 35px;
    font-size: 13px;
  }
  .footerContentCol {
    max-width: 186px;
  }
  .footerTitle {
    font-size: 14px;
  }
  .quickLinks li + li {
    padding-top: 20px;
  }
  .iconList li + li {
    padding-top: 15px;
  }
  .socialMenus {
    padding-top: 15px;
  }
  .cardStyle1 {
    /* width: 250px; */
    --iconHeight: 70px;
    --cardPadding: 30px 15px;
  }
  .servNext {
    left: calc(50% + 150px);
  }
  .servPrev {
    right: calc(50% + 150px);
  }
  .cs1ContentCol h4 {
    font-size: 18px;
  }
  .formBtn .btn {
    width: 100%;
  }
  .copyrightCol {
  	font-size: 12px;
  }
  .listIcon {
  	top: -1px;
  }
}

@media (max-width:374px) {
  .bannerTitle {
    font-size: 19px;
  }
  .bannerTitle +h2 {
    font-size: 12px;
  }
  .cs1ContentCol h4 {
    font-size: 18px;
  }
  .footerContentCol {
    max-width: 144px;
  }
  .footerSection {
    font-size: 12px;
  }
  .footerTitle {
    font-size: 13px;
  }
  .socialMenus li {
    padding-right: 12px;
  }
  .socialMenus img {
    width: 20px;
  }
  .listIcon img {
    max-width: 18px;
    max-height: 18px;
  }
  .iconList li > a {
    padding-left: 25px;
  }
}
