@import url("https://fonts.googleapis.com/css2?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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --primary: #03a5ee;
  --secondary: #f05326;
}

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

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

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

/* How to add New font */

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

section {
  position: relative;
}

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

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

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

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;
}

/* loader */

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

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* loader */

/* btn css */

.themeBtn {
  background: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 1.04em 1.96em;
  line-height: normal;
}

.themeBtn:hover {
  background: var(--secondary);
  color: var(--white);
}

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

/* btn css */

/* navigation css */

header {
  position: relative;
  z-index: 22;
}

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

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary);
}

.an-navbar {
  width: 100%;
  padding: 1.35rem 0;
  background: #fff;
}

.navbar-brand > img {
  width: 225px;
}

/* navigation css */

/* slider css */

.main-slider {
  height: 100vh;
  overflow: hidden;
}

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

.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 {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

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

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

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.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: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}

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

/* slider css */

.slideOne .themeBtn {
  font-size: 2rem;
  font-weight: 500;
  padding: 15px 26px;
}

.topbar {
  background: #03a5ee;
  padding: 10px;
}

.topbar p {
  color: var(--white);
}

ul.rightlist {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.rightlist li a {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

ul.rightlist li a i {
  margin-right: 8px;
}

ul.rightlist li a span {
  font-size: 1rem;
}

ul.leftlist {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.leftlist li a i {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

ul.leftlist li a span {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

ul.leftlist li a i:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.mainHead {
  font-size: 4rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #000;
}

/* reimagesec css start  */

section.reimageSection {
  padding: 5rem 0;
  background: #f1f2f2;
  z-index: 1;
}

.imagecntnt h3 {
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #000012;
}

.imagecntnt p {
  color: #000012;
  font-size: 1.1rem;
}

.row.align-items-center.logore p {
  font-size: 1.75rem;
  margin-top: 1rem;
  color: #000012;
}

.arow {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0px;
  z-index: 0;
  text-align: center;
}

section.reimageSection .row + .row {
  margin-top: 7.5rem;
}

section.reimageSection .logore {
  margin-top: 18rem !important;
}

.arow:before {
  content: "";
  position: absolute;
  left: 7px;
  right: 0;
  top: -40px;
  width: 38px;
  height: 38px;
  box-shadow: 0 0 11px rgb(0 0 0 / 16%);
  border-radius: 50%;
  margin: auto;
  background-color: var(--primary);
  border: 8px solid var(--white);
  z-index: 1;
}

.arow:after {
  content: "\f063";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
  right: 6px;
  bottom: -29px;
  margin: auto;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 500;
}

/* reimagesec css end  */

/* offersection css start  */

section.offerSection {
  padding: 5rem 0;
}

.offertopcntnt h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #000012;
}

.offertopcntnt p {
  color: #000012;
}

.offercntnt h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1rem;
  line-height: 1.5;
}

.offercntnt p {
  font-size: 1.125rem;
  color: #000012;
  margin-bottom: 2.5rem;
}

.offercntnt {
  padding: 12px 16px;
  position: relative;
  height: 260px;
  overflow-y: auto;
}

.offertopcntnt {
  margin-bottom: 3rem;
}

.offferslider {
  padding-bottom: 2rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  transition: all 300ms ease-in-out;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -55px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -55px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--secondary);
}

.offferslider .offercntnt p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* offersection css end  */

/* contactsec css start  */

.cntctInfo {
  background-color: #f1f2f2;
  padding: 5rem 0;
}

.cntctSet .contInfo {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 2rem 0;
}

.cntctSet .contInfo li a {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

.cntctSet .contInfo li strong {
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  font-size: 16px;
}

.cntctSet .contInfo li a span {
  display: block;
  text-transform: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}

.cntctInfo {
  padding: 5rem 0;
}

.estimate {
  margin: 7rem 0 0;
}

.estimate a {
  background: transparent;
  color: var(--white);
}

.estimate a:hover {
  background: var(--white);
  color: var(--theme-color);
}

.estimateForm {
  padding: 2rem;
  background: #000;
  box-shadow: 0px 3px 20px rgb(0 0 0 / 5%);
  border-right: 11px solid #f05326;
}

.estimateForm label {
  display: block;
  font-size: 0.9375rem;
  color: #636363;
  font-weight: 500;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.estimateForm input[type="text"] {
  all: unset;
  border: 1px solid #dedede;
  width: 100%;
  height: 66px;
  font-weight: 600;
  margin: 0 0 2rem;
  color: #fff;
}

.estimateForm textarea {
  all: unset;
  border: 1px solid #c7c7c7;
  width: 100%;
  height: 191px;
  font-weight: 600;
  margin: 0.25rem 0 2rem;
  color: #fff;
}

.estimateForm .themeBtn {
  /* display: table; */
  border: unset;
  /* margin-left: auto; */
}

button.themeBtn .submitBtn {
  padding: 1rem 2rem;
}

.estimateForm input::placeholder {
  color: #fff;
}

.cntctSet {
  margin-left: 3rem;
}

button.themeBtn.submitBtn i {
  margin-left: 10px;
  font-size: 1.2rem;
}

.estimateForm input::placeholder {
  color: #828285;
  padding-left: 1rem;
}

.estimateForm textarea::placeholder {
  color: #828285;
  padding-left: 1rem;
  padding-top: 1rem;
}

.bg-transparent {
  background-color: transparent !important;
}

ul.contInfo li a i {
  background: var(--primary);
  width: 60px;
  display: grid;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  margin-right: 11px;
  box-shadow: 0 0 0 10px rgb(3 165 238 / 30%);
}

.cntctSet h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

ul.leftlist.cntctleftlist li a {
  border-color: #000;
}

ul.leftlist.cntctleftlist li a i {
  border-color: #000;
  color: #000;
  width: 54px;
  height: 56px;
  font-size: 17px;
}

ul.leftlist.cntctleftlist li a i:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cntctSet .mainHead {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

form.estimateForm h2 {
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 600;
}

form.estimateForm label {
  color: #fff;
  font-size: 1rem;
  text-transform: initial;
  font-weight: 400;
}

ul.contInfo li + li {
  border-top: 1px dashed #707070;
  padding-top: 2rem;
}

/* contactsec css end  */

/* Footer Css Start */

footer {
  background: #0d0d0d;
  padding-top: 5rem;
}

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

footer h3 {
  font-size: 1.625rem;
  color: var(--white);
  padding-bottom: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.links li a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.links li + li {
  border-top: 1px dashed rgb(255 255 255 / 50%);
  padding-top: 10px;
  margin-top: 10px;
}

.contactInfom li a {
  color: var(--white);
  word-wrap: break-word;
}

.contactInfom li a span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 3px;
}

.contactInfom li + li {
  border-top: 1px dashed rgb(255 255 255 / 50%);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.copyRight p {
  margin: 0;
  color: var(--white);
}

.copyRight {
  border-top: 1px solid rgb(223 223 224 / 50%);
  margin-top: 4rem;
  padding: 1.2rem 0;
}

.footerPara {
  margin: 2.5rem 0 0;
  color: var(--white);
}

.paracntnt p {
  color: #fff;
  margin-top: 2rem;
}

/* Footer Css End */

/* Inner Pages Css Start */

.innerBanner {
  position: relative;
}

.innerBanner img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.innerBanner .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.innerBanner .overlay h2 {
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
}

.subHeading {
  font-size: 2rem;
  color: #000012;
  text-transform: capitalize;
  font-weight: 600;
}

.smrtText p {
  color: #000012;
}

.smrtText h4 {
  font-size: 1.375rem;
  text-transform: capitalize;
  color: #000012;
  font-weight: 600;
}

.smrtText ul li a {
  color: #000012;
  font-size: 1.25rem;
  font-weight: 500;
}

.smrtText ul {
  list-style: disc;
  color: var(--primary);
  list-style-position: inside;
}

.smrtText ul li + li {
  padding-top: 6px;
}

.smrtImg img {
  border-radius: 20px;
}

.smrtImg {
  position: relative;
}

.smrtImg:before {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 20px;
  left: -1rem;
  top: 1rem;
}

.smrtInner {
  background: #f1f2f2;
  z-index: -1;
  padding: 6rem 0;
}

.secHeadings {
  font-size: 2rem;
  text-transform: capitalize;
  color: #000012;
  font-weight: 600;
}

.caseSect .offerwrap figure img {
  width: 100%;
}

.offerwrap {
  height: 100%;
  border: 1px solid #cecece;
}

.caseSect .row .offerwrap {
  height: 100%;
  border: 1px solid #cecece;
}

.caseSect .offerwrap {
  text-align: center;
}

/* .caseSect .offerwrap h3 {
  font-size: 1.875rem;
} */

.caseSect .offerwrap p {
  margin-bottom: 6px;
}

.caseSect {
  padding: 5rem 0;
}

.smrtTwo .smrtImg:before {
  background: var(--secondary);
}

.caseSecond .offerwrap {
  text-align: left;
}

.enviromntSect .smrtImg:before {
  background: #7db606;
}

.innerBanner .overlay p {
  color: var(--white);
  width: 68%;
}

.digitalText p {
  color: var(--black);
  padding-bottom: 5px;
}

.digitalText p span {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1.25rem;
}

.digitalText > img {
  width: 500px;
}

.digitalInner figure img {
  border-radius: 20px;
}

.digitalInner {
  padding: 6rem 0;
}

.digitalInner .row + .row {
  padding-top: 5rem;
}

.aboutInner p {
  font-size: 1.125rem;
}

.aboutInner .row + .row {
  padding-top: 3rem;
}

.ptnr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-top: 1.5rem;
}

.partnerSect {
  background: #f1f2f2;
  padding: 4rem 0;
}

.teaminner {
  padding: 5rem 0;
}

.teaminner .row {
  margin-top: 3rem;
}

.team-card {
  border: 1px solid #d1d1d1;
}

.team-card figure img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 100%;
  margin: 1rem auto 0;
  display: block;
  object-position: top;
}

.teamText {
  padding: 2rem;
  height: 350px;
  overflow: auto;
}

.teamText .subHeading {
  margin-bottom: 0;
}

.teamText .tagline {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.teamText .social li {
  font-size: 22px;
}

.teamText .social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.teamText .social a {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid #0c0c0c;
  color: var(--black);
  border-radius: 50%;
  font-size: 12px;
}

.teamText .social a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

/* Contact Sec Css Start */

.contactSec {
  background: #f5f5f5;
  padding: 8rem 0 5rem 0;
}

.contactHead p {
  color: #101c2a;
  font-size: 1.25rem;
}

.contactForm .form-group .form-control {
  height: 75px;
  border-radius: unset;
  border: unset;
  padding-left: 1.5rem;
}

.contactForm .form-group .form-control::placeholder {
  font-weight: 500;
  color: #8b93a8;
}

.contactForm .form-group textarea {
  height: 200px !important;
  padding-top: 1.5rem;
}

.contactForm .form-group {
  margin-bottom: 1.5rem;
}

.contactBox figure {
  background: var(--primary);
  border: 1px dashed var(--white);
  color: var(--white);
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 3rem;
}

.contactBox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contactBox a {
  width: calc(100% - 140px);
  color: #101c2a;
  font-size: 1.25rem;
}

.contactBox a span {
  display: grid;
  font-size: 1.375rem;
  font-weight: 500;
}

.contactBox + .contactBox {
  padding-top: 2rem;
  border-top: 1px solid #4f6788;
  margin-top: 2rem;
  width: 90%;
}

.heading2 {
  font-size: 1.875rem;
}
.arow img {
  width: 44%;
}

/* Contact Sec Css End */

/* Inner Pages Css End */
