@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Josefin Sans", sans-serif;
}

:root {
  --primary-color: #004645;
  --secondary-color: #35b7b5;
  --main-color: linear-gradient(158deg, #004645 0%, #35b7b5 60%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #151c22;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

a {
  transition: all 0.3s ease-in-out !important;
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

textarea:focus,
input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--secondary-color) !important;
}

/* btn_box */
.btn_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn_box .web_btn {
  color: #fff;
  background: var(--main-color);
  padding: 8px 25px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  border: 2px solid #35b7b5;
  transition: none !important;
}
.btn_box .web_btn:hover {
  color: var(--secondary-color);
  background: transparent;
  border: 2px solid var(--secondary-color);
}
.btn_box .web_btn.outline {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.btn_box .web_btn.outline:hover {
  color: #fff;
  background: var(--main-color);
}
/* btn_box */

/* head */
.head {
}
.head span {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 700;
  display: block;
  margin: 0px 0px 20px;
}
.head h2 {
  color: #000;
  margin: 0 0 10px;
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
}
.head h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0px 0px 10px;
  line-height: 40px;
}
.head ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px 0px 20px;
}
.head ul li {
  display: flex;
  align-items: self-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}
.head ul li i {
  color: var(--primary-color);
  font-size: 18px;
  margin: 4px 0px 0px 0px;
}
.head p {
  margin: 0px 0px 20px;
}
/* head */

/* header */
.header_wrp {
  background: var(--primary-color);
  padding: 10px 0px;
}
.header_wrp .navbar {
  padding: 0;
}
.header_wrp .navbar .navbar-brand {
}
.header_wrp .navbar .navbar-brand img {
  width: 130px;
}
.header_wrp .navbar .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header_wrp .navbar .navbar-nav .nav-item {
}
.header_wrp .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}
.header_wrp .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--secondary-color);
}
.header_wrp .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary-color);
}
/* header */

/* footer */
.footer {
  background: #000;
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
}
.footer .logo-foot {
  padding: 0px 20px 0px 0px;
}
.footer .logo-foot img {
  width: 180px;
  margin: 0px 0px 20px;
}
.footer .logo-foot p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}
.footer .quick-link {
}
.footer .quick-link h4 {
  color: #fff;
  font-size: 24px;
  margin: 0px 0px 10px;
}
.footer .quick-link ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .quick-link ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .quick-link ul li i {
  font-size: 20px;
  color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.footer .quick-link ul li a {
  color: #ffff;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.footer .quick-link ul li a:hover {
  color: var(--secondary-color);
}
.footer .quick-link .social_link {
  margin: 20px 0px 0px;
  flex-direction: row;
  gap: 10px;
}
.footer .quick-link .social_link li {
}
.footer .quick-link .social_link li a {
  border: 2px solid #fff;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer .quick-link .social_link li a:hover {
  background-color: var(--secondary-color);
}
.footer .quick-link .social_link li a:hover i {
  color: #000;
}
.footer_bottom {
  background: var(--main-color);
  padding: 15px 0px;
}
.footer_bottom .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_bottom .copyright p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.footer_bottom .copyright ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer_bottom .copyright ul li {
  color: #fff;
}
.footer_bottom .copyright ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
/* footer */

/* frm_wrp */
.frm_wrp {
  background: #08706e;
  padding: 30px 30px;
  border-radius: 20px;
  width: 90%;
  margin: auto;
}
.frm_wrp h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 40px;
  margin: 0px 0px 10px;
  color: #fff;
}
.frm_wrp .main-input {
  margin: 0px 0px 15px;
}
.frm_wrp .main-input .input-grp {
  padding: 10px 15px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.frm_wrp .main-input textarea.input-grp {
  height: 120px;
}
.frm_wrp .main-input .form-check {
}
.frm_wrp .main-input .form-check .form-check-input {
}
.frm_wrp .main-input .form-check .form-check-label {
  font-size: 14px;
  color: #7a7a7a;
}

.form-check {
  margin: 0;
}

.form-check .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.form-check .form-check-input:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}
/* frm_wrp */

/* =================== Home Page =================== */

/* home_banner_wrp */
.home_banner_wrp {
  position: relative;
  overflow: hidden;
  background: var(--main-color);
  padding: 80px 0px;
  background-image:
    linear-gradient(
      91deg,
      rgb(2 32 32) 0%,
      rgb(8 62 61 / 47%) 45%,
      rgb(53 183 181 / 0%) 100%
    ),
    url(../images/banner_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home_banner_wrp::before {
  /* content: ""; */
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home_banner_wrp .contant {
  width: 85%;
}
.home_banner_wrp .contant h1 {
  font-size: 18px;
  font-weight: 500;
  margin: 0px 0px 15px;
  color: #fff;
}
.home_banner_wrp .contant h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: 600;
  margin: 0px 0px 15px;
  color: #fff;
}
.home_banner_wrp .contant h2 span {
  color: var(--secondary-color);
  font-weight: 700;
}
.home_banner_wrp .contant p {
  color: #fff;
  font-size: 20px;
}

.home_banner_wrp .contant .info_bx {
  display: flex;
  align-items: end;
  gap: 20px;
  margin: 30px 0px 0px;
}
.home_banner_wrp .contant .info_bx .trustpilot {
  width: 130px;
}
.home_banner_wrp .contant .info_bx .people {
  width: 160px;
  object-fit: cover;
}
.home_banner_wrp .contant .info_bx ul {
}
.home_banner_wrp .contant .info_bx ul li i {
  color: #d5a90b;
}
.home_banner_wrp .contant .info_bx ul li {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0px 0px 5px;
}

.frm_wrp .btn_box .web_btn {
  background: transparent;
  border: 2px solid #ffffff;
}

.frm_wrp .btn_box .web_btn:hover {
  background: #fff;
}
/* home_banner_wrp */

/* company_wrp */
.company_wrp {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}
.company_wrp .head {
}
.company_wrp .main-img {
}
.company_wrp .main-img img {
  object-fit: contain;
  width: 100%;
  height: 400px;
}
/* company_wrp */

/* services_wrp */
.services_wrp {
  padding: 100px 0px 70px;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.services_wrp .head {
  text-align: center;
  margin: 0px auto 50px;
  width: 80%;
}
.services_wrp .main_box {
  padding: 0px 30px 50px 0px;
}
.services_wrp .main_box i {
  font-size: 20px;
  background: #35b7b55e;
  height: 40px;
  width: 40px;
  border-radius: 6px;
  margin: 0px 0px 20px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.services_wrp .main_box h3 {
  font-size: 25px;
  line-height: 35px;
  margin: 0px 0px 10px;
  color: #000;
  font-weight: 600;
}
.services_wrp .main_box p {
  text-align: justify;
}
/* services_wrp */

/* willing-sec */
.willing-sec {
  background: var(--primary-color);
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.willing-sec .head {
  position: relative;
  z-index: 1;
  width: 55%;
  margin: auto;
}
.willing-sec .head h2 {
  color: #ffffff;
}
.willing-sec .head p {
  color: #ffffff;
}
.willing-sec .head .btn_box {
  justify-content: center;
}
.willing-sec .main-img {
  position: absolute;
  right: -37%;
  top: -16%;
  width: 100%;
}

.willing-sec .main-img img {
  width: 26%;
  animation: 4s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* willing-sec */

/* bottom_frm_wrp */
.bottom_frm_wrp {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}
.bottom_frm_wrp .head {
  text-align: center;
  margin: 0px 0px 30px;
}
.bottom_frm_wrp .frm_wrp {
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #7777;
}
.bottom_frm_wrp .frm_wrp .btn_box .web_btn {
  background: var(--secondary-color);
  border: 2px solid #35b7b5;
}
.bottom_frm_wrp .frm_wrp .btn_box .web_btn:hover {
  background: #ffffff;
  border: 2px solid #35b7b5;
}
/* bottom_frm_wrp */

/* frequently_wrap */
.frequently_wrap {
  position: relative;
  overflow: hidden;
  padding: 80px 0px;
  background: linear-gradient(180deg, #35b7b52b 0%, #ffffff 57.97%);
  background: #f8f8f8;
}

.frequently_wrap .head {
  margin: 0px 0px 40px;
}

.frequently_wrap .faq_wrap {
}

.frequently_wrap .faq_wrap .accordion {
}

.frequently_wrap .faq_wrap .accordion .accordion-item {
  margin: 0px 0px 15px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  overflow: hidden;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-header {
  border: 0 !important;
}

.frequently_wrap
  .faq_wrap
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  background: transparent;
  font-size: 20px;
  color: #000;
  line-height: 30px;
  font-weight: 600;
  border: 0 !important;
  padding: 15px 20px;
  box-shadow: none !important;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body {
  padding: 10px 20px 21px 20px;
  width: 95%;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body .head {
  text-align: left;
  margin: 0;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body .head p {
  margin: 0px 0px 15px;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body .head ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body p {
  margin: 0;
}

.frequently_wrap
  .faq_wrap
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  content: "\2b";
  font-family: "FontAwesome";
  background: #fff0;
  color: #000;
  font-size: 20px;
  border-radius: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.frequently_wrap
  .faq_wrap
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "FontAwesome";
  transform: rotate(0deg);
  color: var(--secondary-color);
}

.frequently_wrap .main-img {
}

.frequently_wrap .main-img img {
  width: 100%;
  height: auto;
}

section.loan_faq {
  padding: 100px 0px;
  background: transparent;
}

section.loan_faq .faq_wrap {
  margin: 0;
}

/* frequently_wrap */

/* reviews_wrp */
.reviews_wrp {
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 50%); */
}

.reviews_wrp .head {
  text-align: center;
  margin: 0px auto 40px;
  width: 70%;
}

.reviews_wrp .review_bx {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 25px;
  height: auto;
  margin: 0px 0px 20px;
}

.reviews_wrp .review_bx ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0px 0px 15px;
}

.reviews_wrp .review_bx ul li {
}

.reviews_wrp .review_bx ul li i {
  font-size: 16px;
  color: #ffc107;
}

.reviews_wrp .review_bx h4 {
  font-size: 20px;
  line-height: 30px;
  margin: 0px 0px 15px;
  color: #000;
  font-weight: 500;
}

.reviews_wrp .review_bx p {
  margin: 0;
  height: 130px;
  overflow: auto;
}

.reviews_wrp .review_bx .det {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0px 0px;
}

.reviews_wrp .review_bx .det img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #000;
}

.reviews_wrp .review_bx .det h5 {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  margin: 0px 0px 0px;
}

.reviews_wrp .review_bx .det h5 span {
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.reviews_wrp .review_bx2 {
  height: 310px;
}

.reviews_wrp .review_bx2 p {
  font-size: 22px;
  line-height: 40px;
  height: 120px;
}

/* reviews_wrp */

/* Process_wrap */
.Process_wrap {
  position: relative;
  overflow: hidden;
  padding: 100px 0px;
}
.Process_wrap .head {
  text-align: center;
  width: 60%;
  margin: 0px auto 50px;
}
.Process_wrap .tab_process {
}
.Process_wrap .tab_process .nav-tab {
  justify-content: space-between;
  gap: 20px;
}
.Process_wrap .tab_process .nav-tab .nav-item {
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link {
  padding: 0;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link.active {
  background: transparent;
  padding: 0px 0px;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link .box h6 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link .box .main-img {
  height: 100px;
  width: 101px;
  background: #f7f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link.active .main-img {
  background: var(--main-color);
}
.Process_wrap
  .tab_process
  .nav-tab
  .nav-item
  .nav-link.active
  .main-img::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #35b7b5;
  border-bottom: 0;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link .box .main-img img {
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link .box .main-img i {
  color: var(--primary-color);
  font-size: 35px;
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link.active .main-img img {
}
.Process_wrap .tab_process .nav-tab .nav-item .nav-link.active .main-img i {
  color: #fff;
}
.Process_wrap .tab_process .tab-content {
  margin: 50px 0px 0px;
}
.Process_wrap .tab_process .tab-content .head {
  width: 100%;
  text-align: left;
  margin: auto;
  padding: 0px 60px 0px 0px;
}
.Process_wrap .tab_process .tab-content .head h3 {
  color: var(--primary-color);
  font-weight: 700;
}
/* Process_wrap */

/* expect-sec */

.expect-sec {
  padding: 100px 0;
  position: relative;
}

.expect-sec .head {
  width: 80%;
  text-align: center;
  margin: 0px auto 50px;
}

.expect-sec .seo-switch {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.expect-sec .seo-switch .hideoff {
  opacity: 0.3;
  margin: 40px 0px 0px;
}

.expect-sec .seo-switch .hideoff img {
}

.expect-sec .seo-switch .hideme img,
.expect-sec .seo-switch .hideme svg {
  margin: 40px 0px 0px;
}

.expect-sec .seo-switch .switch {
  z-index: 2;
  top: 0;
  position: relative;
}

.expect-sec .seo-switch .switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  transform: translateX(5px);
  background: #fff;
}

.expect-sec .seo-switch .switch input:checked ~ .off {
  color: #ccc;
}

.expect-sec .seo-switch .switch input:checked ~ .on {
  color: #000;
}

.expect-sec .seo-switch .switch .slider,
.expect-sec .seo-switch .switch .slider:before {
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.expect-sec .seo-switch .switch .slider {
  top: -3px;
  bottom: 0;
  left: -42px;
  right: 0;
  border-radius: 20px;
  background: var(--primary-color);
  cursor: pointer;
  overflow: visible;
  width: 70px;
  height: 34px;
  border: 2px solid var(--primary-color);
  z-index: 2;
}

.expect-sec .seo-switch .switch .slider:before {
  content: "";
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 100px;
  top: 4px;
  -webkit-transform: translateX(0);
  transform: translateX(42px);
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 0.23);
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.23);
}

.expect-sec .seo-switch .switch .off,
.expect-sec .seo-switch .switch .on {
  position: absolute;
  right: -200px;
  top: 2px;
  color: #000;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  font-weight: 600;
  width: 150px;
  font-size: 18px;
  font-weight: 600;
}

.expect-sec .seo-switch .switch .on {
  right: 65px;
  top: 3px;
  color: #d3d3d3;
}

.expect-sec .ranking .rank {
  text-align: center;
  padding-top: 70px;
}

.expect-sec .ranking .rank span {
  -webkit-text-stroke: 1px var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 41px;
}
.expect-sec .ranking .rank p {
  font-size: 20px;
  margin-bottom: 0;
}

.counter {
  display: none;
}
/* expect-sec */

/* marketing-bshbard */
.marketing-bshbard {
  background-image: url(../images/marketing-bg.webp);
  padding: 100px 0 130px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.marketing-bshbard .head {
  text-align: center;
  margin: 0px auto 50px;
  width: 70%;
}
.marketing-bshbard .strategies {
  text-align: left;
  padding: 0px 40px 0px 0px;
  width: 100%;
}
.marketing-bshbard .text-center img {
  margin: 0 0 90px;
}

.marketing-bshbard .services-item {
  text-align: center;
  background-color: #fff;
  padding: 15px 10px 30px;
  border: 2px solid #ccc;
  border-radius: 5px;
}
.marketing-bshbard .services-item:hover {
  background-color: #000;
  text-decoration: none;
}

.marketing-bshbard .services-item p {
  text-align: -webkit-center;
  padding: 0 4px;
  height: 182px;
  overflow-y: auto;
}

.marketing-bshbard .services-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.marketing-bshbard .services-item:hover h3 {
  color: #fff;
}

.marketing-bshbard .services-item:hover p {
  color: #fff;
}
.marketing-bshbard .services-item:hover svg {
  fill: #fff;
  transition: none;
}

.marketing-bshbard .services-item:hover img {
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg)
    brightness(108%) contrast(101%);
}

.marketing-bshbard .services-item img {
  margin: 15px auto 20px;
  width: inherit !important;
  height: 65px;
  object-fit: contain;
}

.marketing-bshbard .services-item svg {
  margin: 15px auto 20px;
  width: 60px;
  height: 60px;
  transition: none;
}

.marketing-bshbard .owl-carousel .owl-nav button.owl-next,
.marketing-bshbard .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 40px;
  height: 40px;
  color: #fff !important;
  background: var(--primary-color) !important;
}

.marketing-bshbard .owl-carousel button.owl-next {
  margin-left: 0;
}

.marketing-bshbard .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: -60px;
  outline: 0;
  display: flex;
  gap: 6px;
}

.marketing-bshbard .services-slider.owl-carousel .owl-item,
.marketing-bshbard .services-slider.owl-carousel .owl-stage {
  display: flex;
}

.marketing-bshbard .services-slider.owl-carousel .services-item {
  height: 100%;
  width: 97%;
  margin: auto;
}

/* marketing-bshbard */

/* mini_frm */
.mini_frm .frm_wrp .bx_wrp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini_frm .frm_wrp .bx_wrp .main-input {
  margin: 0;
  flex: 1;
}

.mini_frm .frm_wrp .bx_wrp .btn_box {
  flex: 1;
}

.mini_frm .frm_wrp .bx_wrp .btn_box .web_btn {
  width: 100%;
  border-radius: 8px !important;
  padding: 9px 25px;
}
/* mini_frm */

/* helpsec */

.helpsec {
  background-color: #f7f9fc;
  padding: 60px 0;
  overflow: hidden;
}

.helpsec .head {
  text-align: center;
  width: 80%;
  margin: 0 auto 50px;
}

.helpsec .img-container {
  margin: 0 auto;
  padding-top: 11px;
  background-repeat: no-repeat;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.helpsec .img-container figure.abs {
  right: 0;
  top: 0;
  position: absolute;
  z-index: 9;
  left: 0;
  text-align: center;
  overflow: hidden;
}

.helpsec .img-container figure.abs img {
  width: 100%;
  height: 680px;
  object-fit: contain;
}

.helpsec .img-container .cs-slider img {
  height: 647px;
}

.helpsec .img-container .iphone_side img {
  width: 100%;
}

.helpsec .hlpwrap {
  padding-left: 0;
}

.helpsec .hlpwrap li {
  width: 100%;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.helpsec .hlpwrap li .lft {
  float: left;
}
.helpsec .hlpwrap li .lft i {
  font-size: 40px;
  color: var(--secondary-color);
}

.helpsec .hlpwrap li .rht h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
}
/* helpsec */

/* campaigns-sec */
.campaigns-sec {
  background: var(--secondary-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/seo_bg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.campaigns-sec .head {
  text-align: left;
}

.campaigns-sec .head p {
  color: #ffffff;
}
.campaigns-sec .head h2 {
  color: #ffffff;
}

/* campaigns-sec */

/* success_wrap */
.success_wrap {position: relative;overflow: hidden;padding: 0px 0px 100px;}
.success_wrap .head {
  text-align: center;
  margin: 0px 0px 30px;
}
.success_wrap .detail_info {
  background: #f5f5f5;
  border: 1px solid #35b7b5;
  padding: 40px;
  width: 70%;
  margin: auto;
}
.success_wrap .detail_info .main-img {
  border-radius: 50%;
  background: var(--primary-color);
  width: 160px;
  margin: 0px auto 25px;
}
.success_wrap .detail_info .main-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.success_wrap .detail_info .head {
}

.success_wrap .detail_info .head p {
  text-align: left;
}

.success_wrap .detail_info .table_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.success_wrap .detail_info .table_wrap .table-wrapper {
  width: 100%;
}
.success_wrap .detail_info .table_wrap .custom-table {
  width: 100%;
  border-collapse: collapse;
}

.success_wrap .detail_info .table_wrap .custom-table thead {
  background: var(--primary-color);
  color: #fff;
}

.success_wrap .detail_info .table_wrap .custom-table th {
  font-weight: 700 !important;
}

.success_wrap .detail_info .table_wrap .custom-table th,
.success_wrap .detail_info .table_wrap .custom-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid hsla(0, 0%, 50%, 0.502);
  font-size: 15px;
  font-weight: 500;
}

.success_wrap .detail_info .table_wrap .custom-table td a {
  color: #004645 !important;
  text-decoration: underline;
}

.success_wrap .detail_info .table_wrap .custom-table tbody tr:nth-child(odd) {
  background: #fff;
}

.success_wrap .detail_info .table_wrap .custom-table tbody tr:nth-child(even) {
  background: hsla(0, 0%, 50%, 0.071);
}

.success_wrap .detail_info .table_wrap .custom-table tbody tr {
  transition: 0.3s ease;
}

.success_wrap .detail_info .table_wrap .custom-table tbody tr:hover {
  background: hsla(0, 0%, 50%, 0.071);
}

.success_wrap .owl-dots {
    margin: 20px 0px 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.success_wrap .owl-dots button.owl-dot.active {
    border: 2px solid var(--primary-color);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success_wrap .owl-dots button.owl-dot span {
    background: var(--primary-color);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* success_wrap */

/* =================== Home Page =================== */
