* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-size: 16px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}
img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
ul,
ol,
li {
  list-style: none;
}
a:hover {
  text-decoration: none;
}
.sec-outer {
  width: 100%;
  padding: 0 20px;
  position: relative;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.lca-btn {
  background-color: #ffd749;
  padding: 11px 18px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #1f2653;
  display: inline-block;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .sec-outer {
    padding: 0 15px;
  }
}

/* Top bar start */

.top-bar {
  background-color: #c19267;
}

.top-bar-inner {
  justify-content: flex-end;
  align-items: center;
  padding: 11px 0;
  gap: 32px;
}

.top-bar-inner a {
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  display: flex;
  align-items: center;
}

.top-bar-inner a i {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .top-bar {
    display: none;
  }
}
/* Top bar end */

/* Header start */
.header-outer {
  background-color: #1f2653;
}

header {
  justify-content: space-between;
  align-items: center;
  /* padding: 14px 0; */
  padding: 13px 0;
}

.header-right {
  gap: 24px;
  align-items: center;
}

nav a {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 9px 0;
  display: inline-block;
}

nav li.has-dropdown > a {
  padding-right: 28px;
  background-image: url(./assets/img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right center;
}

nav ul ul li a {
  background-color: white;
  color: #181d40;
  padding: 10px 15px;
  display: block;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}

nav ul ul li a:hover,
nav ul li a:hover {
  color: #ffd749;
}

nav li.has-dropdown {
  position: relative;
}

nav li.has-dropdown ul {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  width: max-content;
  min-width: 140px;
  position: absolute;
  opacity: 0;
  left: -999999px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  z-index: 1;
}

nav ul ul::before {
  content: "";
  width: 100%;
  height: 15px;
  display: block;
  background-color: transparent;
}

nav > ul {
  align-items: center;
  gap: 0 24px;
}
@media only screen and (min-width: 768px) {
  nav li.has-dropdown:hover ul {
    left: 0;
    opacity: 1;
  }
}

nav li.has-dropdown.active > a,
nav li.has-dropdown:hover {
  color: #ffd749;
}

.menu-toggle {
  width: 33px;
  height: 33px;
  padding: 5px;
  background-color: white;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;

  display: none;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle.active .bars-icon,
.menu-toggle .close-icon {
  display: none;
}
.menu-toggle.active .close-icon {
  display: block;
}

.search-box.active {
  background-color: #181d40;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.search-box input {
  width: 100%;
  height: calc(100% - 5px);
  border: none;
  outline: none;
  border-radius: 4px;
  min-width: 300px;
  padding: 8px 12px;
  transition: 0.3s all ease;
}

.search-box input::placeholder {
  color: #888;
}
.search-box input:focus {
  border: none;
  outline: none;
}
.search-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon img {
  width: 20.5px;
  height: 20.5px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}

.search-box.active .search-icon img {
  width: 18px;
  height: 18px;
}

.search-box:not(.active) form input {
  width: 0;
  min-width: 0;
  padding: 0;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}

.header-right form {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1050px) {
  .search-box input {
    min-width: 250px;
  }
}

@media only screen and (max-width: 991px) {
  .search-box input {
    min-width: 200px;
  }
  .header-right,
  nav > ul {
    gap: 0 16px;
  }
  .text-desing.logo {margin-right: 10px}
}

@media only screen and (max-width: 767px) {
  .search-box input {
      font-size: 16px;
    }

  nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 69px;
    background-color: white;
    z-index: 1;
    padding: 0;
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    display: none;
  }

  nav.active {
    max-height: calc(100vh - 69px);
    overflow-y: auto;
  }
  nav > ul {
    flex-direction: column;
    align-items: flex-start;
  }
  nav a {
    padding: 15px 0;
    color: #181d40;
  }
  nav li.has-dropdown {
    padding: 0 15px;
    width: 100%;
  }
  nav li.has-dropdown > a {
    background-image: url(./assets/img/arrow-down-black.svg);
    width: 100%;
  }
  nav li.has-dropdown.active > a {
    background-image: url(./assets/img/arrow-up-black.svg);
    width: 100%;
  }
  nav li.has-dropdown ul {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    position: unset;
    opacity: 1;
    box-shadow: none;
    display: none;
    transition: unset;
    -webkit-transition: unset;
    -moz-transition: unset;
    -ms-transition: unset;
    -o-transition: unset;
  }
  nav > ul ul > li:not(:last-child),
  nav > ul > li:not(:last-child) {
    border-bottom: 2px solid #ddd;
  }
  nav ul ul::before {
    height: 0;
  }
  nav ul ul li a {
    padding-left: 25px;
  }
  .menu-toggle {
    display: block;
  }
}

@media only screen and (max-width: 700px) {
  header .lca-btn {
    display: none;
  }
}

@media only screen and (max-width: 430px) {
  .search-box input {
      min-width: 120px;
  }
}
/* Header end */
.hero-sec {
  position: relative;
  /* min-height: 628px; */
  padding-top: 59px;
  padding-bottom: 152px;
}
.hero-outer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0.59)),
    url(./assets/img/banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 66%;
  z-index: -2;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.hero-outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./assets/img/banner-law.webp);
  background-repeat: no-repeat;
  background-size: 420px 621px;
  background-position: bottom center;
  z-index: -1;
}
.hero-sec h2 {
  font-size: 30px;
  line-height: 41px;
  color: white;
  text-align: center;
}

.hero-sec h2 strong {
  color: #c19267;
  font-size: 91px;
  line-height: 93px;
  display: block;
}

.hero-sec .sub-content {
  margin-top: 176px;
  width: 100%;
  max-width: 386px;
  margin-left: auto;
}

.hero-sec .sub-content p {
  border-left: 0.5px solid #fff;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: white;
  padding-left: 15px;
  margin-bottom: 18px;
}

.hero-sec .lca-btn {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  padding: 8px 16px;
}

@media only screen and (max-width: 767px) {
  .hero-sec {
    padding-bottom: 70px;
  }
  .hero-sec h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .hero-sec h2 strong {
    font-size: 40px;
    line-height: 62px;
  }
  .hero-sec .sub-content {
    margin: 100px auto 0 auto;
    text-align: center;
  }
  .hero-outer::before {
    background-size: 300px;
  }
}

/* Hero section */

/* Hero Bottom start */
.hero-bottom-outer {
  background-color: #1c1c1c;
}

.hero-bottom {
  padding: 24px 0;
  max-width: 1004px;
  margin: 0 auto;
  gap: 10px;
  justify-content: space-evenly;
}

.hero-bottom .item {
  display: flex;
  align-items: center;
  min-width: 328px;
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
  color: #fff;
}

.hero-bottom .item .icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.hero-bottom .item .icon img {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .hero-bottom .item {
    min-width: unset;
    font-size: 20px;
    line-height: 24px;
  }
  .hero-bottom .item .icon {
    width: 24px;
    height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-bottom {
    flex-direction: column;
    gap: 30px;
    max-width: 210px;
  }
  .hero-bottom .item {
    font-size: 16px;
  }
}
/* Hero Bottom end */

/* How it works start */
.how-works {
  padding: 64px 0;
}
.how-works-heading {
  padding-bottom: 18px;
}

.how-works-heading h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 55px;
  color: #000;
  position: relative;
}

.how-works-heading h2::before {
  content: "How it works";
  color: #c19267;
  font-size: 16px;
  line-height: 24px;
  display: block;
  padding-left: 18px;
  padding-bottom: 7px;
}

.how-works-heading h2::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #c19267;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.how-works-heading h2 strong {
  display: inline-block;
  font-weight: 700;
  color: #0d3276;
  position: relative;
}

.how-works-heading h2 strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: -1;
  width: 100%;
  height: 10px;
  background-color: #d2d4dd;
}

.how-works-heading p {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #1c1c1c;
  text-align: right;
  text-transform: capitalize;
}

.how-works-heading {
  gap: 22px;
}
.how-works-content > div,
.how-works-heading > div {
  flex: 1;
}

.how-works-heading > .right-part {
  display: flex;
  align-items: center;
}
.how-works-list {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .how-works-list {
    margin-top: 0;
  }
}
.how-works-list li {
  max-width: 470px;
  padding-bottom: 25px;
  position: relative;
}
.how-works-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 0;
  height: 100%;
  border-left: 1px dashed #c19267;
}

.how-works-list .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin-bottom: 16px;
}

.how-works-list .title::before {
  content: "";
  width: 12px;
  height: 12px;
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 5px;
  background-color: #c19267;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.how-works-list .title span {
  display: inline-block;
  margin-right: 18px;
}

.how-works-list p {
  font-size: 16px;
  line-height: 24px;
  color: #1c1c1c;
  padding-left: 42px;
}

.why-us-inner .lca-btn,
.how-works .lca-btn {
  padding: 14px 24px;
  font-size: 16px;
  line-height: 18px;
  background-color: #1f2653;
  color: white;
}

.how-works-content {
  gap: 24px;
}

.how-works-content .right-part {
  display: flex;
  justify-content: flex-end;
}

.how-works-content .right-part img {
  object-fit: contain;
}

@media only screen and (max-width: 991px) {
  .how-works-heading {
    flex-direction: column;
  }
  .how-works-heading p {
    text-align: left;
  }
  .how-works-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .how-works-heading h2 br {
    display: none;
  }
  .how-works-heading h2 strong {
    display: inline-block;
  }
  .how-works {
    padding: 40px 0;
  }
  .how-works-heading {
    padding-bottom: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .how-works {
    padding: 32px 0;
  }
  .how-works-heading {
    padding-bottom: 14px;
  }
  .how-works-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .how-works-heading {
    gap: 16px;
  }
  .how-works-heading p {
    font-size: 16px;
    line-height: 24px;
  }
  .how-works-content {
    flex-direction: column;
  }
  .how-works-list li {
    max-width: 100%;
  }
  .how-works-content .left-part {
    order: 2;
    width: 100%;
  }
  .how-works-content .right-part img {
    max-height: 350px;
  }
  .how-works-list .title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
/* How it works end */

/* Why us start */
.why-us-inner {
  background-color: #f3e9e1;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 64px;
}
.why-us-top {
  align-items: center;
  gap: 102px;
  padding: 57px 42px 20px 67px;
  background-color: #c19267;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.why-us-top .left-part {
  /* min-width: 332px; */
  width: 100%;
  max-width: 31%;
}
.why-us-top .right-part {
  width: 100%;
  max-width: 60%;
}
.why-us-inner li {
  padding-left: 31px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1c1c1c;
  background-image: url(./assets/img/double-checkmark.svg);
  background-repeat: no-repeat;
  background-position: left center;
  min-width: max-content;
}

.why-us-top h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 55px;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-us-top h2::after {
  content: "";
  width: 239px;
  height: 10px;
  display: block;
  background-color: #e0c8b3;
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 8px;
}

.why-us-inner h2 span {
  font-weight: 600;
  color: #0d3276;
}

.why-us-top p {
  color: #1c1c1c;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
}

.why-us-top ul {
  margin-top: 32px;
  column-count: 2;
  column-gap: 56px;
  margin-bottom: 40px;
}

.happy-client {
  padding: 30px 0;
  align-items: center;
  justify-content: space-evenly;
}

.happy-client .item {
  text-align: center;
}

.happy-client span {
  color: #1f2653;
  display: block;
}

.happy-client .label {
  font-size: 42px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 5px;
}

.happy-client .label-content {
  font-size: 18px;
  line-height: 27px;
}

@media only screen and (max-width: 1120px) {
  .why-us-top ul {
    column-count: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .why-us-top {
    gap: 50px;
    padding: 40px 20px;
  }
  .why-us-top h2 {
    font-size: 32px;
    line-height: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .why-us-top .left-part {
    display: none;
  }
  .why-us-top .right-part {
    max-width: 100%;
  }
  .happy-client .label {
    margin-bottom: 0;
    font-size: 32px;
  }
  .happy-client .label-content {
    font-size: 14px;
    line-height: 22px;
  }
  .why-us-top {
    padding: 20px;
  }
}

@media only screen and (max-width: 520px) {
  .happy-client .label {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 32px;
  }
  .happy-client .label-content {
    font-size: 12px;
    line-height: 16px;
  }
}
/* Why us end */

/* Active Case start */
.active-case-inner h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 55px;
  color: #000;
  margin-bottom: 32px;
  text-align: center;
}

.active-case-inner h2 strong {
  display: inline-block;
  font-weight: 600;
  color: #0d3276;
  position: relative;
}

.active-case-inner h2 strong::after {
  content: "";
  width: 239px;
  height: 10px;
  background-color: #d2d4dd;
  display: block;
  position: relative;
  top: -17px;
  z-index: -1;
}

.cases {
  flex-wrap: wrap;
}

.cases {
  --item: 4;
  --gap: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--item), 1fr);
  gap: var(--gap);
}

.case-item {
  border: 1px solid #e0e6ed;
  box-shadow: 0px 7px 14px 0px #d3dae2;
  padding: 12px 15px;
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.case-img img {
  width: 100%;
  max-height: 153px;
  border-radius: 16px;
  margin-bottom: 10px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  object-fit: cover;
}

.case-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #0d3276;
  margin-bottom: 8px;
}

.cases p {
  font-size: 12px;
  line-height: 18px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.cases .qualify-btn {
  padding: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: white;
  display: block;
  text-align: center;
  background-color: #1f2653;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin-bottom: 16px;
}

.claimed-content {
  padding: 14px;
  box-shadow: 0px 1px 0px 0px #d3dae2 inset;
}
.claimed-content > div {
  align-items: center;
  justify-content: center;
}
.claimed-content img {
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 4px;
}
.claimed-content .total-claimed {
  font-size: 14px;
  line-height: 21px;
  color: #383f5c;
}
.claimed-content span:not(.total-claimed) {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: rgba(10, 11, 15, 0.5);
}

.case-bottom {
  margin-top: auto;
}

.active-case-inner {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .cases {
    --item: 3;
  }

  .active-case-inner h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .cases {
    --item: 2;
  }

  .active-case-inner h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .case-title {
    font-size: 16px;
    line-height: 22px;
  }
  .why-us-inner li {
    min-width: unset;
  }
}

@media only screen and (max-width: 450px) {
  .cases {
    --item: 1;
  }
}
/* Active Case end */

/* Testimonial start */
.testimonial-outer {
  background-color: #1f2653;
  display: none;
}
.testimonial-inner {
  padding: 90px 0;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 38px;
}
.quote img {
  width: 32px;
  height: 24px;
}
.testimonial-item h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 47px;
  color: white;
  margin-bottom: 16px;
  width: 100%;
  max-width: 894px;
  text-align: center;
}
.testimonial-item p {
  width: 100%;
  max-width: 875px;
  color: white;
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 28px;
  text-align: center;
}
.quote-owner-img {
  width: 50px !important;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.quote-owner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-owner-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: white;
  margin-bottom: 6px;
  display: inline-block;
}
.win-case-title {
  text-transform: uppercase;
  color: white;
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
}
.stars {
  display: flex;
  gap: 5px;
}
.stars i {
  width: 16px;
  height: 16px;
}
.stars i img {
  width: 14px;
  height: 13.5px;
}

@media only screen and (max-width: 1024px) {
  .testimonial-inner {
    padding: 50px 0;
  }
  .testimonial-item h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .testimonial-item p {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-inner {
    padding: 40px 0;
  }
  .quote {
    margin-bottom: 20px;
  }
  .testimonial-item h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .testimonial-item p {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Testimonial end */

/* Where to start */
.wh-to-start-outer {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 43%,
    rgba(31, 38, 83, 1) 43%,
    rgba(31, 38, 83, 1) 100%
  );
  padding-top: 50px;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}
.wh-to-start {
  background-color: #c19267;
  padding: 66px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  margin-bottom: 64px;
}
.wh-to-start-inner {
  width: 100%;
  max-width: 578px;
  margin: 0 auto;
  text-align: center;
}
.wh-to-start h2 {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
  color: #000;
  margin-bottom: 10px;
}
.wh-to-start h2 span {
  color: #1f2653;
}
.wh-to-start p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.wh-to-start .lca-btn {
  padding: 11px 18px;
  font-size: 14px;
  line-height: 18px;
  background-color: #1f2653;
  color: white;
}

@media only screen and (max-width: 1024px) {
  .wh-to-start h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .wh-to-start p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .wh-to-start {
    padding: 30px;
    margin-bottom: 40px;
  }
  .wh-to-start h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .wh-to-start p {
    font-size: 16px;
    line-height: 24px;
  }
  .wh-to-start-inner {
    max-width: 400px;
  }
}
/* Where to end */

/* FAQ start */
.faq-inner {
  margin-bottom: 64px;
}
.faq-inner h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 55px;
  color: #000;
  margin-bottom: 32px;
  position: relative;
}
.faq-inner h2 span {
  display: inline-block;
  font-weight: 600;
  color: #0d3276;
}
.faq-inner h2::after {
  content: "";
  width: 239px;
  height: 10px;
  background-color: #d2d4dd;
  display: block;
  position: relative;
  top: -17px;
  z-index: -1;
}
.faq-inner li:not(:last-child) {
  margin-bottom: 10px;
}
.faq-inner .faq-ques {
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
  color: #000;
  padding: 17px 30px;
  background-color: #f5f5f5;

  background-image: url(./assets/img/plus-icon.svg);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: right 30px center;
  cursor: pointer;
}

.faq-inner li.active .faq-ques {
  background-image: url(./assets/img/minus-icon.svg);
  background-color: #f3f4ff;
}
.faq-inner .num {
  display: inline-block;
  margin-right: 10px;
}
.faq-inner .faq-ans {
  padding: 25px 68px;
  background-color: #f3f4ff;
  font-size: 16px;
  line-height: 26px;
}

@media only screen and (max-width: 1024px) {
  .faq-inner h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 24px;
  }

  .faq-inner .faq-ques {
    font-size: 20px;
    line-height: 28px;
    background-size: 18px 18px;
    padding-right: 48px;
  }

  .faq-inner .faq-ans {
    padding: 20px 48px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-inner h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .faq-inner .faq-ques {
    font-size: 18px;
    line-height: 26px;
    background-size: 14px 14px;
  }
}
/* FAQ end */

/* Footer start */
.footer-outer,
.footer-bottom-outer {
  background-color: #1f2653;
}

.footer-inner {
  padding: 120px 0 128px;
  gap: 0 29px;
}

.footer-items {
  display: grid;
  grid-template-columns: 20.4% 20.4% 31.9% 20.4%;
  gap: 21px;
  width: calc(100% - calc(278px + 28px));
}

.footer-item > a > img {
  max-width: 102px;
  margin-bottom: 15px;
}

.footer-item li a,
.footer-item > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.footer-item > p {
  margin-bottom: 36px;
}
.footer-inner > .footer-item {
  width: 100%;
  max-width: 278px;
}
.footer-item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: white;
  margin-bottom: 30px;
  display: inline-block;
}
.footer-item li:not(:last-child) {
  margin-bottom: 17px;
}
.footer-item i {
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-item li {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
}

.footer-item li a > img {
  width: 13px;
  margin-right: 10px;
}

.footer-bottom-inner {
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  color: white;
}
.footer-bottom-inner p {
  max-width: 616px;
}
.footer-bottom-inner a,
.footer-bottom-inner p {
  font-size: 12px;
  line-height: 18px;
  color: white;
}
@media only screen and (max-width: 1200px) {
  .footer-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-items > div:nth-child(3) {
    order: 4;
    grid-column: 1 / -1;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-inner {
    flex-direction: column;
    padding: 60px 0;
  }
  .footer-inner > .footer-item {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .footer-items {
    width: 100%;
  }
  .footer-items > div:nth-child(3) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer-item-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer-inner > .footer-item {
    margin-bottom: 36px;
  }
  .footer-inner {
    padding: 50px 0 36px;
  }
  .footer-bottom-inner {
    padding-top: 0;
  }
  .footer-item li:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 520px) {
  .footer-items > div:nth-child(1) {
    grid-column: 1 / -1;
  }
  .footer-items {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media only screen and (max-width: 450px) {
  .active-case-inner h2 strong::after {
    display: none;
  }
  .footer-items {
    grid-template-columns: 1fr;
  }
}
/* Footer end */

/* Logo design by Sharif */
.text-desing.logo {
    display: flex;
    flex-wrap: nowrap;
    width: 102px;
    align-items: center;
    justify-content: center;
}
.text-desing.logo img {
  height: 38px;
  width: auto;
}
.text-desing.logo h1 {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    padding-left: 7px;
    line-height: 1;
    font-weight: 600;
    display: inline-block;
    letter-spacing: .5px;
    font-family: system-ui;
}
.tc-link.flex a {padding: 0 10px;}