@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
  padding: 1rem 0.625rem;
  background-color: #fff;
  background-image: url("../images/arpw-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.white-btn {
  color: var(--Red, #8d211a);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 3.75rem;
  background: var(--White, #fff);
  padding: 1.2rem 2.0625rem;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
.white-btn img {
  max-width: 0.6875rem;
  max-height: 0.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.white-btn:hover {
  color: #8d211a;
}

.red-btn {
  color: #fff;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 3.75rem;
  background: var(--Red, #8d211a);
  padding: 1.2rem 2.0625rem;
  border: 1px solid #8d211a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
.red-btn img {
  max-width: 0.6875rem;
  max-height: 0.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.red-btn:hover {
  color: #fff;
}

.border-btn {
  color: #fff;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 3.75rem;
  background: transparent;
  padding: 1.2rem 2.0625rem;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: all 0.3s ease-in-out;
}
.border-btn img {
  max-width: 0.6875rem;
  max-height: 0.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.border-btn:hover {
  background-color: #8d211a;
  border: 1px solid #8d211a;
  color: #fff;
}

h2 {
  color: var(--Red, #8d211a);
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3rem;
  /* 120% */
  text-transform: capitalize;
  margin: 0;
}

p {
  color: #505050;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin: 0;
}

header button {
  display: none;
}
header .header-top {
  padding: 0.56rem 0;
  background-color: #8d211a;
}
header .header-top .flex-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
header .header-top .mail-wraper,
header .header-top .number-wraper {
  display: block;
}
header .header-top .mail-wraper a,
header .header-top .number-wraper a {
  display: flex;
  align-items: center;
  gap: 0.37rem;
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
header .header-top .mail-wraper a img,
header .header-top .number-wraper a img {
  max-width: 1rem;
  max-height: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-bottom {
  padding: 0.87rem 0;
  background-color: #ffffff;
}
header .header-bottom .flex-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
header .header-bottom .logo-wraper {
  display: block;
  position: relative;
}
header .header-bottom .logo-wraper a {
  display: table;
}
header .header-bottom .logo-wraper a img {
  max-width: 22.125rem;
  max-height: 4.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  header .header-bottom nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  header .header-bottom nav ul li {
    color: var(--Black, #090506);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  header .header-bottom nav ul li.current-menu-item a {
    color: var(--Red, #8d211a);
  }
  header .header-bottom nav ul li a {
    padding: 0.625rem;
    color: var(--Black, #090506);
    transition: all 0.3s ease-in-out;
  }
  header .header-bottom nav ul li a:hover {
    color: var(--Red, #8d211a);
  }
}

footer {
  padding: 3.25rem 0 1.87rem;
  background: #252525;
  position: relative;
}
footer::after {
  content: "";
  width: 100%;
  height: 4.625rem;
  background-image: url(../images/footer-shape.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  top: -4.625rem;
  left: 0;
  display: none;
}
footer img.shape-img {
  width: 100%;
  height: 4.625rem;
  position: absolute;
  top: -4.625rem;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .flex-wraper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
footer .flex-wraper .left-content-wraper {
  max-width: 33.25rem;
  width: 100%;
}
footer .flex-wraper .left-content-wraper a.logo {
  display: table;
}
footer .flex-wraper .left-content-wraper a.logo img {
  max-width: 21.875rem;
  max-height: 5.875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .flex-wraper .left-content-wraper p {
  min-height: 6.9rem;
  color: #b9b9b9;
  margin: 1.25rem 0 0;
}
footer .flex-wraper .right-content-wraper {
  display: grid;
  grid-template-columns: 6.3125rem 14rem;
  gap: 5.94rem;
}
footer .flex-wraper .right-content-wraper .menu-item h5 {
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 133.333% */
  margin-bottom: 1.88rem;
}
footer .flex-wraper .right-content-wraper .menu-item ul.menu li {
  color: #b9b9b9;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0.62rem;
}
footer .flex-wraper .right-content-wraper .menu-item ul.menu li:last-child {
  margin: 0;
}
footer .flex-wraper .right-content-wraper .menu-item ul.menu li a {
  color: #b9b9b9;
}
footer .flex-wraper .right-content-wraper .menu-item ul.social-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .flex-wraper .right-content-wraper .menu-item ul.social-icon li {
  display: table;
}
footer .flex-wraper .right-content-wraper .menu-item ul.social-icon li a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1.375rem;
  background: var(--Red, #8d211a);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .flex-wraper .right-content-wraper .menu-item ul.social-icon li a i {
  font-size: 1.5625rem;
  color: #ffffff;
}
footer .copyright {
  padding-top: 1.88rem;
  margin-top: 1.88rem;
  border-top: 1px solid #5b5b5b;
}
footer .copyright h6 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin: 0;
}

section.home-banner {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
section.home-banner::before {
  content: "";
  width: 56.0625rem;
  height: 100%;
  background: linear-gradient(270deg, rgba(1, 31, 34, 0) 0%, rgba(1, 31, 34, 0.37) 27.56%, rgba(1, 31, 34, 0.67) 63.78%, #011f22 100%);
  position: absolute;
  top: 0;
  left: 0;
}
section.home-banner::after {
  content: "";
  width: 100%;
  height: 20.875rem;
  background-image: url(../images/h-banner-shape.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.home-banner .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 9;
}
section.home-banner .video-wraper {
  width: 100%;
  height: 47.75rem;
}
section.home-banner .video-wraper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-banner h1 {
  color: var(--White, #fff);
  font-family: Oswald;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.875rem;
  /* 124% */
  margin-bottom: 1.5rem;
}
section.home-banner p {
  color: #fff;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 1.88rem;
}
section.home-banner .btn-wraper {
  display: flex;
  align-items: center;
  gap: 1.88rem;
}

section.home-sec2 {
  padding: 4.6rem 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
section.home-sec2 img.bg-img {
  position: absolute;
  top: 13.6%;
  max-width: 91rem;
  max-height: 49.625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
section.home-sec2 h2 {
  max-width: 48.75rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
section.home-sec2 img.circle-shape {
  width: 100%;
  max-height: 39.375rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.home-sec2 h3 {
  color: var(--Black, #090506);
  font-family: Oswald;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.62rem;
}
section.home-sec2 p {
  margin-bottom: 1.88rem;
}

section.home-sec3 {
  padding: 5rem 0 6.5rem;
  position: relative;
  background-color: #eefdff;
}
section.home-sec3 .row {
  gap: 1.88rem 0;
}
section.home-sec3::after {
  content: "";
  width: 100%;
  height: 7.2rem;
  background-image: url(../images/assignments-shape.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
section.home-sec3 h2 {
  text-align: center;
  margin-bottom: 0.62rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
.service-card:hover::after {
  top: 0;
}
.service-card:hover .text-wraper h4 {
  margin-bottom: 0.63rem;
}
.service-card:hover .text-wraper p {
  min-height: 4.0625rem;
}
.service-card:hover span.arow {
  background-color: #8d211a;
}
.service-card:hover span.arow img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(243deg) brightness(111%) contrast(101%);
}
.service-card:hover img.service-img {
  transform: scale(1.1);
}
.service-card img.service-img {
  max-width: 100%;
  max-height: 32.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.service-card a.pabs {
  position: absolute;
  inset: 0;
  z-index: 99;
}
.service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
  position: absolute;
  top: 15.87rem;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.service-card span.arow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: all 0.3s ease-in-out;
}
.service-card span.arow img {
  max-width: 0.6875rem;
  max-height: 0.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.service-card .text-wraper {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
.service-card .text-wraper h4 {
  color: #fff;
  font-family: Oswald;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.service-card .text-wraper p {
  color: #fff;
  line-height: 1.375rem;
  /* 137.5% */
  margin: 0;
  min-height: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

section.home-sec4 {
  padding: 6.25rem 0;
}
section.home-sec4 h2 {
  max-width: 26.125rem;
  margin-bottom: 1.87rem;
  line-height: 3.5rem;
}
section.home-sec4 .white-box {
  border-radius: 0.625rem;
  background: var(--White, #fff);
  box-shadow: 4px 0 30px 0 rgba(188, 188, 215, 0.2), 362px 164px 111px 0 rgba(188, 188, 215, 0), 231px 105px 102px 0 rgba(188, 188, 215, 0.01), 130px 59px 86px 0 rgba(188, 188, 215, 0.05), 58px 26px 64px 0 rgba(188, 188, 215, 0.09), 14px 7px 35px 0 rgba(188, 188, 215, 0.1);
  background-color: #ffffff;
  overflow: hidden;
}
section.home-sec4 .white-box .text-wraper {
  padding: 1.87rem 1.25rem 1.75rem;
}
section.home-sec4 .white-box .text-wraper h4 {
  color: var(--Black, #020318);
  font-family: Oswald;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
section.home-sec4 .white-box .text-wraper p {
  color: var(--Body-Text, #505050);
  letter-spacing: 0.01rem;
  font-size: 0.98rem;
  margin: 0;
}
section.home-sec4 .white-box img {
  width: 100%;
  height: 25.2125rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec4 .black-box {
  border-radius: 0.625rem;
  background: var(--Black, #020318);
  margin-bottom: 1.87rem;
  overflow: hidden;
}
section.home-sec4 .black-box .text-wraper {
  padding: 1.5rem 1.75rem 1.94rem 1.25rem;
}
section.home-sec4 .black-box .text-wraper h4 {
  color: var(--White, #fff);
  font-family: Oswald;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
section.home-sec4 .black-box .text-wraper p {
  color: var(--White, #fff);
  line-height: 1.5rem;
  /* 150% */
  letter-spacing: 0.01rem;
  margin: 0;
  opacity: 0.8;
}
section.home-sec4 .black-box img.board {
  width: 100%;
  height: 25.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

section.home-sec5 {
  padding: 6.25rem 0 0;
  background: #eefdff;
}
section.home-sec5 h2 {
  text-align: center;
  margin-bottom: 0.62rem;
}
section.home-sec5 p {
  max-width: 64rem;
  text-align: center;
  margin: 0 auto 2.5rem;
}
section.home-sec5 .marquee-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
section.home-sec5 .marquee-container .marquee {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 1.88rem;
  padding-bottom: 2.69rem;
}
section.home-sec5 .marquee-container .marquee .marquee-content {
  display: flex;
  align-items: center;
  gap: 1.88rem;
  white-space: nowrap;
}
section.home-sec5 .marquee-container .marquee .marquee-content img {
  width: 16.5rem;
  height: 7.625rem;
  border-radius: 0.625rem;
  background: #eefdff;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.06);
}

section.home-sec6 {
  padding: 6.25rem 0 12.43rem;
  position: relative;
  overflow: hidden;
}
section.home-sec6.contact-sec::after {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.5) 62.86%, rgba(255, 255, 255, 0) 100%);
}
section.home-sec6.contact-sec img.bg-img {
  mix-blend-mode: luminosity;
}
section.home-sec6 .container {
  position: relative;
  z-index: 9;
}
section.home-sec6 img.bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
section.home-sec6::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #eefdff 0%, rgba(238, 253, 255, 0.5) 62.86%, rgba(238, 253, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
section.home-sec6 h2 {
  margin-bottom: 0.63rem;
}
section.home-sec6 p {
  margin-bottom: 1.8rem;
}
section.home-sec6 p span {
  font-weight: 600;
}
section.home-sec6 ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
section.home-sec6 ul li:last-child {
  margin: 0;
}
section.home-sec6 ul li:first-child {
  align-items: flex-start;
}
section.home-sec6 ul li:first-child img {
  margin-top: 0.12rem;
}
section.home-sec6 ul li img {
  max-width: 1.875rem;
  max-height: 1.875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec6 ul li span,
section.home-sec6 ul li a {
  color: var(--Black, #090506);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.home-sec6 ul li small {
  color: #fff;
  font-family: Inter;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 0.75rem;
  border: 0.5px solid #26a718;
  background: #26a718;
  padding: 0.25rem 0.59rem;
}
section.home-sec6 .white-box-wraper {
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 30px 0 rgba(188, 188, 215, 0.26);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 1.88rem;
}
section.home-sec6 .white-box-wraper h4 {
  color: var(--Black, #090506);
  font-family: Oswald;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.88rem;
}
section.home-sec6 .white-box-wraper label {
  display: block;
  color: var(--Body-Text, #505050);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0.38rem;
}
section.home-sec6 .white-box-wraper label span {
  color: var(--Red, #8d211a);
}
section.home-sec6 .white-box-wraper .flex-box {
  display: flex;
  align-items: center;
  gap: 1.88rem;
  justify-content: space-between;
}
section.home-sec6 .white-box-wraper .fild-wraper {
  width: 100%;
  margin-bottom: 1rem;
}
section.home-sec6 .white-box-wraper .fild-wraper input:not([type=submit]),
section.home-sec6 .white-box-wraper .fild-wraper textarea {
  width: 100%;
  background-color: transparent;
  border-radius: 0.3125rem;
  border: 1px solid #dcdcdc;
  outline: none;
  color: #000;
  padding: 1rem 0.5625rem;
}
section.home-sec6 .white-box-wraper .fild-wraper input:not([type=submit])::-moz-placeholder, section.home-sec6 .white-box-wraper .fild-wraper textarea::-moz-placeholder {
  color: #adadad;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-sec6 .white-box-wraper .fild-wraper input:not([type=submit])::placeholder,
section.home-sec6 .white-box-wraper .fild-wraper textarea::placeholder {
  color: #adadad;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-sec6 .white-box-wraper .fild-wraper textarea {
  height: 7rem;
  resize: none;
}
section.home-sec6 .white-box-wraper .red-btn {
  position: relative;
  margin-top: 1.88rem;
}
section.home-sec6 .white-box-wraper .red-btn input[type=submit] {
  position: absolute;
  inset: 0;
  z-index: 9;
  opacity: 0;
}

section.inner-banner {
  padding: 7.19rem 0 10.3rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
section.inner-banner::before {
  content: "";
  width: 78.5625rem;
  height: 100%;
  background: linear-gradient(270deg, rgba(1, 31, 34, 0) 0%, rgba(1, 31, 34, 0.37) 27.56%, rgba(1, 31, 34, 0.67) 63.78%, #011f22 100%);
  position: absolute;
  top: 0;
  left: 0;
}
section.inner-banner::after {
  content: "";
  width: 100%;
  height: 20.875rem;
  background-image: url(../images/inner-shape.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.inner-banner .container {
  position: relative;
  z-index: 9;
}
section.inner-banner img.inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
section.inner-banner h1 {
  color: var(--White, #fff);
  font-family: Oswald;
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.375rem;
  /* 117.391% */
  margin-bottom: 2rem;
}
section.inner-banner p {
  color: #fff;
  max-width: 40.125rem;
}

section.service-sec1 {
  padding: 6.25rem 0;
}
section.service-sec1 .row {
  align-items: center;
  padding-bottom: 2.5rem;
}
section.service-sec1 .row:last-child {
  padding-bottom: 0;
}
section.service-sec1 .row:nth-child(odd) {
  flex-direction: row-reverse;
}
section.service-sec1 h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
section.service-sec1 h2 + P {
  text-align: center;
  margin-bottom: 3.75rem;
}
section.service-sec1 h3 {
  color: var(--Red, #8d211a);
  font-family: Oswald;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem;
  margin-bottom: 0.38rem;
}
section.service-sec1 h4 {
  color: var(--Black, #020318);
  font-family: Oswald;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
section.service-sec1 img.side-img {
  width: 100%;
  height: 31.25rem;
  border-radius: 0.625rem;
}
section.service-sec1 .shadow-box {
  border-radius: 0.625rem;
  background: var(--White, #fff);
  box-shadow: 0 4px 30px 0 rgba(188, 188, 215, 0.2);
  padding: 1.25rem;
  margin-top: 1.88rem;
}
section.service-sec1 .shadow-box h5 {
  color: #000;
  font-family: Oswald;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 120% */
  margin-bottom: 1rem;
}
section.service-sec1 .shadow-box ul li {
  color: var(--Body-Text, #505050);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0.62rem;
  padding-left: 1.37rem;
  background-image: url(../images/li-arow.svg);
  background-repeat: no-repeat;
  background-position: left 0.2rem;
  background-size: 1rem;
}
section.service-sec1 .shadow-box ul li:last-child {
  margin: 0;
}

section.credential-sec1 {
  padding: 6.25rem 0 10.88rem;
}
section.credential-sec1 .row {
  gap: 1.88rem 0;
}
section.credential-sec1 h2 {
  text-align: center;
  margin-bottom: 1.265rem;
}
section.credential-sec1 h2 + p {
  max-width: 68.125rem;
  margin: 0 auto 1.87rem;
  text-align: center;
}
section.credential-sec1 .credential-card {
  padding: 1.25rem;
  border-radius: 0.625rem;
  background: var(--White, #fff);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
section.credential-sec1 .credential-card:hover {
  box-shadow: 0 4px 30px 0 rgba(188, 188, 215, 0.26);
}
section.credential-sec1 .credential-card img.brand-name {
  max-width: 18.5625rem;
  max-height: 5.95756rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  display: block;
}
section.credential-sec1 .credential-card p {
  text-align: center;
  font-size: 0.97rem;
  margin: 1rem 0 1.88rem;
}
section.credential-sec1 .credential-card .border-btn {
  border: 1px solid #8d211a;
  color: #8d211a;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  margin-top: auto;
}
section.credential-sec1 .credential-card .border-btn:hover {
  color: #fff;
}
section.credential-sec1 .credential-card .border-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(22deg) brightness(114%) contrast(100%);
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 0.7em !important;
  margin: 5px 0 -10px !important;
}/*# sourceMappingURL=style.css.map */