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

*,
*::after,
*::before {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
  list-style: none;
  font-style: normal;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  color: #000;
}

html {
  /* color-scheme: dark light; */
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  height: 7px;
  width: 7px;
  scroll-behavior: smooth;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

button {
  display: inline-block;
  outline: transparent;
  stroke: transparent;
  border: transparent;
  cursor: pointer;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select {
  font: inherit;
  color: #000;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.7);
  resize: unset;
}
button {
  color: #fff;
}
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
select:focus-visible {
  border: none;
  outline: none;
}

label {
  color: #000;
  font-size: 12px;
}

section {
  padding: 4em 1em;
}

h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  margin-top: 1em;
  padding-bottom: 0.3em;
  color: #335288;
  text-align: left;
}
h1 > span {
  color: #138eeb;
}
h2 {
  line-height: 36px;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #000;
  margin-bottom: 1.5em;
  white-space: pre-line; /* css-3 */
  white-space: -moz-pre-line; /* Mozilla, Opera 4-6 */
  white-space: -o-pre-line; /* Opera 7 */
  word-wrap: break-word;
}
h3 {
  font-weight: 700;
  font-size: 25px;
  color: #000;
  margin-bottom: 0.6em;
}
h4 {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #000;
}
h5 {
  font-weight: 700;
  font-size: 13px;
  color: #000000;
}
h6 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.2;
}

p,
div {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #636363;
  text-align: justify;
}
strong {
  font-weight: 700;
  color: #636363;
}

/*--------------- Header---------------------------------*/

.header {
  transition: all 0.5s;
  z-index: 955;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1.5em;
  gap: 6em;
}

.header.header-scrolled {
  background-color: #fff;
  padding: 1em 2.5em;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Poppins", sans-serif;
  margin-top: 3px;
}

/*-------------------- Navigation Menu-------------------------------------*/

/* Desktop Navigation  */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px 15px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3d3d3d;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #1f668f;
}

.navbar .getstarted {
  background: #16425b;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #16425b;
}
.dropdown ul li {
  color: whitesmoke;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul li:hover {
  background-color: #e9effa;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul li a:hover {
  color: rgb(0, 0, 0);
}
.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #16425b;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*
Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #16425b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px !important;
  font-size: 15px;
  color: #16425b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #000000;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 15px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(127, 137, 161, 0.25);
  border-radius: 10px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #16425b;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.heading-pera {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #636363;
  margin-bottom: 4em;
}
.container {
  width: min(100%, 1900px);
  margin-inline: auto;
}

.sec-flex {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.sec-flex > .inner-sec:nth-child(1) {
  min-width: 19rem;
  max-width: 30rem;
}

.home-sec {
  background: #f1f9ff;
}

.home-righ-sec {
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.home-righ-sec .img {
  width: 70%;
}
.home-righ-sec .img img {
  min-width: 14rem;
  position: relative;
  top: 94px;
}

.home-righ-sec .details {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.home-righ-sec .details .box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  background: #f8f9fd;
  border-radius: 12px;
  padding: 0.3em 0.9em;
}
.home-righ-sec .details .box .icon {
  background: #ea4d1a;
  border-radius: 10px;
  padding: 0.6em;
  height: 46px;
}

.home-righ-sec .details .box .icon img {
  max-width: 4em;
}

.home-righ-sec .details .box .box-detail .box-detail-count {
  font-weight: 700;
}

.home-righ-sec .details .box .box-detail .box-detail-p {
  white-space: nowrap;
}

.why-should-section .section-main img {
  width: 24rem;
}

.why-should-section-2 {
  padding: 1em 1em !important;
  min-height: 11.5rem;
  background: url("/assets/img/digital-marketing-service/Marketing-Proposal-Today.webp")
    repeat center center/cover;
}
.why-should-section-2 .section-main * {
  text-align: left;
}
.why-should-section-2 .section-main h2 {
  color: #fff;
  margin-bottom: 0.7em;
}
.why-should-section-2 .section-main h2 span {
  color: #fcc244;
}
.why-should-section-2 .section-main p {
  color: #fff;
  white-space: pre-line;
}
.section-main,
.why-should-points {
  margin-top: 2em;
  max-width: 60rem;
  margin-inline: auto;
}

.section-main {
  gap: 4em;
}

.what-we-can-do-section .section-main img {
  width: 25rem;
  margin-inline: auto;
}

.section-main div {
  flex: 1;
  min-width: 19rem;
  max-width: 28rem;
}

@media screen and (max-width: 350px) {
  .section-main div {
    min-width: 12rem;
  }
  .contact-form-section .inner-sec h2 {
    font-size: 28px;
  }
  .contact-form-section .form-field {
    width: 16rem;
  }
  .g-recaptcha {
    transform: translateX(-25px) scale(0.8);
  }
}

.section-main p {
  margin-bottom: 1em;
}

.material-symbols-outlined {
  font-weight: 900;
  color: #000;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.cards-container p {
  text-align: center;
}

.section-main .box:nth-child(odd) {
  border-radius: 10px;
  background: linear-gradient(to bottom right, #fe4a73, transparent);
  text-align: center;
  flex: 3;
  padding: 2em 4em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  position: relative;
  z-index: 1;
}
.section-main .box:nth-child(even) {
  border-radius: 10px;
  background: linear-gradient(to bottom right, #52c2fe, transparent);
  text-align: center;
  flex: 3;
  padding: 2em 4em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  position: relative;
  z-index: 1;
}
.section-main .box::after {
  background: #ffffff;
  content: " ";
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 10px;
  transform: skew(-0.2deg, -0.2deg) translate(0.2px, 0.2px);
}
.section-main .box img {
  margin-inline: auto;
  margin-bottom: 1em;
}

.plan-cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
}

.plan-card {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 30px;
  padding: 1.5em;
  flex: 1;
  max-width: max-content;
  min-height: 46rem;
}
.plan-card .card-top {
  text-align: center;
  border-bottom: 1px solid #d2d4d8;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.plan-card .card-top p {
  text-align: center;
}
.plan-card .card-top button {
  background: #715de2;
  border-radius: 10px;
  padding: 0.7em 5em;
}

.card-main h5 {
  margin-bottom: 0.7em;
}
.card-main > div {
  margin-bottom: 1.6em;
}
.card-main > div > div {
  display: flex;
  height: 27px;
}

.plan-tick {
  color: #fff;
  background: #fcc244;
  font-size: 13px;
  border-radius: 25px;
  display: inline-block;
  padding: 2px;
  height: 19px;
  margin-right: 10px;
}

.popular-plan {
  background: #715de2;
  min-height: 47.5rem;
  position: relative;
}
.popular-plan .popular-label {
  background: #fcc244;
  border-radius: 10px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3em 3em;
  color: #000;
}

.popular-plan * {
  color: #fff;
}
.popular-plan h4 {
  color: #fcc244;
}
.popular-plan button {
  background: #fcc244 !important;
  color: #000;
}
.audit-report-banner {
  background: #fcc244;
  border-radius: 10px;
  padding: 1.5em 3em;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-top: 9em;
  max-width: 60rem;
  margin-inline: auto;
  color: #000;
  display: flex;
}
.audit-report-banner .audit-report-banner-content {
  flex: 5;
}
.audit-report-banner .audit-report-banner-content p {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 0.6em;
}
.audit-report-banner .audit-report-banner-content h3 {
  margin-bottom: 1em;
}
.audit-report-banner .audit-report-banner-content button {
  background: #715de2;
  border-radius: 50px;
  padding: 0.7em 3em;
}
.audit-report-banner .audit-report-banner-img {
  position: relative;
  flex: 3;
  margin-bottom: -25px;
}
.audit-report-banner .audit-report-banner-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 17rem;
  z-index: 999;
}

@media screen and (max-width: 600px) {
  .audit-report-banner .audit-report-banner-img {
    display: none;
  }
  .pop-form-container .main-form .form-field {
    width: 15.5rem;
  }
  .pop-form-container .main-form .form-field .g-recaptcha {
    transform: scale(0.8) translateX(-40px);
  }
}

.team-container .box {
  position: relative;
  margin-bottom: 7rem;
  padding-bottom: 2em !important;
}
.team-container .box .team-member {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translateX(-50%);
}

.contact-form-section {
  padding-top: 7em;
  background: url("../img/form-imgs/contact-form-BG.png") no-repeat -150px center/cover;
  gap: 5em;
  flex-wrap: wrap;
  padding-bottom: 7em;
}

.contact-form {
  background: #335288;
  border-radius: 22px;
  padding: 2.5em 1em;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  width: 20rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}

form label,
.contact-form h3,
.contact-form p {
  color: #fff;
}

form input[type="submit"] {
  background: #fcc244;
  border-radius: 50px;
  color: #000;
  cursor: pointer;
  outline: none;
  border: none;
  stroke: none;
}
form input[type="submit"]:active {
  outline-style: solid;
  outline-width: 4px;
  outline-color: rgba(183, 131, 19, 0.7);
}

.pop-up-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow: auto;
  display: none;
  padding: 0.5em 0.5em;
}

.pop-form-container {
  position: relative;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #335288;
  border-radius: 5px;
  padding: 1.5em 4em;
  max-width: 45rem;
}

#form-close-btn {
  position: absolute;
  top: 2%;
  right: 2%;
  font-size: 35px;
  color: #fcc244;
  cursor: pointer;
}
#form-close-btn:active {
  color: #835d0b;
  user-select: none;
}

.hanger-heading img {
  width: 6rem;
  position: relative;
  top: -11px;
  left: 42.5%;
  animation: swing ease-in-out 4s infinite;
  transform-origin: center top;
  z-index: 99;
}

.form-box-container {
  background-color: #fff;
  border-radius: 15px;
  margin-top: 2em;
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding-bottom: 4em;
}

@media screen and (max-width: 1210px) {
  .form-box-container {
    padding-inline: 4em;
  }
  .pop-form-container {
    padding: 1.5em 1em;
  }
}

@media screen and (max-width: 500px) {
  .form-box-container {
    padding-inline: 1em;
  }
  .pop-form-container {
    padding: 1.5em 1em;
  }
  .pop-form-container h2 {
    font-size: 25px;
  }
  .pop-form-container h3 {
    font-size: 22px;
  }
  #form-close-btn {
    top: 0;
    right: 0;
  }
}

.form-box-container h3 {
  flex: 100%;
}
.main-form input,
.main-form textarea {
  border-bottom: 2px solid #000;
  border-radius: 0;
  flex: 100%;
}
.main-form input:focus,
.main-form textarea:focus {
  border-bottom: 1px solid #000000;
}
.main-form input[type="text"],
.main-form input[type="email"] {
  flex: 1;
}

/* =================================loader css ======================= */

.loading-loader {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
}
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 30px;
  width: 30px;
  transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
  animation: animated 1.2s ease-in-out infinite;
}

@keyframes animated {
  0%,
  10%,
  100% {
    height: 28px;
    width: 28px;
  }
  65% {
    height: 45px;
    width: 45px;
  }
}

.spans {
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  animation: rotated 1.2s linear both infinite;
}

@keyframes rotated {
  0%,
  30% {
    transform: rotate(0);
  }
  65% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}

#span1 {
  top: 0;
  left: 0;
  background-color: #55d462;
}

#span2 {
  top: 0;
  right: 0;
  background-color: #8675e5;
}

#span3 {
  bottom: 0;
  left: 0;
  background-color: #d84c77;
}

#span4 {
  bottom: 0;
  right: 0;
  background-color: #fd9a3f;
}

.list-point {
  display: flex;
  justify-content: baseline;
  align-items: center;
  margin-bottom: 0.3em;
}

.marketing-solutions-img img {
  width: 80%;
  margin-inline: auto;
}

/*------------- footer start --------- */
.footer {
  background-color: #e6e5e3;
}

.footer-container {
  max-width: 80rem;
  margin-inline: auto;
}
.footer-container marquee {
  margin-bottom: 1.5em;
}

.footer-link:hover {
  color: #1f668f;
  border-bottom: 1px solid #1f668f;
}

.footer-main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  column-gap: 3em;
}

.footer-main-content * {
  font-size: 17px;
  text-align: left;
}

.footer-main-content h5 {
  font-size: 19px;
  font-weight: 500;
}

.footer-sec {
  flex: 1;
  min-width: 12em;
}

.footer-sec p {
  margin-bottom: 1rem;
}

.footer-sec:not(:nth-child(1)) {
  margin-top: 3em;
}

.footer-logo {
  margin-bottom: 2em;
}
