@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&amp;display=swap");

:root {
  --primary: #1c2648;
  --white: #ffffff;
  --black: #000000;
  --yellow: #fcdc49;
  --orange: #f48120;
  --bodyBG: #fffcf9;
  --fontPrimary: "Poppins", sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--primary);
  background-color: var(--bodyBG);
}
table,
tr,
th,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
p,
a {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  text-decoration: none;

}
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  text-decoration: none;
}
img, svg {
  max-width: 100%;
}

/* Global Styles */
.container-custom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-fluid::after,
.container::after {
  display: table;
  clear: both;
  content: "";
}
.container-full {
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}

.button-with-arrow {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: orange;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: var(--primary);
  border-radius: 5px;
  background: transparent linear-gradient(269deg, #fcdc49 0%, #f48120 100%) 0%
    0% no-repeat padding-box;
  transition: all 0.3s ease-in-out;
  font-family: var(--fontPrimary) !important;
  color: var(--primary) !important;
}
.button-with-arrow span {
  margin-left: 12px;
  transition: all 0.3s ease-in-out;
}
.button-with-arrow:hover {
  background: transparent linear-gradient(91deg, #fcdc49 0%, #f48120 100%) 0% 0%
    no-repeat padding-box;
  transition: all 0.3s ease-in-out;
}
.button-with-arrow:hover span {
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}

.button-with-arrow.single-color {
  background: var(--yellow);
}
.button-with-arrow.single-color:hover {
  background: var(--orange);
}

.heading-large {
  font-size: 50px;
  line-height: 64px;
  font-weight: 700;
  color: var(--primary);
}
.heading-semi-large {
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: var(--primary);
}
.heading-3xl {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--primary);
}
.heading-2xl {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--primary);
}
.heading-xl {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--primary);
}
.text-small {
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  color: var(--primary);
}
.text-x-small {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--primary);
}
.text-orange {
  color: var(--orange);
}

/*----Header css Start here----*/

.header {
  padding: 16px 0;
  position: relative;
}
.header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .logo img {
  max-width: 495px;
}
.header .logo{
  display: flex;
  align-items: center;
}
.header .logo a {
  display: inline-flex;
  align-items: center;
}

.header-top-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-top-actions .top-contact {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.header-top-actions .top-contact .inline-icon {
  margin-right: 10px;
  max-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-top-actions .top-contact .inline-icon img {
  width: 100%;
}
.header-top-actions .top-contact a {
  color: var(--primary);
  display: flex;
  align-items: center;
}
.header-top-actions .top-contact a .contact-link {
  color: var(--primary);
}
.header-top-actions .top-contact a span {
  color: var(--orange);
}

.header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -77px;
  right: 0;
  width: 214px;
  height: 371px;
  background: url("../svg/header-bg.svg");
  background-size: 357px;
  background-repeat: no-repeat;
}

.get-quote-action .get-quote-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  max-width: 30px;
}

/* Hero banner contact */

.hero-banner {
  background: transparent
    linear-gradient(
      301deg,
      rgb(252 220 73 / 10%) 0%,
      rgb(244 129 32 / 10%) 100%
    )
    0% 0% no-repeat padding-box;
  padding: 70px 0;
  position: relative;
}
.hero-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
  height: 170px;
  background: url("../svg/bg-dots.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.hero-banner .banner-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.hero-banner .banner-block::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 560px;
  height: 590px;
  background: url("../svg/hero-blob.svg");
  background-repeat: no-repeat;
  background-size: 600px;
  z-index: -1;
}
.hero-banner .block {
  width: 49%;
}
.hero-banner .block-content .heading-large {
  margin-bottom: 22px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.89);
  box-shadow: 0px 3px 53px #0000000d;
  padding: 55px 50px;
  padding-top: 30px;
  max-width: 100%;
  margin-left: auto;
  margin-bottom: -140px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.contact-form p {
  padding: 0;
  color: #000;
  margin-top: 5px;
}
.contact-form .form {
  margin-top: 30px;
}
.contact-form .form .block {
  width: 48%;
}
.contact-form .form label {
  font-size: 15px;
  line-height: 22px;
  color: var(--primary);
  font-weight: 600;
}
.contact-form .form .input-text {
  border: 1px solid #70707085;
  padding: 0px 15px;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  margin-top: 7px;
}
.contact-form .form textarea {
  border: 1px solid #70707085;
  padding: 10px 15px !important;
  border-radius: 5px;
  width: 100%;
  height: 80px !important;
  margin-top: 7px;
}
.contact-form .form-rows-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.contact-form .submitbtn {
  margin-top: 30px;
  text-align: right;
}
.contact-form .submitbtn button {
  border: none;
  box-shadow: none;
}
label abbr {
  color: red;
}

/* strategic-synergy */

.dotsBg {
  padding: 62px 0;
  background: url("../png/dots-bg-building.png");
}
.strategic-synergy.dotsBg .block-content .text-small{
  margin: 20px 0;
}
.strategic-synergy.dotsBg .block-content .heading-xl{
  font-weight: 600;
}
.strategic-synergy.section-spacing {
  margin-bottom: 90px;
}
.strategic-synergy.top-clip {
  padding-top: 100px;
}
.strategic-synergy.section-spacing .block-content .heading-large{
  margin-bottom: 20px;
}

.strategic-synergy .block-inner,
.redined-web-development .block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strategic-synergy .block {
  width: 50%;
  max-width: 100%;
}

.strategic-synergy .block-content {
  padding-right: 72px;
}
.two-section-bg-wrapper {
  background: transparent
    linear-gradient(144deg, rgb(252 220 73 / 8%) 0%, rgb(244 129 32 / 8%) 100%)
    0% 0% no-repeat padding-box;
  padding-top: 90px;
  padding-bottom: 75px;
}

.strategic-synergy .block-image:hover .mover-1 {
  margin-top: 10px;
}

/* redined-web-development */

.redined-web-development .block-image {
  max-width: 450px;
  width: 100%;
}
.redined-web-development .block-content {
  width: 100%;
  padding-left: 72px;
}

.redined-web-development .block-content .text-small {
  margin-top: 20px;
  margin-bottom: 24px;
}

/* pioneering-strategies */
.pioneering-strategies {
  margin-top: 60px;
}

.pioneering-strategies .heading-semi-large {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 8px;
  text-align: center;
}
.pioneering-strategies .heading-3xl {
  color: var(--orange);
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.strategies-listings {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.strategies-listings.capabilities-empower-listing {
  margin-top: 114px;
}
.strategies-listings.capabilities-empower-listing .strategies-card .text-small{
  font-weight: 700;
  margin-bottom: 13px;
}

.strategies-listings .strategies-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px 20px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.strategies-listings .strategies-card.border-card {
  border: 1px solid #F2E6DB;
}
.strategies-listings .strategies-card.border-card:hover {
  border: 1px solid var(--orange);
  transition: all 0.3s ease-in-out;
}
.strategies-listings .strategies-card.overlapped-card {
  position: relative;
  padding-top: 78px;
}
.strategies-listings .strategies-card .icon {
  margin-bottom: 12px;
}
.strategies-listings .strategies-card .card-desc {
  text-align: center;
}
.card-desc .heading-xl {
  margin-bottom: 12px;
}

.strategies-card .blob-icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
  display: flex;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  background-image: url("../png/gradient-bg.png");
  background-size: 110px;
  background-position: 50%;
  background-repeat: no-repeat;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.strategies-card .rounded-blob{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
  display: flex;
  height: 113px;
  width: 113px;
  align-items: center;
  justify-content: center;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent linear-gradient(137deg, #FFFFFF 0%, rgb(244 129 32 / 20%) 100%) 0% 0% no-repeat padding-box;
  border-radius: 100%;
}
.strategies-card.overlapped-card .rounded-blob{
  position: absolute;
  top: -55px;
}
.strategies-listings:not(.capabilities-empower-listing) .strategies-card{
  border: 1px solid transparent;  
}
.strategies-listings:not(.capabilities-empower-listing) .strategies-card:hover{
  border-color: var(--orange);
  transition: all 0.3s ease-in-out;
}

.strategies-listings:not(.capabilities-empower-listing) .strategies-card:hover .blob-icon{
  transform: translateY(-6px);
}

.strategies-listings:not(.capabilities-empower-listing) .strategies-card .blob-icon img{
  transition: all 0.3s ease-in-out;
}
.strategies-listings:not(.capabilities-empower-listing) .strategies-card:hover .blob-icon img{
  transform: translateY(12px);
  transition: all 0.3s ease-in-out;
}

/* capabilities-empower */
.capabilities-empower {
  background-color: var(--bodyBG);
  padding: 60px 0;
}

.section-heading-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}
.capabilities-empower .section-heading-wrapper .text-small {
  margin-bottom: 14px;
}
.capabilities-empower .section-heading-wrapper .heading-large {
  margin-bottom: 10px;
}

/* versatile-ecosystem */
.versatile-ecosystem {
  padding-top: 60px;
  background-color: var(--bodyBG);
  position: static;
}
.versatile-ecosystem .section-heading-wrapper .text-small{
  margin-top: 20px;
  margin-bottom: 12px;
}
.versatile-ecosystem .section-heading-wrapper .heading-xl {
  font-weight: 500;
}

.versatile-ecosystem .ecosystem-listings {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px;
}
.ecosystem-listings .ecosystem-card .icon {
  margin-bottom: 14px;
}
.ecosystem-listings .ecosystem-card .heading-xl {
  margin-bottom: 11px;
}
.ecosystem-listings .ecosystem-card .icon img{
transition: all 0.3s ease-in-out;
}
.ecosystem-listings .ecosystem-card:hover .icon img{
  transform: translateY(-8px);
  transition: all 0.3s ease-in-out;
}

.dark-bg {
  background-color: var(--primary);
}

.powerhouse-collaboration {
  padding-top: 540px;
  padding-bottom: 78px;
  margin-top: -460px;
  position: static;
}

.powerhouse-collaboration .block-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.powerhouse-collaboration .block-content {
  width: 50%;
  padding-left: 50px;
}
.powerhouse-collaboration .block-content.block-heading {
  max-width: 604px;
  padding-left: 0;
}
.powerhouse-collaboration .heading-large {
  color: var(--white);
  margin-bottom: 14px;
}
.powerhouse-collaboration .heading-2xl {
  font-weight: 500;
}
.powerhouse-collaboration .text-small {
  color: var(--white);
}

.overlapped-graphics {
  position: relative;
  max-width: 1085px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 128px;
}

/*----Contactus css Start here----*/
.contactus {
  background: var(--white);
  position: relative;
  display: flex;
}
.contactus.contact-pantheon{
  display: flex !important;
}
.contactus::after {
  display: table;
  clear: both;
  content: "";
}
.contactus .block-img {
  background: url(../png/contact-desktop.png) no-repeat;
  background-size: cover;
  width: 50%;
  position: relative;
  z-index: 1;
}
.contactus .block-img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  top: 0;
  left: 0;
  z-index: -1;
}
.contactus .content-wrap {
  max-width: 566px;
  margin: 0 auto;
}
.contactus .block-content .content-wrap .heading-3xl {
  margin-bottom: 16px;
}
.contactus .block-img .content-wrap {
  padding: 150px 30px;
  max-width: 610px;
}
.contactus .block-img h2 {
  font-size: 41px;
  line-height: 1.25;
  color: #fff;
  font-weight: 600;
}
.contactus .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 60px;
}
.contactus .contact .icon {
  min-width: 21px;
}
.contactus .contact .email,
.contactus .contact .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contactus .contact .email {
  padding-right: 100px;
}
.contactus .contact .text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding-left: 15px;
}
.contactus .contact a{
  color: var(--white);
  font-weight: 500;
}
.contactus .contact span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  padding-bottom: 5px;
  color: var(--white);
}
.social-icon {
  padding-left: 0;
  margin: 0;
}
.social-icon.social-icon-pantheon{
background: none !important;
width: auto !important;
height: auto !important;
float: none !important;
}
.social-icon li {
  display: inline-block;
  padding: 5px;
}
.social-icon li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 42px;
  width: 42px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 0.3s ease-in;
}
.social-icon li a:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.social-icon li .fa {
  font-size: 20px;
  color: #fff;
}
.contactus .block-content {
  width: 50%;
  max-width: 580px;
  margin: 0 auto;
}
.contactus .block-content figure {
  margin: 0;
  position: absolute;
  right: 0px;
  bottom: -5px;
  z-index: 0;
}
.contactus .block-content figure img {
  max-width: 300px;
}
.contactus .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.contactus .contact-form .button-with-arrow {
  box-shadow: none;
  border: 0;
  margin-top: 30px;
}
.contactus .form-block.w-50 {
  width: 49%;
}
.contactus .form-block.w-50 + .w-50 {
  margin-left: auto;
}
.contactus .form-block {
  width: 100%;
  margin-top: 28px;
}
.contactus .input-text {
  padding: 15px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid #07133d;
  width: 100%;
  outline: none;
  font-family: "Poppins", sans-serif;
}
.contactus textarea.input-text {
  min-height: 100px;
  resize: none;
}
.contactus .input-text::-webkit-input-placeholder {
  color: var(--primary);
  font-weight: 400;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.contactus .input-text:-ms-input-placeholder {
  color: var(--primary);
  font-weight: 400;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.contactus .input-text::placeholder {
  color: var(--primary);
  font-weight: 400;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.contactus .btn-button {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  border: none;
  text-align: left;
  margin-top: 60px;
  cursor: pointer;
}
.contactus .btn-button::after {
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #fff;
  position: absolute;
  content: "";
  transform: rotate(-45deg);
  top: 24px;
  right: 30px;
}
.contactus .block-content .content-wrap {
  padding: 70px 30px;
}

/* Pop-up Styles */

.new-popup-flex{
  display: flex;
}



  /* SVG animate */

  #freepik--Clock--inject-108 {
    transform: translate(14.634px, 18.975px);
    transition: all 0.3s ease-out;
    transition-delay: 0.2s;
  }
  #freepik--Window--inject-108 {
    transform: translate(404.985px, 37.916px);
    transition: all 0.3s ease-out;
  }
  #freepik--Plant--inject-108 {
    transform: translate(15.313px, 236.745px);
    transition: all 0.3s ease-out;
  }
  #freepik--character-3--inject-108 {
    transform: translate(306.718px, 32.045px);
    transition: all 0.3s ease-out;
    transition-delay: 0.1s;
  }
  #freepik--character-2--inject-108 {
    transform: translate(316.432px, 55.794px);
    transition: all 0.3s ease-out;
    transition-delay: 0.2s;
  }
  #freepik--character-1--inject-108 {
    transform: translate(85.852px, 43.345px);
    transition: all 0.3s ease-out;
    transition-delay: 0.1s;
  }
  #freepik--Lines--inject-108 {
    transform: translate(256.132px, 12.011px);
    transition: all 0.3s ease-out;
    transition-delay: 0.25s;
  }
  
  .strategic-synergy .block-image:hover #freepik--Clock--inject-108 {
    transform: translate(14.634px, 6.975px);
  }
  .strategic-synergy .block-image:hover #freepik--Window--inject-108 {
    transform: translate(416.985px, 25.916px);
  }
  .strategic-synergy .block-image:hover #freepik--Plant--inject-108 {
    transform: translate(3.313px, 236.745px);
  }
  .strategic-synergy .block-image:hover #freepik--character-3--inject-108 {
    transform: translate(298.718px, 32.045px);
  }
  .strategic-synergy .block-image:hover #freepik--character-2--inject-108 {
    transform: translate(308.432px, 55.794px);
  }
  .strategic-synergy .block-image:hover #freepik--character-1--inject-108 {
    transform: translate(93.852px, 43.345px);
  }
  .strategic-synergy .block-image:hover #freepik--Lines--inject-108 {
    transform: translate(256.132px, 8.011px);
  }
  .pantheon-heading
  {
    color: #fb843a;
  }
 