/* === Base === */
@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");

:root {
  --primary: #a80e4c;
  --secondary: #333333;
  --grey: #f0f4f7;
  --white: #ffffff;
  --border-col: #c3c6d4;
  --hover: #bf1a28;
  --input-border: #bababa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--secondary);
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 0;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--secondary);
  text-decoration: none !important;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

i {
  transition: all 0.3s ease;
}

/* ========================================= */

header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 9999;
}

header .collapse:not(.show) {
  display: flex;
  gap: 24px;
}

.navbar-group {
  display: flex;
  gap: 24px;
}

.navbar-toggler {
  display: none;
}

.navbar {
  padding: 16px 0;
  margin-bottom: 16px;
  position: relative;
}

.navbar-brand {
  margin-right: 20px;
}

.navbar .logo {
  max-height: 25px;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-link:hover {
  color: var(--hover);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 40px;
  gap: 8px;
  box-shadow: none !important;
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  transition: all 0.3s ease-in-out;
}

.btn-primary .btn-icon {
  min-width: 16px;
  position: relative;
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background: var(--hover);
  border-color: var(--hover);
}

.btn-primary:hover .btn-icon {
  transform: translateX(5px);
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--secondary);
  background: var(--grey);
  border-color: var(--grey);
}

.btn-outline-secondary {
  border-color: var(--secondary);
}

.bannerLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
}

.bannerLink:hover {
  color: var(--hover);
}

.bannerLink .img-icon {
  border-radius: 100px;
  max-width: 50px;
  max-height: 50px;
}

.bannerWrapper {
  border-radius: 40px;
  padding: 50px;
  background: var(--grey);
  text-align: center;
}

.bannerWrapper .banner-heading {
  text-align: center;
  font-size: 52px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: 1.56px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 950px;
}

.bannerWrapper .banner-heading span {
  background: linear-gradient(to right, #a80e4c 0%, #f4752f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.bannerWrapper .banner-desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  max-width: 800px;
  margin: 8px auto 34px;
}

.bannerWrapper .getstartbtn {
  min-width: 176px;
}

/* .bannerMain .banner-bg-img {
  width: 1242px;
} */

.bannerMain {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
}

.bannerNavs {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  gap: 16px;
  z-index: 9;
}

.image-holder {
  position: relative;
}

.image-holder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.image-holder img:first-child {
  opacity: 1; /* default image */
  position: relative;
}
.bannerTab {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 56px 0 40px;
}

.bannerNavs .navs {
  border-radius: 13px;
  border: 1px solid var(--border-col);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(240, 243, 255, 0.3) 80%
  );
  box-shadow: 3px 3px 34px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);

  font-size: 14px;
  font-weight: 400;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px 45px;
  transition: all 0.3s ease;
}

.bannerNavs .card-sm:hover {
  color: var(--secondary);
  border-color: var(--primary);
}

.bannerNavs .jumboNav {
  padding: 45px;
  font-size: 20px;
  font-weight: 400;
}

.bannerNavs .navs-options {
  border-radius: 8px;
  border: 1px solid var(--border-col);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-transform: capitalize;
  min-width: 450px;
}

.navs-options a {
  cursor: pointer;
  transition: all 0.2s ease;
}

.bannerNavs .card-sm {
  border-radius: 8px;
  border: 1px solid var(--border-col);
  background: var(--white);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  gap: 10px;
  font-size: 12px;
}

.bannerNavs .card-sm img {
  height: 22px;
  width: 22px;
}

.bannerNavs .jumboNav:hover ~ .bannerNavs img {
  content: url("../images/banner-bg-img.jpg");
}

.block-heading {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.block-heading .title {
  color: var(--secondary);
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}

/* ========================================= */
section {
  padding: 100px 0;
}

.heading {
  margin-bottom: 56px;
}

.section-title {
  color: var(--secondary);
  text-align: center;
  font-size: 52px;
  font-weight: 400;
  line-height: 67.2px;
  letter-spacing: -1.12px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.services .service-cards {
  border-radius: 15px;
  padding: 40px;
  background: linear-gradient(180deg, var(--grey) 0%, #fff 100%), #d9d9d9;
  display: grid;
  gap: 20px;
  text-align: center;
}

.services .service-cards img {
  max-width: 100%;
  margin: auto;
  display: block;
}

.services .service-cards h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.puff-card {
  color: var(--white);
  padding: 48px 75px 75px;
  border-radius: 20px;
  background: linear-gradient(90deg, #790031 0%, #cc1654 50%, #cd2417 100%);
  text-align: center;
}

.puff-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.puff-content {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
}

.puff-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;
}

.puff-highlight .puff-value {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

.puff-highlight .puff-value div {
  font-size: 50px;
  font-weight: 600;
  line-height: 67.2px;
  letter-spacing: -1.12px;
}

.renewals-section {
  background-color: var(--white);
}

/*------*/

.renewals-wrapper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.renewals-content {
  flex: 0 0 50%;
  max-width: 50%;
  margin-right: auto;
}

.renewals-content .section-title {
  text-align: left;
}

.renewal-card {
  min-width: 330px;
  flex: 0 0 330px;
  padding: 20px;
  min-height: 230px;

  display: flex;
  flex-direction: column;
  gap: 30px;

  border-radius: 20px;
  background: var(--grey);
}

.renewal-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.renewal-card img {
  width: 50px;
  height: 50px;
}

.process-wrapper {
  background: linear-gradient(180deg, #fff 0%, #eceff8 100%);
  padding-bottom: 300px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-card img {
  width: 80px;
  height: 80px;
}

.process-card div {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  padding-right: 60px;
}

.process-card div span {
  color: var(--primary);
  font-size: 24px;
}

.dark-puff-card .puff-card {
  border-radius: 20px;
  background: var(--secondary);
  padding: 48px 100px 100px;
  margin-top: -225px;
}

.dark-puff-card * {
  color: var(--white);
}

.dark-puff-card .heading .section-title {
  margin-bottom: 40px;
}

.dark-puff-card .heading p {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 28.8px;
  color: var(--white);
}

.dark-puff-card p {
  color: #969696;
  font-size: 24px;
  line-height: 28.8px;
}

.info-block .section-title {
  text-align: left;
}

.info-form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}

.info-form-group .desc-content {
  border-radius: 20px;
  background: var(--grey);
  padding: 40px 48px;
}

.info-form-group .desc-content p {
  color: var(--secondary);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1.12px;
}

.inline-form {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  padding: 50px 25px;
  /* display: flex; */
  align-items: flex-start;
  justify-content: center;
}
#contactForm {
  width: 100%;
}
#successMessage {
  margin-top: 20px;
}

.inline-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.form-group .form-control {
  min-height: 58px;
  border-radius: 10px;
  border: 1px solid var(--input-border);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--hover);
  box-shadow: none;
}

.form-control::placeholder {
  color: var(--input-border);
}

.form-group .btn {
  display: inline-flex;
  margin-top: 16px;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.office-team {
  border-radius: 20px;
  background: var(--grey);
  padding: 40px;
}

.office-wrapper {
  max-width: 830px;
  margin: 0 auto;
}

.office-team .office-title {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 50px 0;
}

.office-wrapper .process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.office-wrapper .process img {
  width: 50px;
  height: 50px;
}

.office-wrapper .process .process-card {
  flex-direction: row;
  gap: 24px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 15px 35px;
  align-items: center;
}

.office-wrapper .process .process-card div {
  padding-right: 0;
  font-weight: 500;
}

.branding .branding-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.branding .branding-logos img {
  max-height: 60px;
  max-width: 350px;
}

.branding .puff-card {
  padding: 30px 80px 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  max-width: 800px;
}

.branding .puff-card .puff-highlight {
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  text-align: center;
}

.branding .puff-card .puff-highlight .puff-value {
  text-align: center;
}

.branding .branding-text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
  display: block;
  margin-top: 24px;
  margin-bottom: 40px;
}

.branding .branding-text b {
  color: var(--primary);
  font-weight: 700;
}

.footer-wrapper {
  color: var(--white);
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #1c1c1c;
  padding: 50px 80px;

  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  align-items: center;
  gap: 40px;
}

.footer-wrapper .footer-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

.footer-wrapper a {
  color: var(--white);
  text-decoration: none;
}

.poweredby {
  text-align: right;
}

.footer-wrapper a:hover {
  text-decoration: underline !important;
}

.footer-wrapper .footer-heading p {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}

.footer-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 24px;

  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.footer-wrapper ul li {
  gap: 16px;
  display: flex;
  align-items: center;
}

.footer-wrapper ul li a {
  color: var(--white);
}

.footer-wrapper ul.social-icons {
  flex-direction: row;
  justify-content: center;
}
