:root {
  --white: #fff;
  --black: #000;
  --primary: #c77905;
  --secondary: #1d1d47;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Poppins", sans-serif;
}

.aic {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.jsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

img {
  max-width: 100%;
  height: auto;
}

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

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.navbar-brand img {
  transition: 0.3s ease-in-out;
}
header {
  background: var(--white);
  padding-bottom: 1rem;
}
header .top {
  background: var(--secondary);
  position: relative;
}
header .top:before {
  content: "";
  width: 44%;
  height: 36px;
  background: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
}
header .top:after {
  content: "";
  width: 126px;
  height: 36px;
  background: url(../images/topRowShape.jpg) center/100% 100% no-repeat;
  position: absolute;
  bottom: 0;
  right: 56%;
}
header .top ul {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .top ul li {
  flex: 1;
}
header .top ul a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 0;
  width: 100%;
  justify-content: center;
}
header .top ul a:hover {
  background-color: var(--primary);
}
header .logo {
  margin-top: -24px;
  margin-bottom: 0;
}

a.logo img {
  max-width: 262px;
  margin-left: -7rem;
}


header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  padding: 0;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--primary);
  transform-origin: center;
  transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 2rem;
}
header .form-inline .themeBtn {
  background-color: #2b3990;
  border-color: #2b3990;
}
header .form-inline .themeBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}
.main-slider h2 {
  color: var(--white);
  line-height: 1;
  font-size: 4.375rem;
  font-weight: 600;
}
.main-slider h2 span {
  display: block;
  font-size: 1.875rem;
}
.main-slider h3 {
  color: var(--white);
  line-height: 1;
  font-size: 3.75rem;
  font-weight: 600;
}
.main-slider p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
}

.socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.socialIo li a {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  line-height: 44px;
  font-size: 18px;
  display: inline-block;
  color: var(--black);
  border: 1px solid var(--black);
}
.socialIo li a:hover {
  background-color: var(--black);
  color: var(--white);
}

.themeBtn {
  color: var(--white);
  border-radius: 10px;
  display: inline-block;
  padding: 0.75em 1.25em;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0.5rem 0;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  background-color: var(--primary);
}
.themeBtn:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.bottomWrap {
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 5px 35px 0px rgb(197 197 197 / 20%);
  /* height: 182px; */
  margin-top: -5rem;
  z-index: 10;
  position: relative;
  padding: 1.5rem 2.5rem;
}
.iconBox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.iconBox .imgWrap {
  height: 6.875rem;
  width: 6.875rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: grid;
  transition: 0.3s ease-in-out;
  place-items: center;
}
.iconBox h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.iconBox:hover .imgWrap {
  background-color: var(--primary);
}
.iconBox:hover .imgWrap img {
  filter: brightness(100) invert(0);
}
.iconBox:hover h3 {
  color: var(--primary);
}

.secHeading {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: capitalize;
}

/* About Section Start  */
.aboutSec {
  padding-bottom: 1rem;
}
.aboutSec .aboutShape {
  position: absolute;
  left: 0;
  bottom: 0;
}
.aboutSec p {
  font-size: 1.125rem;
  line-height: 2;
}
.aboutImg .aboutIco {
  display: block;
    border-radius: 50%;
    border: 5px solid var(--white);
    margin-top: -16rem;
    margin-left: -4.5rem;
    max-width: 557px;}
/* About Section End  */

.ctaBnnr {
  background: url(../images/ctaBnnr.jpg) center/cover no-repeat;
  padding: 10rem 0;
}
.ctaBnnr .secHeading {
  color: var(--white);
  font-weight: 600;
}
.ctaBnnr .secHeading a {
  color: var(--white);
}
.ctaBnnr p {
  color: var(--white);
  font-size: 2.125rem;
  font-weight: 500;
}

/* serviceSec */
.serviceSec {
  background: url(../images/serviceBg.jpg) center/cover no-repeat;
}

.servCard {
  overflow: hidden;
  border-radius: 10px;
}
.servCard .imgWrap {
  display: block;
}
.servCard .content {
  padding: 1.5rem 2rem;
  transition: 0.3s ease-in-out;
  border-bottom: 5px solid var(--primary);
}
.servCard .content a {
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 700;
  display: block;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.servCard:hover .content {
  background-color: var(--primary);
}
.servCard:hover .content a {
  color: var(--white);
}
.slick-next::before,
.slick-prev::before {
  display: none;
}

.slick-next,
.slick-prev {
  height: 3.75rem;
  width: 3.75rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  z-index: 1;
  color: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--primary);
}
.slick-next {
  right: -5rem;
}
.slick-prev {
  left: -5rem;
}

.slick-next:hover,
.slick-prev:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* videoSec */
.videoSec {
  z-index: 1;
  background: url(../images/videoBg.jpg) top center/auto no-repeat;
}
.videoSec p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
}
.videoSec .secHeading {
  color: var(--white);
}
.videoImg {
  position: relative;
  display: block;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 10px;
}
.videoImg img {
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.videoImg span {
  display: inline-block;
  height: 6rem;
  width: 6rem;
  background-color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.videoImg:hover img {
  transform: scale(1.25) rotate(-3deg);
}

/* teamSection */
.teamSection {
  padding-top: 22rem;
  margin-top: -22rem;
  background: url(../images/teamBg.jpg) top center/auto no-repeat;
}

/* Team Card */
.teamCard {
  border: 1px solid var(--white);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
  padding: 0.5rem;
  box-shadow: 0px 4px 125px 0px rgba(200, 200, 200, 0.8);
}
.teamCard .imgWrap img {
  border-radius: 10px;
}
.teamCard h3 {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
}

.teamCard p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.teamCard .content {
  padding: 1rem;
  transition: 0.3s ease-in-out;
}

.teamCard .socialIo {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.teamCard .socialIo li:nth-child(1) a {
  transition: 0.4s ease-in-out;
}

.teamCard .socialIo li:nth-child(2) a {
  transition: 0.5s ease-in-out;
}

.teamCard .socialIo li:nth-child(3) a {
  transition: 0.6s ease-in-out;
}

.teamCard .socialIo li:nth-child(4) a {
  transition: 0.7s ease-in-out;
}

.teamCard .socialIo li a {
  color: var(--primary);
  height: 2.45rem;
  width: 2.45rem;
  font-size: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: scale(0);
  border: none;
  transform-origin: bottom;
  background-color: var(--white);
  border: 1px solid var(--primary);
}

.teamCard .socialIo li a:hover {
  color: var(--white);
  background-color: var(--primary);
}

.teamCard:hover .socialIo li a {
  transform: scale(1);
}

.ctaBnnr.consultSec {
  padding: 6rem 0;
  background: url(../images/consltBg.jpg) center/cover no-repeat;
}
.ctaBnnr.consultSec h3 {
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}
/* contactSection */
.contactSection {
  background: url(../images/contactBg.jpg) center/cover no-repeat;
}
.ctaBtn {
  background: var(--secondary);
  padding: 2em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 90%;
  margin-left: auto;
  margin-top: -10rem;
  position: relative;
}
.ctaBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 3rem;
  color: var(--white);
  font-weight: 600;
}
.ctaBtn i {
  height: 4rem;
  width: 4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
  border: 2px solid var(--white);
}
.contactSection figure img {
  border-radius: 10px;
}
.contactSection form {
  margin-top: 3rem;
}
.contactSection .form-group .form-control {
  border-radius: 5px;
  border: 1px solid #e8ecef;
  height: 70px;
  width: 100%;
  background-color: #f4f9fc;
}
.contactSection .form-group textarea.form-control {
  height: 190px;
  width: 100%;
}

/* Begin: footer */

footer {
  background: var(--secondary);
  padding-top: 6em;
  position: relative;
}

footer h3 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

footer p {
  color: var(--white);
  font-size: 1rem;
  margin: 1.5rem 0 0;
  font-weight: 600;
}

footer .links,
footer .contInfo {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 1.3rem 0;
}

footer .contInfo {
  gap: 2rem 0;
}

footer .links li a,
footer .contInfo li a {
  font-weight: 400;
  color: var(--white);
  font-size: 1.125rem;
  text-transform: uppercase;
}

footer .contInfo li a {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
}

footer .contInfo li a span {
  display: block;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.5;
}

footer .contInfo li a strong {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
}

footer .links li a:hover,
footer .links li a:focus {
  color: var(--primary);
}

.copyRight {
  border-top: 1px solid rgb(112 112 112/50%);
  padding: 2em 0;
  margin-top: 5em;
  align-items: center;
}

.copyRight p {
  margin: 0;
  font-family: "oswald";
  font-size: 1.125rem;
  font-weight: 200;
}

.footerSocial {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
}

.footerSocial a {
  font-size: 2.5rem;
  color: var(--white);
}

.footerSocial a:hover {
  color: var(--primary);
}
.newsleter {
  display: flex;
  align-items: center;
  background-color: var(--white);
  height: 60px;
  width: 100%;
  padding: 0;
}
.newsleter input {
  background-color: transparent;
  border: 0;
  width: 80%;
  height: 100%;
}
.newsleter i {
  color: #a6b1be;
  margin: 0 0.5rem;
  display: inline-block;
  font-size: 1.25rem;
}
.newsleter button {
  background: var(--primary);
  border: 0;
  color: var(--white);
  height: 60px;
  width: 50px;
  display: grid;
  place-items: center;
}
.newsleter button i {
  color: var(--white);
}
/* END: footer */

.transport {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.transport img {
  border-radius: 10px;
}

.serviceSection .iconCopy {
  justify-content: end;
}
.Rightcopy ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Rightcopy ul li p {
  margin: 0;
}

.Rightcopy ul li a {
  border-width: 2px;
  border-color: #707070;
  border-style: solid;
  border-radius: 50%;
  background-color: #707070;
  width: 52px;
  height: 51px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.Rightcopy ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.Rightcopy ul li a:hover {
  background: #c77905;
  color: #fff;
  border-color: #707070;
}

.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.serviceSection p {
  color: #000;
  font-size: 1rem;
}

.serviceSection figure img {
  border-radius: 10px;
}

.listCntct {
  text-align: center;
}

.listCntct figure {
  width: 168px;
  height: 168px;
  background: #1d1d47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.listCntct figure:before {
  display: none;
}

.listCntct figure img {
  opacity: 1;
}

.listCntct a {
  font-size: 22px;
  color: #8e8e8e;
  text-decoration: none;
  font-weight: 400;
}

.listCntct span {
  font-size: 22px;
  color: #8e8e8e;
  text-decoration: none;
  font-weight: 400;
}
.contactSection.contactPAge {
  background: none;
}

.main-slider.innerBnr h2 {
  text-align: center;
}


