@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

:root {
  --prim-color: #fb454c;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Oswald;
  font-weight: 400;
  line-height: 1.143;
  color: rgb(51, 51, 51);
  text-transform: uppercase;
}

p {
  margin-bottom: 16px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(153, 153, 153);
}

ol li,
ul li {
  color: rgb(153, 153, 153);
}

strong {
  display: block;
}

.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999;
}

@keyframes zoom {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 110%;
  }
}

@keyframes expand {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.homeBannerSlider .item {
  background-position: center;
  animation: zoom 10s infinite;
  animation-timing-function: linear;
  background-repeat: no-repeat;
  /* padding: 200px 0px; */
  height: 500px;
  position: relative;
}

.homeBannerSlider .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(138, 191, 206, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.homeBannerSlider .item .content {
  color: #fff;
  position: relative;
  z-index: 1;
}

.homeBannerSlider .item .content h1 {
  margin-top: 5px;
  color: #fff;
}

.homeBannerSlider .item .content p {
  font-weight: 200;
  color: #ededed;
}

.homeBannerSlider .item .content span {
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------------------------------------- */

.aboutUs {
  padding: 50px 0;
}

.aboutUs .imgWrapper {
  width: 100%;
  height: 410px;
  border-radius: 5px;
  overflow: hidden;
}

.aboutUs .imgWrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.aboutUs h2 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.aboutUs .aboutPoint {
  padding: 35px;
  text-align: center;
  color: #fff;
}

.aboutUs .aboutPoint .iconWrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin: auto auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 54px;
}

.aboutUs .aboutPoint h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.aboutUs .aboutPoint p {
  line-height: 25px;
  margin-bottom: 0;
  color: #fff;
}

/* ---------------------------------------- */

.services {
  /* margin-top: 20px; */
  background-image: url("../images/services.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 50px 0 0;
}

.services img {
  width: 100%;
  height: 350px;
  border-radius: 5px;
}

.services h3 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.services p {
  font-weight: 200;
  color: #ffffffbf;
}

.services .heading {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 60px;
}

.services .heading h2 {
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.services .heading h2::after {
  content: "";
  background-color: var(--prim-color);
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50px;
  left: 0;
}

.services .heading p {
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

/* ---------------------------------------- */

.counter {
  background: #60190f;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.counter .heading {
  margin-bottom: 50px;
}

.counter .heading h2 {
  font-weight: 600;
  color: #fff;
}

.counter .heading p {
  color: #ffffffa3;
}

.counter h3 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}

.counter .col-xl-3 p {
  color: #f79007;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* ---------------------------------------- */

.parallaxCta {
  padding: 50px 0;
  background: linear-gradient(#ffffff00, #20202038), url(../images/cta.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}
.parallaxCta::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0e0e0e91;
  left: 0;
  top: 0;
}
.parallaxCta .container {
  position: relative;
  z-index: 2;
}
.parallaxCta span {
  font-size: 18px;
  font-weight: 400;
  font-family: Inter;
  letter-spacing: 2px;
}

.parallaxCta h2 {
  margin-top: 20px;
  color: #fff;
}

/* ---------------------------------------- */

/*footer section code start*/
footer {
  padding: 50px 0px;
  background: #000;
  position: relative;
  z-index: 1;
}

footer .information_box .content_box i {
  padding: 12px 12px;
  color: #fff;
  background: #4ade80;
  font-size: 14px;
  border-radius: 100px;
}

footer .information_box .content_box i.last_con {
  padding: 12px 13px;
}

footer .information_box .content_box a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}

footer .information_box .content_box {
  display: flex;
  margin: 0px 0px 10px 0px;
}

footer .information_box .content_box .text_box {
  margin: 2px 0px 0px 11px;
}

footer .quick_linksbox {
  width: 90%;
  margin: 0 auto;
}

footer .quick_linksbox h5 {
  color: #fff;
  position: relative;
  margin: 0px 0px 40px 0px;
  font-size: 22px;
}

footer .quick_linksbox h5::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 0px;
  width: 20px;
  height: 5px;
  border-radius: 100px;
  background: var(--prim-color);
}

footer .quick_linksbox h5::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 24px;
  width: 45px;
  height: 5px;
  border-radius: 100px;
  background: #fff;
}

footer .quick_linksbox ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

footer .quick_linksbox ul li a {
  color: #fff;
  padding: 0px 0px 6px 0px;
  display: inline-block;
  transition: 1s;
  text-align: center;
  font-size: 14px;

  text-decoration: none;
}

footer .quick_linksbox ul li a i {
  padding: 0px 5px 0px 0px;
  font-size: 10px;
  color: var(--prim-color);
}

footer .quick_linksbox ul li a:hover {
  padding-left: 5px;
  transition: 1s;
  color: #f8ae56;
}

footer .foter_logobox p {
  color: #fff;
  font-size: 14px;
  padding-right: 28px;
}

/* ---------------------------------------- */

.commonBtn {
  display: block;
  width: max-content;

  padding: 10px 15px;
  font-size: 12px;
  font-family: roboto;
  text-transform: uppercase;
  background-color: var(--prim-color);
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
  border-radius: 5px;
  margin-top: 25px;

  transition: 0.3s ease-in-out;
}

.commonBtn:hover {
  background: #454545;
}

/* ---------------------------------------- */

.navbar-brand img {
  width: 155px;
}

.nav-item {
  margin-right: 10px;
}

.nav-link {
  padding: 10px;
  /* text-transform: uppercase; */
  font-weight: 500;
  font-family: "Roboto";
  color: #595970;
  font-size: 14px;
}

.nav-link.active {
  color: var(--prim-color) !important;
  border-bottom: 2px solid var(--prim-color);
}

/* ---------------------------------------- */

.commonBanner {
  background-image: url("../images/contact.webp");
  background-attachment: fixed;
  background-position: center -200px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
}

.commonBanner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.commonBanner .content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.commonBanner .content h1,
.commonBanner .content p {
  color: #fff;
}

/* ---------------------------------------- */

.splContent {
  margin: 50px 0;
}

.splContent .content {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 35px;
}

.splContent .splImg {
  position: relative;
  background-color: transparent;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 17px;
  margin-left: -40px;

  width: 100%;
  height: 400px;
}

.splContent .splImg .imgWrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.splContent .splImg .imgWrapper.small {
  position: absolute;
  bottom: 25px;
  right: 15px;

  width: 150px;
  height: 150px;
  animation: expand 5s infinite;
}

.splContent .splImg .imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------- */
.commonContent .commonFiller {
  background-color: var(--prim-color);
  width: 100%;
  height: 100%;
  position: relative;
}

.commonContent .commonFiller .imgWrapper {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 90%;
  height: 60%;
  z-index: 2;
  border: 10px solid #fff;
  border-right: none;
}

.commonContent .commonFiller .imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commonContent .content {
}

.commonContent .content p {
}

.commonContent .content ul {
  list-style: none;
  padding: 0;
}

.commonContent .content ul li {
  margin-bottom: 25px;
}

.commonContent .content ul li h3 {
  margin-bottom: 15px;
}

.commonContent .content ol {
  list-style: circle;
}

/* ---------------------------------------- */
.ourTeam {
  margin-top: 30px;
}

.ourTeam .teamMember {
  background: rgb(242, 156, 38);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 20px;
}

.ourTeam .teamMember p {
  color: #fff;
  margin-bottom: 0;
}

.ourTeam .teamMember .imgWrapper {
  width: 140px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 5px solid #fff;
}

.ourTeam .teamMember .imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70%;
}

.ourTeam .teamMember h4 {
  font-weight: 700;
}

.navbar-nav .dropdown-menu {
  border-radius: 0;
  margin: 0;
}

.contactBox {
  margin: 20px 20px 20px 20px;
  padding: 40px 40px 40px 40px;
  background-color: #ffffff;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 40px 100px 0px #cccae1;
}

form .formItem {
  border: 2px solid #dfdfe2;
  /* height: 40px; */
  font-size: 16px;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 15px;
}

/* ---------------------------------------- */
@media only screen and (max-width: 991px) {
  .services img {
    height: 200px;
  }

  .aboutUs .imgWrapper {
    height: 230px;
  }

  .homeBannerSlider .item {
    height: auto;
    padding: 20px 0;
    background-size: cover !important;
  }

  .splContent .splImg {
    width: 100%;
    margin-left: 0;
  }
}
