:root {
  --primary-color: #25c1e8;
  --primary-shade: #33a7f1;
  --dark-blue: #083e6a;
  --main-black: #000;
  --main-white: rgba(255, 255, 255, 1);
  --text-color: #535353;
  --F3F3F3: #f3f3f3;
  --color-E6E6E6: #e6e6e6;

  --color-e6e2e2: #e6e2e2;
  --color-A7A7A7: #a7a7a7;

  /* GRADIENT COLOR  */
  --primary-gradient: linear-gradient(
    85.17deg,
    #25c1e8 -24.13%,
    #33a7f1 80.89%
  );

  /* OPACITY COLOR  */

  --black-op8: rgba(0, 0, 0, 0.8);
  --black-op25: rgba(0, 0, 0, 0.25);

  --color-666666-op0: rgba(102, 102, 102, 0);
  --main-white-op9: rgba(255, 255, 255, 0.9);
  --dark-blue-op3: rgba(8, 62, 106, 0.302);
  --EBEBEB-op2: rgba(235, 235, 235, 0.2);
  --text-color-op5: rgba(83, 83, 83, 0.5);
  --color-A7A7A7-op6: rgb(167, 167, 167, 0.6);
  --color-6B6B6B-op25: rgba(107, 107, 107, 0.25);
}

/* 01 : Website Global CSS BOF
========================================================== */

body,
html {
  height: 100%;
}

body {
  background: var(--main-white);
  font-family: "Arial";
  color: var(--text-color);
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--main-white);
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: var(--primary-color);
  text-decoration: none;
}

a.blue_text:hover {
  color: var(--primary-shade);
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

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

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

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* 02 : Global Classes CSS BOF
  ==================================================== */

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--color-E6E6E6);
}

::-webkit-scrollbar-thumb {
  width: 7px;
  background-color: var(--primary-color);
  border-radius: 4px;
}

/* Background &amp; Color Style CSS BOF
  =================================================== */

.bg_F3F3F3 {
  background-color: var(--F3F3F3);
}

.bg_dark_blue {
  background-color: var(--dark-blue);
}

/* Font Color Style CSS BOF */
.white_text {
  color: var(--main-white);
}

.primary_text {
  color: var(--primary-color);
}

.text_color {
  color: var(--text-color);
}

/* Object fit common classes */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Opacity common classes */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

/* 03 : Heading Style CSS BOF
  =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arial";
  line-height: normal;
  font-style: normal;
  color: var(--text-color);
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

.h1 {
  font-size: 60px;
  line-height: 70px;
}

.h2 {
  font-size: 40px;
  line-height: 60px;
}

.h3 {
  font-size: 38px;
  line-height: 100%;
}

.h4 {
  font-size: 26px;
  line-height: 40px;
}

.h5 {
  font-size: 24px;
  line-height: 40px;
}

.h6 {
  font-size: 14px;
  line-height: normal;
}

.font-48 {
  font-size: 48px;
  line-height: 60px;
}

.font-20 {
  font-size: 20px;
  line-height: normal;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal;
}

.font_bl {
  font-weight: 800;
}

.font_blk {
  font-weight: 900;
}

.font_smb {
  font-weight: 600;
}

.font_md {
  font-weight: 500;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.word-break {
  word-break: break-all;
}

/* 04 : Paragraph Style CSS BOF
  =================================================== */
p,
.p {
  line-height: auto;
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
  =================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.bttn {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  padding: 12px 40px;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  border-style: none;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 10px;
  text-transform: unset;
  box-shadow: none;
  color: var(--main-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bttn:hover,
.bttn:focus,
.bttn:active,
.bttn:focus-visible {
  outline: none;
  background-position: right center;
  box-shadow: 0 10px 20px var(--dark-blue-op3);
  transform: translateY(-2px);
  color: var(--main-white);
}

.bttn-outline {
  background: transparent;
  color: var(--main-white);
  border: 1px solid var(--main-white);
}

.bttn-outline:hover,
.bttn-outline:focus,
.bttn-outline:active,
.bttn-outline:focus-visible {
  box-shadow: none;
  outline: none;
  color: var(--primary-color);
  background: var(--main-white);
  border-color: var(--main-white);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 11 : Form &amp; Input Style BOF
  ==================================================== */

.form-control,
.form-select {
  border-radius: 10px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 24px;
  line-height: 35px;
  font-family: "Arial";
  font-weight: normal;
  padding: 20px 20px;
  /* height: 60px; */
}

.form-select {
  background-image: url("./../images/mobile-input-dropdown.png");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 22px center;
  cursor: pointer;
  color: var(--main-black);
  background-color: var(--EBEBEB-op2);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-A7A7A7-op6);
  color: var(--main-white);
}

.form-select option {
  color: var(--main-black) !important;
  font-size: 18px;
  color: var(--text-color-op5);
}

.form-label {
  font-family: "Arial";
  font-size: 20px;
  font-weight: 500;
  color: var(--main-black);
  margin-bottom: 12px;
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 20px 20px;
  height: 190px;
}

.form-group .required-field {
  color: rgba(255, 63, 63, 1);
}

/** Placeholder CSS BOF **/
.form-control::placeholder {
  color: var(--text-color-op5);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
}

.form-control::-moz-placeholder {
  color: var(--text-color-op5);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
}

.form-control:-ms-input-placeholder {
  color: var(--text-color-op5);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 35px;
}

.form-control::-webkit-input-placeholder {
  color: var(--text-color-op5);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
}

.form-control::-o-input-placeholder {
  color: var(--text-color-op5);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
}

/* PRIMARY FORM CONTROL PLACEHOLDER */

.primary-form .form-control::placeholder {
  color: var(--main-white);
}

.primary-form .form-control::-moz-placeholder {
  color: var(--main-white);
}

.primary-form .form-control:-ms-input-placeholder {
  color: var(--main-white);
}

.primary-form .form-control::-webkit-input-placeholder {
  color: var(--main-white);
}

.primary-form .form-control::-o-input-placeholder {
  color: var(--main-white);
}

/* Focus State CSS BOF   */
.form-control:focus,
.form-select:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  outline: 0;
}

/* PRIMARY FORM CONTROL */

.primary-form .form-control {
  background-color: var(--EBEBEB-op2);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-A7A7A7-op6);
  color: var(--main-white);
}

.primary-form .form-control:focus {
  color: var(--main-white);
  border-color: var(--primary-color);
}

.primary-form .mobile-input {
  background-color: var(--EBEBEB-op2);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-A7A7A7-op6);
}

.mobile-input {
  border-radius: 10px;
  width: 100%;
  position: relative;
  z-index: 9;
}

.mobile-input .form-control {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border: 0;
  padding-left: 5px;
  background-color: transparent;
  backdrop-filter: none;
}

.flag-dropdown {
  width: 130px;
  flex: 0 0 auto;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.flag-dropdown p,
.flag-dropdown p .wpcf7-form-control-wrap {
  height: 100%;
  display: block;
}

.mobile-input:has(.form-control-number:focus).mobile-input {
  border-color: var(--primary-color);
}

.iti.iti--allow-dropdown {
  width: 130px;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding: 0;
  width: 130px;
  border: 0;
  background: transparent;
  font-size: 0;
}

.iti--allow-dropdown .iti__flag-container {
  width: 100% !important;
}

.iti--allow-dropdown .iti__flag-container .iti__selected-flag {
  padding: 0 11px 0 14px !important;
  justify-content: space-between !important;
  background-color: transparent !important;
  font-size: 24px;
  color: var(--main-white);
}
.iti--allow-dropdown .iti__flag-container .iti__selected-flag .iti__arrow {
  background-image: url("../images/mobile-input-dropdown.png");
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  border: 0;
  background-position: center;
  background-size: 24px;
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.iti--allow-dropdown .iti__flag-container .iti__selected-flag .iti__arrow--up {
  transform: rotate(180deg);
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent !important;
}

.iti--allow-dropdown .iti__flag-container .iti__selected-flag .iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags@2x.png");
  background-size: 5652px 24px;
  height: 16px;
  transform: scale(1.2);
  transform-origin: left center;
}

/* Hide the text inside mobile_code - ITI handles display */
#mobile_code {
  width: 0 !important;
  padding-left: 0 !important;
  border: none !important;
  background: transparent !important;
  pointer-events: none;
}

/* ADD CSS FOR ERROR  */
.mobile-input:has(.wpcf7-not-valid-tip) {
  margin-bottom: 21px;
}

.mobile-input .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: -130px;
  bottom: -23px;
}

/* SECONDARY FORM CONTROL */

.secondary-form .form-control {
  background-color: var(--main-white);
  border-color: transparent;
  color: var(--text-color);
}

.secondary-form .form-control:focus {
  color: var(--text-color);
  border-color: var(--primary-color);
}

/* .secondary-form .mobile-input {
  background-color: var(--main-white);
  border: 1px solid transparent;
  color: var(--text-color);
}

.secondary-form .iti--allow-dropdown .iti__flag-container .iti__selected-flag {
  color: var(--text-color);
} */

/* WPCF7 FORM CSS */

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: var(--dark-blue);
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 15px;
  position: relative;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: var(--main-white);
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0 1em;
  padding: 0.2em 1em;
  border: 2px solid var(--primary-color);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

.wpcf7-response-output {
  color: #dc3545 !important;
  background-color: var(--color-e6e2e2);
  border-color: var(--primary-color) !important;
}

/* SOME GLOBAL CSS */
.page-wrapper {
  margin: 0px auto;
  overflow-x: hidden;
}

.page-wrapper.custome-overflow {
  overflow-x: unset;
}

/* COMMON PADDING  */
.common-padding,
.common-padding-t {
  padding-top: 100px;
}

.common-padding,
.common-padding-b {
  padding-bottom: 100px;
}

.common-border-radius {
  border-radius: 20px;
}

.common-border-radius-10 {
  border-radius: 10px;
}

.flex-0 {
  flex: 0 0 auto;
}

/* ======================================================
                  COMMON CONTAINER SOC
  ====================================================== */

.container {
  max-width: calc(1520px + 30px);
  padding: 0 15px;
}

/* COMMON ACCORDION */
.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.white_faq .accordion-item {
  background-color: var(--main-white);
}

.gray_faq .accordion-item {
  background-color: var(--F3F3F3);
}

.accordion-button {
  background-color: transparent;
  color: var(--text-color);
  border-radius: 20px;
  gap: 12px;
}

.accordion-button:not(.collapsed) {
  color: var(--text-color);
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 0;
}

.accordion-item {
  border: none;
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 34px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 20px;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* .accordion-collapse.show */
.accordion-item:not(:first-of-type) {
  border-top: 1px solid transparent;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/dropdown-toggle.svg");
  transform: unset;
}

.accordion-button::after {
  background-image: url("../images/dropdown-toggle.svg");
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}

.accordion-button {
  padding: 0;
}

.accordion-body {
  padding: 20px 0 0;
  text-align: start;
}

/* COMMON TITLE CSS */
.title-wrapper {
  padding-bottom: 30px;
}

.title-wrapper .sub-title .sub-title-line {
  width: 92px;
  height: 3px;
  background-color: var(--primary-color);
}

/* COMMON SECTION SHADOW */
.common-sec-shadow {
  position: relative;
}

/* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

/*header active start*/

.site-header {
  position: relative;
  z-index: 999;
}

/*header active end*/

/*index css Start*/

.header-main .header-inner-main {
  position: relative;
  background: transparent;
}

.header-main .header-inner-main nav.navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item
  .nav-link {
  position: relative;
  font-size: 24px;
  color: var(--text-color);
  font-weight: 400;
  padding: 0px;
  text-shadow: none;
  transition: all 400ms ease-in-out;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item
  .nav-link:hover,
.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item.active
  .nav-link:hover {
  color: var(--primary-color);
  text-shadow:
    0 0 1.1px currentColor,
    0 0 1.1px currentColor;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item.active
  .nav-link {
  color: var(--primary-color);
  text-shadow:
    0 0 1.1px currentColor,
    0 0 1.1px currentColor;
}

.header-main .header-container,
.footer-sec .footer-container {
  max-width: calc(1720px + 30px);
  margin: 0 auto;
  padding: 0 15px;
}

.header-main .navbar-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.header-main .header-inner-main .header-menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-expand-lg .navbar-nav {
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/*toggele switch*/

.header-main button.navbar-toggler {
  padding: 0;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--primary-color);
  border-radius: 10px;
  gap: 2px;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(1) {
  top: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(1),
.header-main
  .header-inner
  .header-right
  button.navbar-toggler.collapsed
  span.icon-bar:nth-child(3) {
  top: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  margin: 2px auto;
}

.header-main button.navbar-toggler span.icon-bar {
  margin: 0;
  background-color: var(--main-white);
  border-radius: 2px;
  display: block;
  height: 2px;
  position: relative;
  width: 22px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(3) {
  top: -5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/*dropdown*/

.header-main {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  left: 0px;
  padding: 20px 0;
  transition: all 400ms ease;
  background-color: var(--main-white);
  transform: translateY(0);
}

.header-main.hide {
  transform: translateY(-100%);
}

/*index css Start*/

.common-banner-sec:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    90.63deg,
    var(--black-op8) 10.2%,
    var(--color-666666-op0) 105.15%
  );
}

.common-banner-sec .h1,
.error-banner-content h1,
.thankyou-banner-content h1 {
  font-family: "Arial CE MT";
}

/* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */
.banner-sec {
  min-height: 100vh;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  display: table;
  width: 100%;
  position: relative;
}

.banner-sec .banner-main {
  height: 100%;
  display: table-cell;
  z-index: 9;
  padding: 300px 0;
  vertical-align: middle;
}

.banner-sec .banner-content {
  max-width: 1133px;
}

/* ======================================================
=========================================================
                 WHERE WE ADD VALUE SOC
=========================================================
====================================================== */

.add-value-sec .add-value-img-vector {
  position: absolute;
  right: -160px;
  bottom: 0;
  z-index: -1;
}

.add-value-sec .add-value-row,
.home-aboutus-sec .home-about-row,
.why-ocm-wrapper-home .why-ocm-row {
  --bs-gutter-x: 59px;
  --bs-gutter-y: 0px;
}

.add-value-wrapper .values-points .values-points-ul,
.home-aboutus-sec .home-about-content-wrapper .home-about-points-ul {
  gap: 20px;
}

/* ======================================================
=========================================================
                    DELIVERABLE SOC
=========================================================
====================================================== */

.deliverble-wrapper .deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-666666-op0) 4.42%,
    var(--main-black) 79.14%
  );
  border-radius: 10px;
}

.deliverble-wrapper .deliverable-card .deliverable-content {
  position: absolute;
  width: 100%;
  padding: 20px;
  bottom: 0;
}

/* ======================================================
=========================================================
                  HOME - ABOUT US SOC
=========================================================
====================================================== */

.home-aboutus-sec .home-aboutus-vector {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* ======================================================
=========================================================
                  CONSULTATION CTA SOC
=========================================================
====================================================== */

.consultation-cta-sec {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.consultation-cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--dark-blue);
  opacity: 0.5;
  z-index: 0;
}

.consultation-cta-sec .consultation-cta-wrapper {
  max-width: 1078px;
  margin: 0 auto;
}

/* ======================================================
=========================================================
                  SERVICE WE OFFER SOC
=========================================================
====================================================== */

.service-wrapper .service-title-wrapper {
  max-width: 978px;
  margin: 0 auto;
}

.service-slider .service-card .service-card-body {
  position: absolute;
  width: 100%;
  padding: 20px;
  bottom: 0;
}

.service-card .service-img {
  transition: all 0.6s ease-in-out;
}

.service-card:hover .service-img {
  transform: scale(1.2);
}

.service-slider .service-card .service-card-content {
  background-color: var(--text-color-op5);
  backdrop-filter: blur(17.8px);
}

.service-card .service-card-content .service-card-divider {
  border-bottom: 1px solid var(--main-white);
}

.service-card .service-card-content {
  max-height: 340px;
}

.service-card .service-card-content .service-title {
  padding: 16px 16px 0;
  transition: all 0.6s ease-in-out;
}

.service-card .service-card-content .hover-content {
  opacity: 0;
  padding: 0 16px 16px;
  transition: all 0.6s ease-in-out;
  height: 0;
}

.service-card:hover .service-card-content .hover-content {
  opacity: 1;
  max-height: 340px;
  height: 150px;
}

.service-slider-wrapper .swiper-nav {
  width: 50px;
  height: 50px;
  background-color: var(--dark-blue);
  border-radius: 50%;
  padding: 8px;
  position: absolute;
}

.service-slider-wrapper .swiper-button-next {
  right: -100px;
}

.service-slider-wrapper .swiper-button-prev {
  left: -100px;
}

.service-slider-wrapper .swiper-button-next::after,
.service-slider-wrapper .swiper-button-prev::after {
  font-size: 0;
}

.service-slider-wrapper .swiper-button-disabled {
  background-color: var(--color-e6e2e2);
  opacity: 1;
}

.service-slider-wrapper .swiper-button-disabled svg path {
  fill: var(--color-A7A7A7);
}

/* ======================================================
=========================================================
                      WHY OCM HOME SOC
=========================================================
====================================================== */

.why-ocm-wrapper-home .why-ocm-img-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, minmax(0, 1fr));
  height: 493px;
  gap: 30px;
}

.why-ocm-wrapper-home .why-ocm-img-wrapper .why-ocm-img1 {
  grid-row: 1 / 5;
  grid-column: span 2;
  max-height: 493px;
}

.why-ocm-wrapper-home .why-ocm-img-wrapper .why-ocm-img2 {
  grid-row: 1 / 5;
  grid-column: span 3;
}

.why-ocm-wrapper-home .why-ocm-img-wrapper .why-ocm-img3 {
  grid-row: 3 / 5;
  grid-column: span 3;
}

/* ======================================================
=========================================================
                      OUR WORK SOC
=========================================================
====================================================== */

.our-work-sec .ourWork-vector-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  max-height: 840px;
  pointer-events: none;
  padding-top: 56px;
  margin-top: auto;
}

.our-work-sec .ourWork-vector-wrapper .ourWork-vector {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-position: bottom right;
}

.our-work-wrapper .including-points-wrapper .including-point {
  align-items: stretch !important;
}

.our-work-wrapper
  .including-points-wrapper
  .including-point
  .including-point-divider {
  position: relative;
  width: 1px;
}

.our-work-wrapper
  .including-points-wrapper
  .including-point
  .including-point-divider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: 1px solid var(--color-A7A7A7);
}

/* ======================================================
=========================================================
                    HOME CONTACT US SOC
=========================================================
====================================================== */

.home-contact-us-sec {
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-contact-us-wrapper .home-contact-us-row {
  --bs-gutter-x: 80px;
}

.home-contact-us-wrapper .home-contactus-form-wrapper {
  background-color: var(--main-white-op9);
  padding: 30px;
}

/* ======================================================
=========================================================
                        FOOTER SOC
=========================================================
====================================================== */

.footer-main .footer-wrapper {
  padding: 101px 0 50px;
}

.footer-main .footer-nav {
  padding-left: 100px;
}

.footer-main .footer-nav .footer-link-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer-divider {
  border-color: var(--color-A7A7A7-op6) !important;
}

.footer-main .footer-nav .footer-link-ul li {
  border-right: 1px solid var(--color-A7A7A7-op6);
  padding-right: 70px;
  margin-right: 70px;
  padding-bottom: 32px;
}

.footer-main .footer-nav .footer-link-ul li:nth-last-child(1),
.footer-main .footer-nav .footer-link-ul li:nth-last-child(2) {
  padding-bottom: 0;
}

.chat-wrapper {
  width: 90px;
  height: 90px;
  position: fixed;
  background-color: var(--primary-color);
  bottom: 63px;
  right: 27px;
  z-index: 999;
}

/* ============================================================================
===============================================================================
                              CONTACT US PAGE
===============================================================================
============================================================================ */

.contact-us-sec {
  padding-top: 104px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-us-sec .contact-us-wrapper .contact-form-wrapper {
  margin-left: 80px;
}

/* ============================================================================
===============================================================================
                              ABOUT US PAGE
===============================================================================
============================================================================ */

/* OUR FOUNDER SEC */

.founder-sec .founder-vector-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  max-height: 990px;
  pointer-events: none;
  padding-top: 46px;
  margin-top: auto;
}

.founder-sec .founder-vector-wrapper .founder-vector {
  max-width: 100%;
  object-position: bottom left;
}

.founder-sec .founder-content-wrapper {
  max-width: 808px;
  margin-left: auto;
}

/* WE BELIVE SEC */

.we-belive-sec {
  padding-bottom: 200px;
}

.we-belive-sec .we-belive-vector2 {
  transform: scaleX(-1);
}

.webelive-card-wrapper .we-belive-card {
  padding: 70px 30px 30px;
}

.we-belive-card .webelive-icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0px 4px 4.3px 0px var(--black-op25);
  margin: -120px auto 20px;
}

/* STRATEGIC IMPACT SEC */

.strategic-impact-sec {
  margin-top: -200px;
}

.startegic-card,
.ocm-independent-card {
  box-shadow: 0px 9px 8.7px 0px var(--color-6B6B6B-op25);
}

.startegic-card .strategic-card-image img,
.ocm-independent-card .ocm-independent-card-image img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.startegic-card .strategic-card-content,
.ocm-independent-card .ocm-independent-card-content {
  padding: 60px 30px 60px 80px;
}

/* ============================================================================
===============================================================================
                            WHY OCM SPECIALISTS PAGE
===============================================================================
============================================================================ */

/* WHY OCM SEC */

.why-ocm-specialist-sec .why-ocm-specialist-vector {
  max-width: 360px;
}

.why-ocm-specialist-wrapper .ocm-card .ocm-icon-wrapper {
  background: var(--primary-gradient);
  width: 80px;
  height: 80px;
  box-shadow: 0px 3px 3px 0px var(--black-op25);
  border-radius: 16px;
}

/* LEADERSHIP ADVANTAGE SEC */

.leadership-adv-sec .leadership-adv-card {
  padding: 30px;
}

/* ============================================================================
===============================================================================
                            SERVICE PAGE
===============================================================================
============================================================================ */

.service-area-main .service-area-title-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.service-area-wrapper .service-area-nav-col {
  width: 550px;
  position: sticky;
  top: 50px;
}

.service-area-wrapper .service-area-content-col {
  width: calc(100% - 550px);
}

.service-area-wrapper .service-area-tabs .sa-nav-item .sa-nav-link {
  padding: 30px;
  background-color: var(--main-white);
  transition: all 0.4s ease-in-out;
}

.service-area-wrapper .service-area-tabs .sa-nav-item .sa-nav-link.active,
.service-area-wrapper .service-area-tabs .sa-nav-item .sa-nav-link:hover {
  background-color: var(--primary-color);
  color: var(--main-white);
}

.service-area-wrapper .service-area-tabs .sa-nav-item .sa-nav-link svg path {
  transition: all 0.4s ease-in-out;
}

.service-area-wrapper
  .service-area-tabs
  .sa-nav-item
  .sa-nav-link.active
  svg
  path,
.service-area-wrapper
  .service-area-tabs
  .sa-nav-item
  .sa-nav-link:hover
  svg
  path {
  fill: var(--main-white);
}

.service-area-content-col .service-area-tab-content .accordion-item {
  margin: 0;
  padding: 40px;
  background-color: var(--main-white);
}

.service-area-content-col
  .service-area-tab-content
  .service-area-body-content
  .service-area-tab-image {
  max-height: 500px;
}

/* ============================================================================
===============================================================================
                           WHO WE WORK WITH PAGE
===============================================================================
============================================================================ */

/* OUR VALUE SEC */

.ourvalue-accordion-wrapper .accordion-item {
  padding: 0 0 24px 46px;
}

.ourvalue-accordion-wrapper .accordion-item:nth-last-child(1) {
  padding: 0 0 0 46px;
}

.ourvalue-accordion-wrapper .accordion-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 3px;
  height: 100%;
  background-color: var(--color-E6E6E6);
  z-index: 1;
}

.ourvalue-accordion-wrapper .accordion-item::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 3px;
  height: 0%;
  background-color: var(--color-E6E6E6);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.ourvalue-accordion-wrapper
  .accordion-item:has(.accordion-collapse.show)::after {
  height: 100%;
  background-color: var(--primary-color);
  top: 14px;
}

.ourvalue-accordion-wrapper .accordion-item:last-child::before,
.ourvalue-accordion-wrapper .accordion-item:last-child::after {
  display: none;
}

.ourvalue-accordion-wrapper .accordion-item .accordion-button::after {
  background-image: url("../images/who-we-work-with/ourvalue-checkmark-icon.png");
  width: 30px;
  height: 30px;
  background-size: 30px;
  position: absolute;
  left: -46px;
  top: 0;
  bottom: 0;
  margin: 3px 0 auto;
  transform: unset;
  z-index: 2;
}

/* ============================================================================
===============================================================================
                              ERROR - THANKYOU PAGE
===============================================================================
============================================================================ */

.error-banner,
.thankyou-banner {
  padding-top: 104px;
  min-height: 100vh;
}

.error-banner .error-banner-main,
.thankyou-banner .thankyou-banner-main {
  padding: 150px 0;
}

.error-banner-content {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================================================
===============================================================================
                              PRIVACY POLICY PAGE
===============================================================================
============================================================================ */

.privacy-policy-wrapper h3 {
  font-size: 26px;
  line-height: 40px;
  font-weight: 700;
  margin: 30px 0 20px;
}

.privacy-policy-wrapper p {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  margin: 20px 0;
}
