@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Montserrat", sans-serif;
  color: #21232a;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
}

@font-face {
  font-family: "urbanSans";
  src: url("../fonts/Urban-Shadow-SansSerif.otf");
}

/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "urbanSans";
  color: #21232a;
}

h1 {
  font-size: 65px;
  line-height: 1;
}

h2 {
  font-size: 57px;
  line-height: 60px;
  margin: 0;
}

h3 {
  font-size: 30px;
  line-height: 35px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.bt {
  display: inline-block;
}

.pbtn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 4px;
  background-color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  border: 1px solid #0096ff;
  transition: 0.3s;
}

.maxWidth {
  max-width: 1440px;
}

.bt .pbtn:hover span {
  background: #051926;
  color: #fff;
}

.bt .pbtn:hover {
  border: 1px solid #051926;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 14px 0;
  background: #fff;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #393939;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #0096ff;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.carousel-caption {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #041825;
  color: inherit;
}

/*banner css end*/

header {
  width: 100%;
  padding: 7px 0px 10px;
  position: absolute;
  z-index: 12;
}

.header-logo {
  position: absolute;
  top: 0;
  width: 280px;
  object-fit: fill;
}

.pbtn span {
  background: #0096ff;
  padding: 10px 10px;
  border-radius: 5px;
}

header .bt {
  width: 100%;
}

.pbtn i {
  color: #000;
  font-size: 16px;
}

header .pbtn i {
  position: relative;
  left: 4px;
}

section.main_slider {
  position: relative;
  overflow: hidden;
}

img.banner-img1 {
  width: 100%;
  height: 740px;
  object-fit: cover;
  filter: saturate(0.5);
}

.banner_text {
  position: relative;
  padding: 80px 40px 80px 90px;
  background: #fff;
  border-radius: 0px 24px 0px 0px;
}

.banner_text h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.banner_text h2 span {
  color: #0096ff;
  font-size: 70px;
  line-height: 70px;
}

.banner_text span.subhead {
  color: #0096ff;
  font-size: 14px;
  letter-spacing: 7px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}

.banner_bottom {
  background: #072133;
  width: 100%;
  padding: 24px 0px;
  position: relative;
  top: -3px;
}

.banner_bottom .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.banner_bottom .social ul {
  margin: 0px;
}

.banner_bottom .social ul li {
  padding-left: 40px;
  position: relative;
}

.banner_bottom .social ul li i {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #ffffff30;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  color: #ffffff8c;
  transition: 0.3s;
}

.banner_bottom .social ul li i:hover {
  background: #0094fc;
  color: #fff;
}

.banner_bottom .social p {
  text-transform: uppercase;
  color: #ffffff8a;
}

.banner_bottom .social ul li:before {
  position: absolute;
  content: "";
  left: 4px;
  background: #ffffff33;
  height: 1px;
  width: 41%;
  top: 19px;
}

.banner_bottom .social ul li:first-child:before {
  display: none;
}

.banner_bottom .social:before {
  position: absolute;
  content: "";
  left: 104px;
  background: #ffffff33;
  height: 1px;
  width: 72%;
  top: 20px;
}

.banner_text span.subhead:before {
  position: absolute;
  content: "";
  width: 118%;
  height: 1px;
  background: #3d3d3d3b;
  left: -100px;
  bottom: 0;
}

.banner_text a.pbtn {
  width: 160px;
  justify-content: space-between;
}

.banner_text a.pbtn i {
  flex-shrink: 0;
  padding-right: 14px;
}

/* About Us start  */

.abtWrap {
  /* width: 90%; */
  margin: 0px auto;
  padding-top: 30px;
  position: relative;
}

.ab-left {
  position: relative;
  padding-left: 25px;
}

.abtWrap:before {
  position: absolute;
  content: "";
  width: 110px;
  height: 360px;
  background: #0096ff;
  left: 0px;
  top: 0;
  border-radius: 10px;
}

img.ab1-img {
  height: 660px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.bt.bt1 .pbtn span {
  min-width: 130px;
  text-align: center;
}

.bt.bt1 .pbtn i {
  padding: 0 10px 0 5px;
}

/* About Us End  */

/* Chose Section Start */

.choseWrap {
  width: 90%;
  margin: 0px auto;
  position: relative;
}

.chose-right {
  padding: 32px;
  background: #fff;
  filter: drop-shadow(2px 4px 16px #4444441a);
  border-radius: 10px;
  width: 540px;
  position: relative;
  left: -60px;
}

ul.chos-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 5px 0 5px;
}

ul.chos-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

ul.chos-list li img {
  width: 16px;
}

.chose-left {
  position: absolute;
  left: 0;
  width: 70%;
}

img.chose-img1 {
  height: 590px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Chose Section End */

/* Reviews Section Start  */

ul.review-ul li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.reviewsSlider .slick-slide {
  opacity: 1;
  margin: 0px 10px;
}

.rev-card {
  padding: 32px 24px;
  border-radius: 10px;
  background: #051926;
}

ul.review-ul li span i {
  color: #f5a920;
}

span.rev-cout {
  color: #fff;
}

.rev-card p {
  font-size: 15px;
  line-height: 28px;
  color: #ffffffa6;
}

.auth-info {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 10px;
}

img.review-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100px;
}

span.author-name {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

.reviewsSlider .slick-current.slick-active .rev-card {
  background: #0096ff;
}

/* Reviews Section End */

/* ------------------------------ News Start  -----------------------*/

.blog-txt p {
  font-size: 14px;
  margin: 0 auto;
  width: 65%;
}

.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.blog-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: 0.2s;
}

.blog-detail {
  padding: 22px 12px 22px 20px;
  background: #0096ff;
  box-shadow: 0 0 4px #80808073;
  width: 80%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
  display: table;
  margin: -110px auto 0;
  color: #ffffff9e;
  z-index: 12;
  position: relative;
}

.blog-detail h5 {
  font-family: "Montserrat";
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin: 0 0 10px;
  width: 100%;
  text-transform: capitalize;
  line-height: 22px;
}

.blog-detail p {
  font-size: 14px;
  line-height: 22px;
}

.blog-detail h5 {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: normal;
  color: #000;
  font-weight: 500;
  margin: 0 0 20px;
  width: 100%;
  text-transform: capitalize;
}

.blog-detail h5 span {
  display: block;
}

.alignlist {
  display: flex;
  gap: 10px;
  justify-content: end;
  text-align: end;
  margin-left: 0;
}

.icons i {
  border: solid 1px #ffffffa3;
  border-radius: 20px;
  color: #ffffffa3;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icons {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding-right: 10px;
}

.icons p {
  margin: 0;
}

img.blog-image-butter-big {
  width: auto;
  position: absolute;
  top: -30px;
  right: -70px;
}

img.blog-image-butter {
  margin: 0 0 0 40px;
  width: auto;
}

.blog-img:hover img {
  width: 100%;
  transform: scale(1.1);
}

h3.blog-title {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat";
  text-transform: capitalize;
}
/* ------------------------------ News End  ----------------------- */

/* Footer styling start here  */

footer {
  background: #051926;
  color: #fff;
  padding: 140px 60px 0px 60px;
  margin-top: 3%;
  position: relative;
}

footer .padds {
  padding: 30px 0px 80px 0px;
  height: 100%;
}

footer.footerSec .row {
  overflow: hidden;
}

footer .ft-logo {
  margin-bottom: 24px;
}

footer p {
  color: #fff;
  font-weight: 400;
  line-height: 26px;
  opacity: 60%;
}

footer h3 {
  font-size: 28px;
  line-height: 37px;
  color: #fff;
  margin: 0;
}

footer ul li a {
  color: #ffffffc2;
  transition: 0.5s;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

footer ul li a:hover {
  text-decoration: underline;
  opacity: 1;
  color: #fff;
}

footer .foot-links ul {
  position: relative;
  width: 60%;
  column-count: 2;
  gap: 24px;
  margin: 0;
}

footer .follow ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0px;
}

footer .follow ul li a i {
  width: 40px;
  height: 40px;
  border-radius: 45px;
  color: #606060;
  border: 1px solid #606060;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  font-size: 17px;
  display: flex;
}

footer .follow ul li a i:hover {
  background: #872728;
  border: 1px solid #872728;
  color: #fff;
  opacity: 1;
}

footer .follow ul li a:hover {
  text-decoration: unset !important;
}

.footer-btm {
  padding: 20px 0;
  position: relative;
}

.footer-btm p {
  margin: 0px;
}

footer .foot-links {
  position: relative;
  padding: 20px 0px 40px 80px;
}

footer .foot-links:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #ffffff17;
  left: 0px;
  bottom: 0;
}

footer .foot-links:after {
  position: absolute;
  content: "";
  width: 1px;
  right: 64px;
  height: 100%;
  background: #ffffff17;
  bottom: 0;
}

.footer-btm:before {
  position: absolute;
  content: "";
  width: 115%;
  left: -120px;
  top: 0;
  background: #ffffff17;
  height: 1px;
}

footer .ft-logo h2 {
  font-weight: 500;
}

footer .follow {
  margin-top: 24px;
}

footer h5 {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0 0 30px;
  font-size: 22px;
  text-transform: uppercase;
}

footer .follow ul li {
  margin: 0px;
}

section.mail-ft .connectLinks .connecIcon i.fas.fa-phone-volume {
  transform: rotate(-35deg);
}

.site_des.padds p {
  width: 70%;
}

footer .ft-logo a img {
  display: inline-block;
}

footer .foot-links ul a.flx span {
  opacity: 80%;
}

footer ul li a span {
  margin-left: 7px;
}

.fotertop {
  width: 950px;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0px auto;
  background: #051926;
  border-radius: 8px;
}

.ft-info {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  background: #051926;
  border-radius: 6px;
}

.ft-info .info-i {
  width: 55px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #292929;
}

span.ft-tit {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 13px;
  line-height: 16px;
}

.info-txt p {
  font-size: 14px;
  line-height: 20px;
}

.ft-info.blueg {
  background: #0096ff;
  border-radius: 0px;
}

.ft-info.blueg .info-i {
  background: #376d93;
}

/* Footer Mail section css end  */

/* Services Section Start */

section.servs {
  position: relative;
  padding: 40px 0 80px;
  background: #f4f4f4;
}

img.service-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 400px;
  height: 100%;
  object-fit: cover;
}

section.servs .maxWidth {
  max-width: 1600px;
  padding: 0px;
}

.srvs-head {
  width: 70%;
  margin: 0px 0px 50px auto;
  padding: 50px 0px 30px 0px;
  position: relative;
}

.srvs-head .row {
  align-items: center;
}

.srvs-head .srvs-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-right: 50px;
}

.srvs-head .srvs-btn button {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 45px;
  border: 1px solid #c9c9c9;
  font-size: 16px;
  transition: 0.2s;
  box-shadow: 0px 0px 20px 4px #c9c9c933;
  line-height: 23px;
}

.srvs-head .srvs-btn button:hover {
  background: #408efb;
  color: #fff;
}

.srvs-head:before {
  position: absolute;
  content: "";
  width: 111%;
  height: 1px;
  bottom: 0;
  background: #5555553d;
  left: -77px;
}

.srvs-head h2 {
  line-height: 40px;
}

.svsSliderWrap {
  margin-left: 280px;
  margin-bottom: 50px;
}

.svsSliderWrap .slick-slide {
  opacity: 1;
  margin: 0px 10px;
}

.svscard {
  position: relative;
}

img.srvs-card-img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.svsSliderWrap .srvsSlider .slick-list.draggable {
  padding-right: 60px;
}

.svs-step {
  background: #408efb;
  width: 84px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 5px 0px 0px;
  margin: -75px 0px 0px 47px;
  position: relative;
  z-index: 1;
}

.svs-step h3 {
  margin: 0px;
  color: #fff;
  font-size: 35px;
}

.svs-step h4 {
  text-transform: uppercase;
}

.svs-txt {
  padding: 40px 24px 50px;
  background: #fff;
  filter: drop-shadow(2px 4px 16px #4444441a);
  border-radius: 0px 0px 0px 5px;
  width: 88%;
  margin: 0px 0px 0px auto;
}

.svs-txt h4 {
  text-transform: uppercase;
}

.svs-txt .bt.bt1 {
  margin-top: 4px;
}

section.servs ul.slick-dots {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 88%;
  bottom: -60px;
  gap: 30px;
}

section.servs ul.slick-dots li {
  background: #b7b7b7;
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 45px;
  margin: 0;
}

section.servs ul.slick-dots li button {
  display: none;
}

section.servs ul.slick-dots li.slick-active {
  background: #408efb;
  outline: 1px solid #408efb;
  outline-offset: 8px;
}

/* Services Section End */

/* Inner Banner Start */

section.innerbaner {
  position: relative;
  overflow: hidden;
  padding: 240px 0 130px;
  background: #051926;
}

/* Inner Banner End  */

.sabo-page .sabo-Img img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: 100% 24%;
}

.sabo-page .lst-dt {
  display: flex;
  gap: 50px;
  margin: 20px 0 40px;
}

.sabo-page .lst-dt .user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sabo-page .lst-dt .user h6 {
  color: #000;
  font-weight: 700;
  letter-spacing: 0px;
  font-family: "Roboto";
  padding-top: 10px;
}

.sabo-page .lst-dt i {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #081934;
  border: 1px solid #051926;
  transition: 0.9s;
  border-radius: 45px;
}

.sabo-page .lst-dt ul {
  display: flex;
  gap: 10px;
  margin: 0px;
}

/* Contct Us page start  */

section.contact-page {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

section.contact-page .quick-links {
  position: relative;
}

section.contact-page .quick-links h2 {
  color: #000;
  margin-bottom: 16px;
}

section.contact-page .quick-links p {
  line-height: 30px;
}

section.contact-page ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  margin-top: 40px;
}

section.contact-page ul li {
  display: flex;
  align-items: center;
  gap: 30px;
}

section.contact-page ul li .img {
  position: relative;
}

section.contact-page ul li .text h6 {
  color: #000;
  transition: 0.2s;
  font-size: 24px;
  font-weight: 500;
  font-family: "Poppins";
  margin: 0 0 10px;
}

section.contact-page ul li .text a {
  color: #555555;
  display: inline-block;
  transition: 0.9s;
  line-height: 1.5;
  font-size: 14px;
}

section.contact-page ul li .img img {
  width: auto;
  transition: 0.2s;
  cursor: pointer;
}

section.contact-page ul li:hover .img img {
  transform: rotate(20deg);
}

section.contact-page ul li:hover .text h6 {
  transform: translate(10px, 0px);
}

section.contact-page ul li:hover .text a {
  transform: translate(10px, 0px);
}

/* ========================= */

section.contact-page form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 6px;
  color: #000000;
  font-weight: 500;
  transition: 0.6s;
  font-size: 14px;
  background: #f3f3f3;
  border: 0px;
}

section.contact-page form input::placeholder {
  color: #333232ef;
}

section.contact-page form textarea#message {
  width: 100%;
  margin-bottom: 20px;
  border: 0px;
  padding: 18px 20px;
  border-radius: 5px;
  color: #000000;
  font-weight: 500;
  transition: 0.6s;
  height: 150px;
  resize: unset;
  position: relative;
  border: 1px solid #d2d2d2;
  font-size: 14px;
}

section.contact-page form textarea#message::placeholder {
  color: #9d9a9a;
}

section.contact-page form .brtns {
  display: block;
}

section.contact-page form .brtns button {
  border: 0;
  display: inline-block;
  padding: 14px 0px;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.9s;
  background: #7fe2f4;
  width: 190px;
}

section.contact-page form h2 {
  color: #000;
  margin-bottom: 20px;
}

section.contact-page .cont-wrap {
  width: 90%;
  margin: 0px auto;
}

section.contact-page .cont-wrap h2 {
  color: #081934;
  text-align: center;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section.contact-page form select {
  width: 100%;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 6px;
  color: #000;
  font-weight: 500;
  transition: 0.6s;
  font-size: 14px;
  background: #f3f3f3;
  border: 0px;
  appearance: auto;
}

section.contact-page form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 6px;
  color: #000000;
  font-weight: 500;
  transition: 0.6s;
  font-size: 14px;
  background: #f3f3f3;
  border: 0px;
  height: 150px;
  resize: unset;
}

section.contact-page form button.p-btn {
  width: 100%;
  padding: 20px;
  font-family: "Poppins";
  text-transform: capitalize;
  font-size: 24px;
  letter-spacing: 1px;
  transition: 0.2s;
  background: #051926;
  color: #fff;
  border: 0px;
  border-radius: 4px;
}

section.contact-page ul li .img i {
  width: 80px;
  height: 80px;
  background: #7fe2f4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  color: #081934;
  font-size: 33px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

/* Contct Us page end */

section.get-an .formWraper {
  margin: 0px auto;
  background: #fff;
  padding: 48px;
  box-sizing: border-box;
  margin-top: 10px;
  width: 85%;
  filter: drop-shadow(2px -10px 21px #9996);
  border-radius: 10px;
}

section.get-an form .formField {
  position: relative;
  margin-bottom: 18px;
}

section.get-an form .formField input {
  position: relative;
  width: 100%;
  outline: none;
  padding: 16px 20px 16px 22px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  box-sizing: border-box;
  text-transform: capitalize;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}

section.get-an form .formField select {
  position: relative;
  width: 100%;
  outline: none;
  padding: 18px 40px 18px 24px;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  box-sizing: border-box;
  box-shadow: 0px 0px 2px 1px #00000014;
  border: 0px;
  text-transform: capitalize;
  border-radius: 5px;
  appearance: auto;
}

section.get-an form .formField textarea {
  position: relative;
  width: 100%;
  outline: none;
  padding: 18px 40px 18px 24px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  height: 150px;
  resize: unset;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}

.formWraper .bt {
  width: 100%;
}

.formWraper .bt button.pbtn {
  width: 100%;
  text-align: center;
}

.formWraper .bt button.pbtn span {
  width: 100%;
  font-size: 16px;
  line-height: 36px;
}

.ss-wraper {
  width: 90%;
  margin: 0px auto;
}

img.ss-detail-img {
  height: 580px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.sol-card p {
  color: rgba(0, 0, 0, 0.7);
}

.banner_text h2 {
  font-size: 62px;
  line-height: 62px;
  letter-spacing: 0;
}

.ft-info .info-i i {
  font-size: 22px;
}

footer ul li a i {
  font-size: 16px;
}

.blogsSlider .slick-slide {
  opacity: 1;
}

.blogsSlider .slick-slide .blog-detail {
  opacity: 0;
}

.blogsSlider .slick-slide.slick-current.slick-active .blog-detail {
  opacity: 1;
}

.menuSec ul li.active a {
  border-bottom: 2px solid #0096ff;
  color: #0096ff;
  font-weight: 700;
}
.ab-right p b {
  display: block;
  text-transform: uppercase;
  font-family: "Montserrat";
  margin: 13px 0px 1px;
  color: #000;
}

.ab-right p {
  line-height: 22px;
}
