/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #073c89;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

/* Cursor Start */
/* 
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
} */

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 0.75rem 2.75rem;
  line-height: normal;
  letter-spacing: 2.64px;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1.1rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2.515rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 0;
  display: inline-block;
  letter-spacing: 2.64px;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 600px;
  /* background-color: #f3f8ff; */
  z-index: 11;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  font-size: 5rem;
  color: var(--white);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 5rem;
}

.homeSlider .swiper-button-prev {
  left: 3rem;
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 99%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11111;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 3px;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin: 0.625rem 0;
  font-size: 1.5625rem;
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}

.slideOne {
  padding-left: 8.75rem;
}

.slideOne .themeBtn {
  background: transparent;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  margin-top: 5rem;
}

.homeSlider .swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.homeSlider .swiper-button-prev span,
.homeSlider .swiper-button-next span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
}

.homeSlider .swiper-button-prev span i,
.homeSlider .swiper-button-next span i {
  font-size: 6.5rem;
}

/* !MAIN HERO SLIDER CSS */

/* Expert Sec Css Start */

.rotate-img {
  animation: rotate360 5s linear infinite;
  display: inline-block;
  position: absolute;
  right: -3rem;
  top: -3rem;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

figure.expert-imag {
  position: relative;
}

section.expert-sec {
  background-color: #f3f8ff;
  padding: 8rem 0 7rem;
  z-index: 1;
}

section.expert-sec::before {
  position: absolute;
  content: "";
  background: url(../images/expertbg.webp) center/cover no-repeat;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -111;
}

.subHead {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.84px;
  line-height: 1.2;
}

.mainHead {
  font-size: 3rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.expert-content .mainHead {
  margin: 0.625rem 0;
}

.expert-content p {
  color: var(--black);
  line-height: 1.625;
  width: 90%;
}

.expert-content>p {
  margin: 2.5rem 0;
}

.expert-overlay {
  display: flex;
  align-items: flex-start;
  gap: 7rem;
}

.expert-overlay p {
  width: 100%;
}

.expert-wrapp h5 {
  font-size: 5rem;
  font-weight: bold;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 40px;
}

.expert-wrapp {
  position: relative;
}

.expert-wrapp::before {
  position: absolute;
  content: "";
  height: 110px;
  width: 112px;
  border: 2px solid #8e8e8e;
  right: 0;
  top: -11px;
  border-left: unset;
}

.expert-overlay:last-child .expert-wrapp::before {
  right: 0;
}

.expert-overlay .expert-wrapp:last-child::before {
  right: 0px;
}

.expert-content .themeBtn {
  margin-top: 3rem;
}

/* .expert-imag {
  text-align: center;
  border-right: 1px solid #ebebeb;
} */

.expert-img h4 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
  letter-spacing: 2.5px;
  margin-top: 1rem;
}

.exper-bottom {
  margin-top: 7.5rem;
  position: relative;
}

.exper-bottom span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
  letter-spacing: 2.64px;
  position: absolute;
  top: 0;
  left: -5rem;
}

.exper-bottom .col-md-4:last-child .expert-imag {
  border: unset;
}

/* Expert Sec Css End */

/* Services Sec Css Start */

.services-top p {
  color: var(--black);
  line-height: 1.625;
  width: 30%;
}

.services-top {
  padding-left: 8.75rem;
  margin-bottom: 2.5rem;
}

section.services-sec {
  background-color: #eaf0f9;
  padding: 9.375rem 2.5rem 8.3125rem;
}

.services-content h3 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2.5px;
  margin-top: 1.875rem;
  line-height: 1.2;
}

/* Services Sec Css End   */

/* Choose Sec Css Start */

section.choose-sec {
  background: url(../images/choosebg.webp) center/cover no-repeat;
  background-color: #f3f8ff;
  margin-top: 3.125rem;
  padding: 9.375rem 0 4.5rem;
}

.choose-content .subHead {
  margin-bottom: 1rem;
}

.choose-content p {
  color: var(--black);
  line-height: 1.625;
  width: 94%;
  margin: 1.125rem 0 1.95rem;
}

.choose-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

.choose-list li a i {
  color: var(--primary);
}

.choose-list li+li {
  margin: 0.7825rem 0;
}

.choose-content {
  padding-left: 2rem;
}

.choose-content .themeBtn {
  margin-top: 2rem;
}

/* Choose Sec Css End  */

/* Project Sec Css Start */

.project-top {
  text-align: center;
  margin-bottom: 3.125rem;
}

.project-top .mainHead {
  margin: 0.625rem 0;
}

.project-top p {
  width: 38%;
  margin: auto;
  line-height: 1.625;
  color: var(--black);
}

figure.project-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.project-content h3 {
  font-size: 1.625rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  letter-spacing: 2.5px;
}

.project-content p {
  letter-spacing: 0.8px;
  color: var(--white);
  line-height: 1.625;
  margin-top: 0.2rem;
}

.project-wrapp {
  position: relative;
}

.project-wrapp::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 20%);
}

.project-content {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 1;
}

section.project-sec {
  background: url(../images/lp.webp) center/cover fixed;
  padding: 9.375rem 2.5rem 7rem;
  z-index: 1;
}

section.project-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgb(236 242 251 / 33%);
  z-index: -1;
}

.projectslider {
  padding-bottom: 6rem;
}

.projectslider .swiper-pagination-bullet {
  height: 3px;
  border-radius: 0;
  width: 296px;
  margin: 0 !important;
}

.projectslider .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/* Project Sec Css End  */

/* Blog  Sec Css Start */

section.blog-sec {
  background-color: #d5dae2;
  padding: 9.375rem 0 7rem;
}

.blog-top {
  text-align: center;
  margin-bottom: 3.125rem;
}

.blog-top .mainHead {
  margin-top: 0.23rem;
}

figure.blog-img {
  position: relative;
  overflow: hidden;
}

figure.blog-img span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  letter-spacing: 2.64px;
  background-color: var(--primary);
  padding: 0.76rem 1.125rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.blog-wrapp ul li a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 2.64px;
}

.blog-wrapp ul {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1.75rem;
}

.blog-content h4 {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0.625rem 0 0.925rem;
}

.blog-content a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 2.64px;
}

.blog-content a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 37%;
  left: 0;
  background-color: var(--black);
  bottom: -2px;
}

/* Blog  Sec Css End  */

/* Testimonials Sec Css Start */

section.testimon-sec {
  background-color: #f3f8ff;
  padding: 18.375rem 0;
  z-index: 1;
}

.testimon-wrapp {
  display: flex;
  align-items: center;
  gap: 6.875rem;
}

figure.testi-imag {
  flex-shrink: 0;
}

.test-content {
  position: relative;
}

.test-content p {
  font-size: 1.375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 3.125rem;
}

ul.test-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

ul.test-stars li a i {
  color: #ffbe0b;
}

.test-content h5 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 3px;
  margin-top: 0.625rem;
}

.testimag {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

figure.test-sub {
  position: absolute;
  top: -5rem;
  left: 0;
}

section.testimon-sec .swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

section.testimon-sec .swiper-button-next span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 2px;
}

section.testimon-sec .swiper-button-next span i {
  font-size: 6.5rem;
}

section.testimon-sec .swiper-button-next {
  right: 6rem;
}

/* Testimonials Sec Css  End  */


/* Footer Sec Css Start */
footer {
  background: url(../images/footerbg.webp)center/cover no-repeat;
  position: relative;
  padding: 6rem 0 0 0;
}

footer h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #073C89;
  margin-bottom: 2rem;
}

ul.footer-list li a i {
  color: var(--primary);
}

ul.footer-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

ul.footer-list li+li {
  margin: 1.26rem 0;
}

ul.footer-list {
  margin-top: 2rem;
}

.social-wrapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-wrapp h3 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

ul.footer-social li a i {
  height: 35px;
  width: 35px;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 1px solid #073C89;
  color: #073C89;
}

ul.footer-link li a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

ul.footer-link li+li {
  margin: 0.625rem 0;
}

.footer-bottom {
  border-top: 1px solid #DDE9EE;
  padding: 1rem 0;
  text-align: center;
  margin-top: 5rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--black);
}

footer p {
  color: var(--black);
  line-height: 1.6;
}

.fopter-form .form-control {
  height: 3.125rem;
  background-color: var(--primary);
  outline: unset;
  border: 1px solid #E1E1E1;
  border-radius: unset;
  box-shadow: unset;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  color: #fff;
}

.fopter-form .form-group {
  position: relative;
  margin-bottom: 1.875rem;
}

.fopter-form .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3.125rem;
  display: grid;
  place-items: center;
  width: 3.125rem;
  color: var(--white);
}

ul.footer-social li a i:hover {
  background: #000;
  color: #fff;
  transition: 0.6s ease;
}

ul.footer-link li a:hover {
  color: var(--primary);
}

.navbar-nav .nav-item.active {
  color: #073c89 !important;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.themeBtn:hover {
  background: #000;
  color: #ffff;
}

.slideOne .themeBtn:hover {
  color: var(--primary);
  background: unset;
}

figure.blog-img:hover img {
  transform: scale(1.09);
  transition: 0.9s ease;
}

/* Footer Sec Css End  */


/* Inner Pages Css Start */
section.expert-sec.about-expert::before {
  background: unset;
}


.inner-banner h2 {
  font-size: 3.125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.inner-banner {
  background: #F3F8FF;
}

section.expert-sec.about-expert {
  padding: 11.375rem 0 11rem;
}

section.expert-sec.about-expert .exper-bottom {
  margin-top: 11.625rem;
}


.expert-img {
  text-align: center;
  border-right: 1px solid #ebebeb;
}

section.expert-sec.about-expert .rotate-img {
  right: -3rem;
  top: -3rem;
}

section.choose-sec.about-choose {
  background-color: unset;
  margin-top: 0;
}

.top-services {
  text-align: center;
  margin-bottom: 6.8125rem;
}

section.services-page {
  background-color: #F3F8FF;
  padding: 8.125rem 0 14.625rem;
}

.service-wrapp {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  margin: 1.25rem 0;
}

figure.service-img {
  flex-shrink: 0;
}

.service-content p {
  color: var(--black);
  line-height: 1.625;
  margin: 0.625rem 0 1.25rem;
  width: 54%;
}

.service-content h3 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.2;
}

/* section.services-page .row+.row .col-md-8:first-child .service-wrapp {
  flex-direction: row-reverse;
} */

section.services-page .row+.row {
  padding: 1.5rem 0;
}

.top-project {
  text-align: center;
  margin-bottom: 4rem;
}

.top-project p {
  color: var(--black);
  line-height: 1.625;
  width: 48%;
  margin: auto;
}

.top-project .mainHead {
  margin: 0.265rem 0;
}

.project-wrap {
  position: relative;
}

.project-wrap::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
}

.project-conetent h2 {
  font-size: 3.125rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 5px;
  margin-bottom: 0.325rem;
}

.project-conetent p {
  color: var(--white);
  line-height: 1.5625;
  width: 65%;
}

.project-conetent {
  position: absolute;
  bottom: 4.375rem;
  left: 5rem;
  z-index: 1;
}

section.project-page {
  padding: 6rem 6.25rem;
  background-color: #F3F8FF;
}


.project-wrappp {
  position: relative;
}

.project-wrappp::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
}

.project-wrappp .project-conetent p {
  width: 78%;
}

.project-wrappp .project-conetent {
  bottom: 45px;
}

figure.project-imag img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

section.project-page .row+.row {
  padding: 2.5rem 0 0;
}

.contact-content .mainHead {
  letter-spacing: 1px;
  text-transform: none;
  margin: 0.625rem 0 1.5rem;
}

.contact-content p {
  line-height: 1.5625;
  color: var(--black);
}

section.contact-sec {
  background-color: #F3F8FF;
  padding: 8.125rem 7.9375rem 8.125rem 8.75rem;
}

.contact-content h5 {
  margin-top: 3.125rem;
  font-size: 2rem;
  font-weight: 400;
  text-transform: capitalize;
}

.contact-content .subHead {
  margin: 0;
}

.list-wrapp h4 {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0.9825rem;
}

.list-main {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

ul.social-list li a {
  font-size: 1rem;
  font-weight: 400;
  color: #787878;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-control-secosnd::placeholder{
 color: #fff !important;
}
ul.social-list li a i {
  color: #5895B5;
}

ul.social-list li+li {
  margin: 0.625rem 0;
}

.contact-overlay {
  background-color: #073C89;
  padding: 6.0625rem 4.4375rem 6.0625rem 4.4375rem;
}

.contact-form label {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

.contact-form .form-control {
  height: 3rem;
  border-radius: unset;
  outline: unset;
  box-shadow: unset;
  font-size: 0.75rem;
  font-weight: 400;
  color: #787878;
  padding-left: 1rem;
}

.contact-form .form-control {
  font-size: 0.75rem;
  font-weight: 400;
  color: #787878;
  padding-left: 1rem;
}

.contact-form textarea.form-control {
  height: 9.375rem;
}

.contact-form button {
  margin-top: 1.5rem;
  background-color: var(--white);
  color: var(--black);
  border: unset;
}

.contact-form .form-group {
  margin-bottom: 2rem;
}

section.services-page .row .col-md-12:nth-child(even) .service-wrapp {
  flex-direction: row-reverse;
}

section.services-page .row .col-md-12:nth-child(even) .service-wrapp .service-content {
  text-align: end;
}

section.services-page .row .col-md-12:nth-child(even) .service-wrapp .service-content p {
  margin-left: auto;
}

section.choose-sec.about-choose figure.choose-img {
  margin: 0 0 0 -6rem;
}

figure.services-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.inner-imag img{
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.rotate-img img{
  width: 109px;
}
.main-imag img{
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.expert-img img{
  width: 150px;
}
.navbar-brand img{
  width: 330px;
  height: 110px;
  object-fit: cover;
}
footer img{
  width: 365px;
  height: 140px !important;
  object-fit: cover;

}
/* Inner Pages Css End */