* {
  padding: 0;
  margin: 0;
  outline: 0;
  scrollbar-width: auto;
  scrollbar-color: #a0a1ca #dedede;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a0a1ca;
}

@font-face {
  font-family: "Avenir Next";
  src: url("fonts/AvenirNextCondensed-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  min-width: 320px;
  color: #000;
  font-family: "Avenir Next", sans-serif;
  overflow-x: hidden;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mulish", sans-serif;
}

a {
  text-decoration: none;
  color: #111;
  transition: 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #978484;
}

p {
  font-size: 20px;
  line-height: 30px;
  color: #555;
  margin: 0;
}

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

article {
  margin: 0 0 30px 0;
  overflow: hidden;
}

figure {
  margin: 0;
}

.img-wrap {
  position: relative;
}

.img-wrap figure {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin: 0;
}

.img-wrap figure img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgp-wrap {
  background: #fff;
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}

.imgp-wrap img {
  position: absolute;
  display: block;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav-sec {
  position: relative;
  z-index: 9;
  overflow-x: clip;
}
.nav-sec .navbar {
  padding: 0;
}
.nav-sec .navbar-collapse {
  justify-content: center;
}
.nav-sec .main-navigation {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: relative;
  z-index: 5;
  justify-content: center;
  border-radius: 4px;
  gap: 2px;
}
.nav-sec .main-navigation .menu-item {
  position: static;
}
.nav-sec .main-navigation .menu-item:hover {
  transition: 0.4s ease-in-out;
}
.nav-sec .main-navigation .menu-item:hover a {
  transition: 0.4s ease-in-out;
  background: rgba(255, 255, 255, 0.1);
  color: #f8f7f0;
}
.nav-sec .main-navigation .menu-item a {
  font-size: 16px;
  text-transform: capitalize;
  padding: 7px 12px;
  display: inline-block;
  position: relative;
  top: 0;
  color: #7f858d;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: 0.8px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.nav-sec .main-navigation .menu-item.active a {
  transition: 0.4s ease-in-out;
  background: rgba(255, 255, 255, 0.1);
  color: #f8f7f0;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu {
  top: 100%;
  z-index: 999999;
  min-width: 10rem;
  font-size: 1rem;
  color: #111;
  text-align: left;
  list-style: none;
  display: none;
  position: absolute;
  margin: 0;
  background: #222b52;
  border-radius: 5px;
  padding: 0;
  width: 310px;
  animation-duration: 0.3s;
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item::before {
  display: none;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.4s ease-in-out;
  text-align: left;
  line-height: 30px;
  border-radius: 5px;
  display: block;
  border: none;
  margin: 0;
  background-color: #222b52;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  background-color: #b25640;
  color: #222b52;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children:hover .sub-menu {
  display: block !important;
  opacity: 1;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children > a::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

header {
  background-color: #222b52;
  padding: 10px 0;
  border-bottom: 3px solid #b25640;
  position: relative;
  z-index: 1;
}
header .logo-wrap a img {
  max-width: 200px;
}
header .share-proj {
  text-align: right;
}
header .share-proj a {
  background: #b25640;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 9px 22px;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 700;
  transition: background 0.15s;
  white-space: nowrap;
  display: inline-block;
}
header .share-proj a:hover {
  background: #9a4a36;
}

/*main landing section*/
.slide-sec {
  background-color: #222b52;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.slide-sec:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(178, 86, 64, 0.07);
  pointer-events: none;
  z-index: 1;
}
.slide-sec .slide-img {
  position: relative;
  width: 100%;
  padding-top: 100vh;
  margin: 0;
}
.slide-sec .slide-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(34, 43, 82, 0.7);
  z-index: 1;
}
.slide-sec .slide-img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.slide-sec .cont-abs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  padding: 75px 0 0 0;
}
.slide-sec .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.slide-sec .hero-grid .hero-eyebrow {
  font-size: 14px;
  letter-spacing: 3px;
  color: #b25640;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-sec .hero-grid h1 {
  font-size: 52px;
  font-weight: 800;
  color: #f8f7f0;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.slide-sec .hero-grid h1 span {
  color: #b25640;
}
.slide-sec .hero-grid .hero-body {
  font-size: 14px;
  color: rgba(248, 247, 240, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 380px;
}
.slide-sec .hero-grid .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.slide-sec .hero-grid .hero-actions .btn-rust {
  background: #b25640;
  color: #ffffff;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s;
}
.slide-sec .hero-grid .hero-actions .btn-rust:hover {
  background-color: #9a4a36;
}
.slide-sec .hero-grid .hero-actions .btn-outline {
  background: transparent;
  color: #f8f7f0;
  border: 1.5px solid rgba(248, 247, 240, 0.25);
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.slide-sec .hero-grid .hero-actions .btn-outline:hover {
  border-color: #ffffff;
}
.slide-sec .hero-grid .pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.slide-sec .hero-grid .pillar-tags .pillar-tag {
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #b25640;
  border: 1px solid rgba(178, 86, 64, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
}
.slide-sec .hero-visual {
  background: rgba(248, 247, 240, 0.05);
  border: 1px solid rgba(248, 247, 240, 0.1);
  border-radius: 8px;
  padding: 28px;
}
.slide-sec .hero-visual .logo-wrap {
  padding: 15px 0;
  text-align: center;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(248, 247, 240, 0.1);
}
.slide-sec .hero-visual .logo-wrap img {
  max-width: 160px;
}
.slide-sec .hero-visual .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.slide-sec .hero-visual .stat-grid .stat-card {
  background: rgba(178, 86, 64, 0.14);
  border: 1px solid rgba(178, 86, 64, 0.18);
  border-radius: 4px;
  padding: 20px 14px;
  text-align: center;
}
.slide-sec .hero-visual .stat-grid .stat-card .stat-num {
  font-size: 24px;
  font-weight: 800;
  color: #f8f7f0;
  line-height: 1;
}
.slide-sec .hero-visual .stat-grid .stat-card .stat-label {
  font-size: 16px;
  color: rgba(248, 247, 240, 0.55);
  margin-top: 6px;
  letter-spacing: 0.3px;
  line-height: 1.45;
}

.headings {
  margin: 0 0 30px 0;
}
.headings .section-label {
  font-size: 16px;
  letter-spacing: 3px;
  color: #b25640;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.headings .section-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: #b25640;
}
.headings h2 {
  color: #f8f7f0;
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: bold;
}
.headings p {
  font-size: 15px;
  color: #7f858d;
}

.we-deliver {
  background-color: #222b52;
  padding: 55px 0 25px 0;
}
.we-deliver .headings .section-label:before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #b25640;
}
.we-deliver .pillar {
  background: rgba(248, 247, 240, 0.04);
  border-top: 3px solid #b25640;
  padding: 24px 18px;
  margin: 0 0 30px 0;
}
.we-deliver .pillar .pillar-num {
  font-size: 16px;
  font-weight: 700;
  color: #b25640;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.we-deliver .pillar .pillar-name {
  font-size: 15px;
  font-weight: 700;
  color: #f8f7f0;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.25;
}
.we-deliver .pillar .pillar-desc {
  font-size: 14px;
  color: rgba(248, 247, 240, 0.55);
  line-height: 1.6;
}

/*process section*/
.process {
  padding: 50px 0;
  background-color: #f8f7f0;
}
.process .headings h2 {
  color: #222b52;
}
.process .card-rust {
  background: #ffffff;
  border: 0.5px solid #ddd9d0;
  border-radius: 0 8px 8px 0;
  padding: 24px 20px;
  margin: 0 0 20px 0;
  border-left: 3px solid #b25640;
}
.process .card-rust .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.process .card-rust .card-top .step-badge {
  width: 30px;
  height: 30px;
  font-size: 20px;
  border-radius: 50%;
  background: #b25640;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.process .card-rust .card-top h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222b52;
  margin-bottom: 8px;
  margin: 0;
}
.process .card-rust p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.7;
}
.process .see-all {
  text-align: center;
  padding: 50px 0 0 0;
}
.process .see-all .btn-marina {
  background: #222b52;
  color: #f8f7f0;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s;
}
.process .see-all .btn-marina:hover {
  background-color: #181f3a;
}

/*who we serve*/
.we-serve {
  padding: 50px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.we-serve:before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.we-serve .container {
  position: relative;
}
.we-serve .headings h2 {
  color: #222b52;
}
.we-serve .aud-card {
  background: #f8f7f0;
  border-radius: 8px;
  padding: 24px 20px;
  border: 0.5px solid #ddd9d0;
  margin-bottom: 15px;
}
.we-serve .aud-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #222b52;
  margin-bottom: 8px;
}
.we-serve .aud-card p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.7;
}

/*blog section*/
.blogs {
  padding: 50px 0;
  background-color: #f8f7f0;
}
.blogs .headings h2 {
  color: #222b52;
}
.blogs .blog-card {
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 30px 0;
}
.blogs .blog-card .img-wrap {
  position: relative;
}
.blogs .blog-card .img-wrap figure {
  position: relative;
  width: 100%;
  padding-top: 55%;
  margin: 0;
}
.blogs .blog-card .img-wrap figure img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.blogs .blog-card .img-wrap .tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  padding: 5px 10px;
  background-color: #b25640;
  color: #f8f7f0;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.blogs .blog-card .blog-dtl {
  padding: 24px 20px;
  background: #ffffff;
  border: 0.5px solid #ddd9d0;
  border-radius: 0 0 8px 8px;
}
.blogs .blog-card .blog-dtl small {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b25640;
  margin: 0 0 5px 0;
  display: block;
}
.blogs .blog-card .blog-dtl h3 {
  margin: 0 0 5px 0;
}
.blogs .blog-card .blog-dtl h3 a {
  font-size: 14px;
  font-weight: 700;
  color: #222b52;
  display: block;
  line-height: 1.25;
}
.blogs .blog-card .blog-dtl h3 a:hover {
  color: #b25640;
}
.blogs .blog-card .blog-dtl .read-more a {
  color: #b25640;
  font-size: 14px;
  font-weight: 700;
}
.blogs .blog-card .blog-dtl .read-more a:hover {
  color: #222b52;
}
.blogs .see-all {
  text-align: right;
}
.blogs .see-all a {
  background: #222b52;
  color: #f8f7f0;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s;
  text-transform: capitalize;
}
.blogs .see-all a:hover {
  background-color: #181f3a;
}

/*banner*/
.smart-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.smart-banner .cta-strip {
  background: rgba(178, 86, 64, 0.6);
  padding: 60px 48px;
  text-align: center;
}
.smart-banner .cta-strip h2 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.smart-banner .cta-strip p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}
.smart-banner .cta-strip .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.smart-banner .cta-strip .cta-btns .btn-ivory {
  background: #f8f7f0;
  color: #222b52;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s;
}
.smart-banner .cta-strip .cta-btns .btn-ivory:hover {
  background-color: #ffffff;
}
.smart-banner .cta-strip .cta-btns .btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.smart-banner .cta-strip .cta-btns .btn-outline-white:hover {
  border-color: #f8f7f0;
}

/*footer*/
footer {
  background-color: #222b52;
  padding: 48px 0 20px 0;
}
footer .footer-col h4 {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #b25640;
  margin-bottom: 14px;
}
footer .footer-col .logo-wrap {
  margin: 0 0 20px 0;
}
footer .footer-col .logo-wrap img {
  width: 180px;
}
footer .footer-col .socio-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
footer .footer-col .socio-bar li a {
  color: #7f858d;
  font-size: 14px;
}
footer .footer-col .socio-bar li a:hover {
  color: #b25640;
}
footer .footer-col .footer-nav {
  list-style: none;
  padding: 0;
}
footer .footer-col .footer-nav li a {
  display: block;
  font-size: 14px;
  color: #7f858d;
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
}
footer .footer-col .footer-nav li a:hover {
  color: #f8f7f0;
}
footer .footer-col .footer-nav li a i {
  margin: 0 5px 0 0;
}
footer .copy-r {
  border-top: 0.5px solid rgba(127, 133, 141, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copy-r p {
  font-size: 16px;
  color: rgba(127, 133, 141, 0.5);
  letter-spacing: 0.5px;
}

.page-banner {
  background: #222b52;
  padding: 40px 0;
  border-bottom: 3px solid var(--rust);
}
.page-banner h2 {
  font-size: 28px;
  font-weight: 800;
  color: #f8f7f0;
}
.page-banner p {
  font-size: 15px;
  color: #7f858d;
  margin-top: 8px;
}

.about-sec {
  padding: 50px 0;
}
.about-sec .headings h2 {
  color: #222b52;
}
.about-sec .about-img {
  margin: 0 0 30px 0;
}
.about-sec .about-img img {
  border-radius: 8px;
}
.about-sec .about-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222b52;
  margin-bottom: 10px;
}
.about-sec .about-text p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-sec .about-text .stat-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.about-sec .about-text .stat-row .stat-box {
  background: #f8f7f0;
  border-radius: 6px;
  padding: 16px 14px;
  text-align: center;
  flex: 1;
  border-top: 3px solid #b25640;
}
.about-sec .about-text .stat-row .stat-box-num {
  font-size: 22px;
  font-weight: 800;
  color: #222b52;
}
.about-sec .about-text .stat-row .stat-box-lbl {
  font-size: 16px;
  color: #7f858d;
  margin-top: 4px;
  letter-spacing: 0.3px;
  line-height: 1.35;
}
.about-sec .video-wrap video {
  border-radius: 8px;
  width: 100%;
}

.abt .cta-strip {
  background-color: #222b52;
  border-bottom: 3px solid #b25640;
}
.abt .cta-strip .cta-btns .btn-ivory {
  background-color: #b25640;
  color: #f8f7f0;
}
.abt .cta-strip .cta-btns .btn-ivory:hover {
  background-color: #9a4a36;
}
.abt p {
  font-size: 15px;
  font-weight: 700;
  color: #f8f7f0;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.abt p span {
  color: #b25640;
}

.process.abt {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.process.abt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(248, 248, 240, 0.7);
}
.process.abt .container {
  position: relative;
}

/*service page*/
.service-sec {
  padding: 50px 0;
}
.service-sec .headings h2 {
  color: #222b52;
}
.service-sec .service-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: #f8f7f0;
  border-left: 3px solid #b25640;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
}
.service-sec .service-item h3 a {
  font-size: 16px;
  font-weight: 700;
  color: #222b52;
  margin-bottom: 5px;
}
.service-sec .service-item h3 a:hover {
  color: #b25640;
}
.service-sec .service-item p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.7;
}

/*process page*/
.process-inner {
  padding: 50px 0;
}
.process-inner .step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 0.5px solid #ddd9d0;
}
.process-inner .step .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222b52;
  color: #f8f7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.process-inner .step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222b52;
  margin-bottom: 6px;
}
.process-inner .step p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.7;
}
.process-inner .step .step-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.process-inner .step .step-tags .step-tag {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #b25640;
  border: 1px solid rgba(178, 86, 64, 0.25);
  background: #f5eae6;
  padding: 3px 8px;
  border-radius: 2px;
}
.process-inner [class*=col-]:last-child .step {
  border: none;
}

.process-baner {
  padding: 0 0 50px 0;
}
.process-baner .banr-wrap {
  margin-top: 20px;
  background: #f8f7f0;
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 3px solid #b25640;
}
.process-baner .banr-wrap .section-label {
  font-size: 16px;
  letter-spacing: 3px;
  color: #b25640;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-baner .banr-wrap .section-label:before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #b25640;
}
.process-baner .banr-wrap p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.8;
}
.process-baner .banr-wrap .btn-rust {
  background: #b25640;
  color: #ffffff;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s;
}
.process-baner .banr-wrap .btn-rust:hover {
  background-color: #9a4a36;
}

/*project page*/
.project-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid #ddd9d0;
}
.project-card .img-wrap figure {
  padding-top: 55%;
}
.project-card .project-body {
  padding: 16px 18px;
}
.project-card .project-body .project-type {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #b25640;
  margin-bottom: 6px;
}
.project-card .project-body h3 {
  line-height: 1px;
  margin-bottom: 15px;
}
.project-card .project-body h3 a {
  font-size: 14px;
  font-weight: 700;
  color: #222b52;
  line-height: 1pxc;
  transition: 0.4s ease-in-out;
}
.project-card .project-body h3 a:hover {
  color: #b25640;
}
.project-card .project-body p {
  font-size: 14px;
  color: #7f858d;
  line-height: 1.65;
}

/*contact page*/
.contact-sec {
  padding: 90px 0;
}
.contact-sec .contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222b52;
  margin-bottom: 18px;
}
.contact-sec .contact-info .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #7f858d;
}
.contact-sec .contact-info .contact-line strong {
  display: block;
  font-size: 15px;
  color: #222b52;
}
.contact-sec .contact-info .contact-line a {
  font-size: 15px;
  color: #7f858d;
  transition: 0.4s ease-in-out;
}
.contact-sec .contact-info .contact-line a:hover {
  color: #222b52;
}
.contact-sec .contact-info .c-icon {
  width: 32px;
  height: 32px;
  background: #f5eae6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-sec .contact-info .c-icon i {
  color: #b25640;
}
.contact-sec .contact-info .info-box {
  margin-top: 24px;
  padding: 20px;
  background: #f8f7f0;
  border-radius: 6px;
  border-left: 3px solid #b25640;
}
.contact-sec .contact-info .info-box .section-label {
  font-size: 16px;
  letter-spacing: 3px;
  color: #b25640;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-sec .contact-info .info-box p {
  font-size: 14px;
  color: #7f858d;
  line-height: 1.7;
}
.contact-sec .contact-info .found-by {
  margin-top: 22px;
}
.contact-sec .contact-info .found-by strong {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #b25640;
  margin-bottom: 8px;
}
.contact-sec .contact-info .found-by p {
  font-size: 15px;
  color: #7f858d;
  line-height: 1.65;
}
.contact-sec .form-wrap {
  background: #f8f7f0;
  border-radius: 8px;
  padding: 28px 24px;
  border: 0.5px solid #ddd9d0;
}
.contact-sec .form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--marina);
  margin-bottom: 20px;
}
.contact-sec .form-wrap .field {
  margin-bottom: 14px;
}
.contact-sec .form-wrap .field label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #222b52;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.contact-sec .form-wrap .field input,
.contact-sec .form-wrap .field textarea,
.contact-sec .form-wrap .field select {
  width: 100%;
  font-size: 15px;
  color: #222b52;
  border: 0.5px solid #ddd9d0;
  border-radius: 4px;
  padding: 10px 14px;
  background: #ffffff;
  font-family: inherit;
}
.contact-sec .form-wrap .form-submit {
  width: 100%;
  background: #b25640;
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s;
}
.contact-sec .form-wrap .form-submit:hover {
  background-color: #9a4a36;
}

.pictures-wrap {
  padding: 50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pictures-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f8f7f0;
}
.pictures-wrap .headings h2 {
  color: #222b52;
}
.pictures-wrap .container {
  position: relative;
}
.pictures-wrap .picture-card {
  position: relative;
  margin: 0 0 20px 0;
}
.pictures-wrap .picture-card:before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
  top: -5px;
  border-radius: 0;
}
.pictures-wrap .picture-card .img-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.pictures-wrap .picture-card .img-wrap figure {
  padding-top: 55%;
  overflow: hidden;
  margin: 0 0 0 0;
  border-radius: 0;
  overflow: hidden;
}
.pictures-wrap .picture-card .img-wrap figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.pictures-wrap .picture-card .img-wrap figure img {
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.pictures-wrap .picture-card .img-wrap .pic-title {
  background-color: rgba(34, 44, 82, 0.7);
  padding: 20px 10px;
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  border-radius: 0;
  text-align: center;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
}
.pictures-wrap .picture-card .img-wrap .pic-title strong {
  font-size: 14px;
  text-align: left;
}
.pictures-wrap .picture-card:hover figure:before {
  opacity: 1;
}
.pictures-wrap .picture-card:hover figure img {
  transform: scale(1.2) rotate(-5deg);
}
.pictures-wrap .picture-card .pic-dtls {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.pictures-wrap .picture-card .pic-dtls a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  margin: 0;
  display: inline-block;
  letter-spacing: initial;
  color: #b25640;
  opacity: 0.5;
  font-size: 14px;
  border-radius: 50%;
}
.pictures-wrap .picture-card .pic-dtls a:hover {
  opacity: 1;
  color: #fff;
}
.pictures-wrap .picture-card:hover .pic-dtls {
  opacity: 1;
}
.pictures-wrap .v-more {
  text-align: right;
  border-top: 1px solid #b25640;
}
.pictures-wrap .v-more a {
  padding: 10px 20px;
  display: inline-block;
  background-color: #222b52;
  color: #fff;
}
.pictures-wrap .v-more a:hover {
  background-color: #b25640;
}
.pictures-wrap .v-more a span {
  vertical-align: middle;
  margin: 0 0 0 5px;
}

.dates span {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b25640;
  margin: 0 0 5px 0;
  display: block;
}

.main-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  background-color: #ffffff;
}
.main-loader .logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main-loader .logo-wrap img {
  width: 150px;
}/*# sourceMappingURL=custom.css.map */