@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 100px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@keyframes colorLoop {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: normal;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section .title {
  font-weight: 800;
  position: relative;
  margin-bottom: 3rem;
  z-index: 1;
  font-size: 48px;
}
.section .title::before {
  content: "";
  display: block;
  position: absolute;
  height: 60px;
  width: 60px;
  top: -10px;
  left: -20px;
  bottom: 0;
  border-radius: 100%;
  background-color: #ffc600;
  z-index: -1;
}
@media (max-width: 991px) {
  .section .title {
    font-size: 32px;
  }
}
.section .title span {
  text-transform: uppercase;
  display: block;
  font-size: 24px;
}
.section .title-alt {
  font-weight: 800;
  position: relative;
  margin-bottom: 1rem;
  z-index: 1;
  font-size: 32px;
}
.section .title-alt span {
  text-transform: uppercase;
  font-size: 18px;
  display: block;
  color: #344B5D;
  margin-bottom: 0.5rem;
}
.section p {
  font-size: 16px;
  line-height: 24px;
}
.section .title-center {
  text-align: center;
}
.section .title-center::before {
  margin: auto;
  right: 0;
  left: 0;
  top: -150px;
  border-radius: 0;
  height: 6px;
  width: 200px;
}
.section .sub-title {
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .section .sub-title {
    font-size: 18px;
  }
}
.section .tag {
  background-color: rgba(52, 75, 93, 0.4);
  border-radius: 4px;
  font-weight: 500;
  margin-right: 8px;
  display: inline-block;
  font-size: 14px;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.section .sec-img {
  display: block;
  width: 100%;
  padding: 1rem;
}
.section .sec-sticky-img {
  position: sticky;
  top: 400px;
}
.section .section-cta {
  text-decoration: none;
  display: block;
  padding: 1rem 2rem;
  background-color: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.section .section-cta:hover {
  background-color: #ffc600;
  color: black;
}

.section-featured {
  background-color: #ffc600;
}
.section-featured .title::before {
  background-color: #344B5D;
}

.section-alt {
  background-color: rgba(255, 198, 0, 0.1);
}

.side-menu {
  position: relative;
  overflow: auto;
  background-color: white;
}
.side-menu .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: initial;
  max-width: 100%;
  min-width: 30%;
}
.side-menu .menu a {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  background-color: white;
  text-decoration: none;
  color: #555;
  text-transform: capitalize;
  cursor: pointer !important;
}
.side-menu .menu a:hover {
  background-color: #f5f5f5;
  color: black;
  background-color: #fffae8;
}
.side-menu .menu .active {
  border-left: thick solid #ffc600;
  color: black;
  font-weight: 600;
  background-color: #fff6d8;
}
.side-menu .menu .active:hover {
  background-color: #fff6d8;
}
.side-menu .sub-menu {
  border-top: thin solid #eee;
  background-color: #f9f9f9;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.side-menu .sub-menu a {
  background-color: transparent;
  font-size: 14px;
  justify-content: flex-start;
}
.side-menu .sub-menu a::before {
  content: "-";
  position: relative;
}

.show-side-menu {
  right: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0px 0 1920px rgba(0, 0, 0, 0.5);
}

.hide-side-menu {
  right: -1000%;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}

.extend-meun a:not([href]) {
  background-color: #f5f5f5;
}
.extend-meun a:not([href]) i::before {
  content: "\f286";
}
.extend-meun .sub-menu {
  height: initial;
  visibility: visible;
}

.btn-side-menu {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  padding: 0;
}
.btn-side-menu i {
  font-size: 24px;
}
@media (max-width: 991px) {
  .btn-side-menu {
    display: none;
    flex-direction: row-reverse;
    border-top: thin solid #eee;
    width: 100%;
    justify-content: flex-end;
  }
  .btn-side-menu i {
    display: flex;
    height: 52px;
    width: 60px;
    justify-content: center;
    align-items: center;
  }
  .btn-side-menu span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    color: black;
  }
}

.btn-close-side-menu {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 1rem 2rem;
  border-bottom: thin solid #eee;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.feature-section-alt {
  background: linear-gradient(45deg, rgba(255, 251, 0, 0.5), rgba(52, 75, 93, 0.25));
  background-size: 200% 200%;
  animation: gradientAnimation 3s infinite forwards;
  position: relative;
  padding: 100px 0;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feature-section-alt::before, .feature-section-alt::after {
  content: "";
  display: block;
  position: absolute;
  outline: 100px solid transparent;
}
.feature-section-alt::before {
  width: 200px;
  height: 200px;
  background-color: #344B5D;
  border-radius: 100%;
  top: -10%;
  left: -100px;
  outline-color: rgba(52, 75, 93, 0.1);
}
.feature-section-alt::after {
  width: clamp(100px, 300px, 100%);
  height: clamp(100px, 300px, 100%);
  background-color: #ffc600;
  outline-color: rgba(255, 198, 0, 0.1);
  border-radius: 100%;
  right: -100px;
  bottom: -25%;
}
.feature-section-alt .title {
  font-size: 48px;
  font-weight: 800;
  color: #333;
}
.feature-section-alt .sub-text {
  font-size: 1.56rem;
}

.grid-blocks {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  margin: 2rem auto 0;
}
.grid-blocks .block {
  background-color: #f5f5f5;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  overflow: hidden;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 0;
  border-top: 2px solid transparent;
}
@media (max-width: 991px) {
  .grid-blocks .block {
    background-size: contain;
    background-position: bottom right;
  }
}
.grid-blocks .block .block-img {
  display: block;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.grid-blocks .block::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background-image: linear-gradient(transparent 0 0%, #f5f5f5 70% 100%);
  z-index: -1;
}
.grid-blocks .block .block-title {
  font-size: 22px;
  font-weight: bold;
  position: relative;
}
.grid-blocks .block p {
  position: relative;
  bottom: -200px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
.grid-blocks .block:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
  z-index: 2;
  background-color: #f9f9f9;
  border-top-color: #ffc600;
}
.grid-blocks .block:hover .block-img {
  transform: scale(0.98);
}
.grid-blocks .block:hover::after {
  height: 80%;
}
.grid-blocks .block:hover p {
  bottom: 0px;
  opacity: 1;
}

.popup {
  display: none;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  overflow: auto;
  z-index: 1000;
}

.popup-form {
  position: relative;
}
.popup-form .img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .popup-form .img {
    height: 250px;
  }
}
.popup-form .img-planner {
  background-image: url("../img/img-form-planner-desktop.webp");
}
@media (max-width: 991px) {
  .popup-form .img-planner {
    background-image: url("../img/img-form-planner-mobile.webp");
  }
}
.popup-form .img-ebook {
  background-image: url("../img/img-form-ebook-desktop.webp");
}
@media (max-width: 991px) {
  .popup-form .img-ebook {
    background-image: url("../img/img-form-ebook-mobile.webp");
  }
}
.popup-form .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  outline: none;
}
.popup-form .btn-close i {
  font-size: 1.24rem;
}
.popup-form .body {
  padding: 2rem;
  overflow: auto;
  background-color: white;
}
.popup-form .body .form-title {
  font-weight: 600;
}
.popup-form .body .form-floating {
  margin-top: 1rem;
}
.popup-form .body .pricing {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
  padding-left: 90px;
  justify-content: center;
  margin: 2rem 0;
  color: black;
  font-size: 1.8rem;
  font-weight: bold;
}
.popup-form .body .pricing::before {
  content: attr(data-offer);
  width: 72px;
  height: 72px;
  background: #ffc600;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  font-weight: 800;
  left: 0;
  padding-bottom: 8px;
}
.popup-form .body .pricing::after {
  content: attr(data-offer-text);
  width: 72px;
  height: 72px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  left: 0;
  padding-top: 32px;
  text-transform: uppercase;
}
.popup-form .body .pricing small {
  color: #666;
  font-size: 1rem;
}
.popup-form .body .cta-btn {
  border: none;
  outline: none;
  margin-top: 1rem;
}

.lbl-error input {
  border-color: red;
}
.lbl-error span {
  font-size: 12px;
  color: red;
}

header {
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .link {
  text-decoration: none;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 8px;
}
header .link span {
  display: block;
}
header .link .menu-icon {
  height: 52px;
  width: 60px;
  background-image: url("../img/nav.svg");
  background-repeat: no-repeat;
}
header .link .about {
  background-position: 0px 0px;
}
header .link .services {
  background-position: -60px 0px;
}
header .link .portfolio {
  background-position: -120px 0px;
}
header .link .creative {
  background-position: -180px 0px;
}
header .link .blog {
  background-position: -240px 0px;
}
header .link .training {
  background-position: -300px 0px;
}
header .link .career {
  background-position: -360px 0px;
}
header .link .contact {
  background-position: -420px 0px;
}
header .link:hover .menu-icon {
  background-position-y: -52px;
}
header .link .title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: black;
}
header .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
@media (max-width: 1199px) {
  header .menu {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  header .menu {
    display: none;
  }
}
header .active {
  font-weight: bolder;
}
header .active .menu-icon {
  background-position-y: -52px;
}
header .active .title {
  font-weight: 700;
}
header .brand {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .brand img {
  height: 70px;
  display: block;
}
@media (max-width: 991px) {
  header .brand {
    flex-grow: 1;
  }
}
header .btnMenu {
  display: none;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 12px;
}
header .btnMenu i {
  font-size: 24px;
}
@media (max-width: 991px) {
  header .btnMenu {
    display: block;
  }
}

@media (max-width: 991px) {
  .openMenu {
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .openMenu nav {
    display: block;
    position: relative;
    padding-top: 70px;
  }
  .openMenu .menu {
    display: block;
  }
  .openMenu .menu li {
    border-bottom: thin solid #eee;
  }
  .openMenu .menu .link {
    flex-flow: row;
    margin: 1rem 0;
    gap: 1rem;
  }
  .openMenu .menu-right li:last-child {
    border-bottom: none;
  }
  .openMenu .brand {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .openMenu .btnMenu i::before {
    content: "\f659";
  }
  .openMenu .btn-side-menu {
    display: flex;
  }
}

main {
  min-height: calc(100vh - 240px);
  overflow: hidd;
}

.hero-page-cover {
  background-image: linear-gradient(45deg, #ffeb3b, rgb(255, 198, 0));
  background-size: 400% 100%;
  padding: 100px 0;
  animation: colorLoop 3s ease-in-out infinite;
  position: relative;
}
.hero-page-cover canvas {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.hero-page-cover .container {
  z-index: 1;
  position: relative;
}
.hero-page-cover .cta {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  font-weight: 700;
}
.hero-page-cover .cta span {
  font-size: 18px;
}
.hero-page-cover .cta a {
  text-decoration: none;
  display: block;
  padding: 1rem 2rem;
  background-color: black;
  color: white;
}
.hero-page-cover .cta a:hover {
  background-color: #ffc600;
  color: black;
}
@media (max-width: 767px) {
  .hero-page-cover canvas {
    opacity: 0.1;
  }
  .hero-page-cover .cta span,
  .hero-page-cover .cta a {
    font-size: 14px;
  }
  .hero-page-cover .cta a {
    padding: 0.5rem 1rem;
  }
}

.home-page-hero {
  min-height: calc(100vh - 312px);
  align-items: center;
}
.home-page-hero h4,
.home-page-hero p {
  margin: 0;
}
.home-page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
}
.home-page-hero p {
  font-size: 28px;
}
.home-page-hero p .repeater {
  padding: 0 4px;
}
@media (max-width: 767px) {
  .home-page-hero {
    min-height: calc(100vh - 412px);
  }
  .home-page-hero h4 {
    font-size: 32px;
  }
  .home-page-hero p {
    font-size: 22px;
  }
}
@media (max-width: 519px) {
  .home-page-hero h4 {
    font-size: 24px;
  }
  .home-page-hero p {
    font-size: 16px;
  }
}

.page-cover {
  background-image: linear-gradient(45deg, #ffeb3b, rgb(255, 198, 0));
  background-size: 400% 100%;
  animation: colorLoop 3s ease-in-out infinite;
  padding: 100px 0;
  position: relative;
}
.page-cover .container {
  z-index: 1;
  position: relative;
}
.page-cover h1 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  line-height: 1;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.page-cover h1 small {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.16);
  padding: 8px 16px;
}
.page-cover p {
  font-size: 24px;
  text-align: center;
}
.page-cover a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 2rem;
  color: white;
  background-color: black;
  text-decoration: none;
  margin: auto;
}
.page-cover .sec-img {
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .page-cover h1 {
    font-size: 40px;
    margin-bottom: 3rem;
  }
  .page-cover p {
    font-size: 16px;
  }
}

.alt-bg {
  background-image: linear-gradient(45deg, #eee, #fff);
}

.repeater {
  font-weight: bold;
}

@media (max-width: 991px) {
  #About .sec-img {
    width: 80%;
    margin: 0 auto 2rem;
  }
  #About h1::before {
    margin: auto;
    left: 0;
    right: 0;
  }
  #About h1,
  #About h4,
  #About p {
    text-align: center;
  }
}

.info-card {
  position: relative;
  background-color: #f5f5f5;
  min-height: 194px;
  display: flex;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  align-items: center;
}
.info-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 24px;
  margin: auto;
  background-color: black;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.info-card p {
  margin: 0;
  width: calc(100% - 200px);
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .info-card p {
    text-align: justify !important;
  }
}
.info-card h3 {
  font-size: 32px;
  font-weight: 800;
  position: relative;
  width: 200px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  margin: 0;
}
.info-card a {
  display: block;
  padding: 8px 16px;
  width: -moz-max-content;
  width: max-content;
  margin-top: 1rem;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  border: thin solid black;
}
.info-card a:hover {
  background-color: black;
  color: white;
}
.info-card:hover {
  background-color: #ffc600;
  color: black;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  z-index: 1;
}
.info-card:hover::before {
  width: 200px;
  height: 100%;
}
.info-card:hover h3 {
  color: white;
  transform: scale(1.5);
}
@media (max-width: 767px) {
  .info-card {
    flex-flow: column;
  }
  .info-card::before {
    top: 0;
    bottom: unset;
    left: 0;
    right: 0;
    width: 24px;
    height: 16px;
    margin: auto;
    background-color: black;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .info-card:hover::before {
    width: 100%;
    height: 90px;
  }
  .info-card p {
    width: calc(100% - 0px);
    padding: 1rem;
    text-align: center;
  }
  .info-card p a {
    margin: 1rem auto 0;
  }
  .info-card h3 {
    height: 100px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media (max-width: 991px) {
  .section-info .row {
    gap: 1rem;
  }
}

[data-count="1"],
[data-count="2"] {
  border-bottom: thin solid rgba(52, 75, 93, 0.1);
}

[data-count="3"],
[data-count="1"] {
  border-right: thin solid rgba(52, 75, 93, 0.1);
}
@media (max-width: 991px) {
  [data-count="3"],
  [data-count="1"] {
    border-right: none;
  }
}

@media (max-width: 991px) {
  [data-count="3"] {
    border-bottom: thin solid rgba(52, 75, 93, 0.1);
  }
}

.data-tile .col-xl-6:nth-child(1) .info-card::before, .data-tile .col-xl-6:nth-child(4) .info-card::before {
  background-color: #ffc600;
}
.data-tile .col-xl-6:nth-child(1) .info-card:hover::before, .data-tile .col-xl-6:nth-child(4) .info-card:hover::before {
  background-color: black;
}
.data-tile .col-xl-6:nth-child(1) .info-card h3, .data-tile .col-xl-6:nth-child(4) .info-card h3 {
  color: #ffc600 !important;
}

.services-stack {
  background-color: #efefef;
}
@media (max-width: 991px) {
  .services-stack .service-card .body {
    min-height: auto;
  }
}

.seprator {
  height: 4px;
  width: 20%;
  background-color: black;
  margin: 50px auto;
  border-radius: 100px;
}

.service-card {
  border: 2px solid black;
  position: relative;
  margin-bottom: 2rem;
  transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card * {
  box-sizing: border-box;
}
.service-card .head {
  border-bottom: 2px solid black;
  display: flex;
  align-items: center;
}
.service-card .head .img {
  display: block;
  height: 72px;
  width: auto;
  margin: 0;
  border-right: 2px solid black;
  background-color: #ffc600;
  position: relative;
}
.service-card .head .img img {
  display: block;
  margin: auto;
  height: 100%;
}
.service-card .head h3 {
  flex-flow: 1;
  padding-left: 1rem;
  margin: 0;
  font-size: 22px;
}
.service-card .head h3 a {
  color: black !important;
  font-weight: 700;
  text-decoration: none;
}
.service-card .body {
  min-height: 220px;
  padding: 1rem;
}
.service-card .body ul {
  margin: 0;
  padding-left: 1rem;
}
.service-card .body ul li {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
}
.service-card .body a {
  color: black;
  text-decoration: none;
}
.service-card .body a:hover {
  text-decoration: underline;
}
.service-card:hover {
  box-shadow: 8px 8px 0px rgb(0, 0, 0);
  transform: translateX(-8px) translateY(-8px);
  background-color: white;
}

.collab {
  position: relative;
  display: flex;
  flex-flow: row;
  margin-bottom: 1rem;
  box-sizing: border-box;
  align-items: center;
}
.collab::after, .collab::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  left: 4px;
  height: 115px;
  width: 100%;
  border-radius: 100px;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.collab::after {
  background-image: linear-gradient(45deg, #ffc600, orange);
}
.collab::before {
  background-color: #344B5D;
  z-index: 1;
  width: 115px;
  box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.5);
}
.collab .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 120px;
  z-index: 2;
}
.collab .img img {
  display: block;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}
.collab .content {
  width: calc(100% - 120px);
  position: relative;
  bottom: 0;
  display: flex;
  flex-flow: column;
  left: 0;
  right: 0;
  top: 16px;
  padding: 0 16px;
  z-index: 2;
}
.collab .content h4,
.collab .content small {
  display: block;
  margin: 0;
}
.collab .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.collab .content small {
  font-size: 13px;
  font-weight: 500;
}
.collab:hover::before {
  width: 100%;
  box-shadow: none;
}
.collab:hover .content h4 {
  color: #ffc600 !important;
}
.collab:hover .content h4,
.collab:hover .content small {
  color: white;
}

.founder-msg {
  position: relative;
  background-position: 1px center;
  background: linear-gradient(300deg, rgb(255, 198, 0) 0%, rgb(255, 231, 0) 40%, rgb(255, 198, 0) 60%, rgb(230, 230, 230) 60%, rgb(230, 230, 230) 100%);
}
@media (max-width: 1199px) {
  .founder-msg {
    background: linear-gradient(300deg, rgb(255, 198, 0) 0%, rgb(255, 231, 0) 0%, rgb(255, 198, 0) 100%, rgb(230, 230, 230) 100%, rgb(230, 230, 230) 100%);
  }
  .founder-msg .sec-img {
    width: 90%;
    display: block;
    margin: 0 auto 3rem;
  }
}

.testimonial {
  background-color: #eee;
}
.testimonial .item {
  display: flex;
  align-items: center;
  flex-flow: column;
}
.testimonial .item img {
  display: block;
  margin: auto;
  width: 150px;
}
.testimonial .item .content {
  padding: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.testimonial .item .content p {
  margin: 0;
  text-align: center;
  min-height: 180px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  color: black;
  display: flex;
}
.testimonial .item .content p::before {
  content: "\f6b0";
  display: block;
  position: relative;
  font-family: bootstrap-icons !important;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  left: 0;
  text-align: left;
}
.testimonial .item .content small {
  font-weight: 600;
  position: relative;
  display: flex;
  color: #344B5D;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-style: italic;
}
.testimonial .item .content small::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #344B5D;
}
.testimonial #testimonial {
  background-color: #ffc600;
  background-image: linear-gradient(45deg, #ffeb3b, rgb(255, 174, 0));
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 0px 40px rgba(0, 0, 0, 0.2);
}
.testimonial #testimonial .owl-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
}
.testimonial #testimonial .owl-nav button span {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.testimonial #testimonial .owl-dots {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.testimonial #testimonial .owl-dots .owl-dot {
  height: 12px;
  width: 12px;
  border-radius: 24px;
  background-color: #344B5D;
  opacity: 0.5;
}
.testimonial #testimonial .owl-dots .active {
  opacity: 1;
}

.campaign {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  height: 100px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
.campaign img {
  width: 100%;
  display: block;
  margin: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.campaign:hover img {
  filter: grayscale(0);
}

.maps {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .maps {
    flex-flow: column;
    row-gap: 2rem;
  }
}
.maps .map {
  display: block;
  position: relative;
}
.maps .map img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  fill: blanchedalmond;
}
.maps .map h4 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-section a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 2rem;
  background-color: #ffc600;
  color: black;
  margin: 2rem auto 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.cta-section a:hover {
  background-color: black;
  color: white;
}
.cta-section h4,
.cta-section p {
  margin: 0;
}
.cta-section h4 {
  font-size: 40px;
  font-weight: 700;
  padding-right: 2rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 24px;
  line-height: 32px;
  position: relative;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 991px) {
  .cta-section p {
    margin-bottom: 3rem;
  }
  .cta-section h4,
  .cta-section p {
    color: white;
  }
  .cta-section a {
    width: 100%;
  }
}

footer {
  background-color: #151515;
  padding: 80px 0 0;
  border-top: thick solid #ffc600;
}
footer .footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-logo-block img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
footer .footer-logo-block .caption {
  color: #ffc600;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  padding-left: 3rem;
}
@media (max-width: 991px) {
  footer .footer-logo-block {
    flex-direction: row;
    align-items: center;
  }
  footer .footer-logo-block img {
    height: 250px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .footer-logo-block .caption {
    padding-left: 0px;
  }
}
footer .foot-col-heading {
  margin: 0 0 1rem;
  font-weight: bold;
  font-size: 1rem;
  color: #ffc600;
}
@media (max-width: 991px) {
  footer .foot-col-heading {
    margin-top: 2rem;
  }
}
footer .links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .links a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
}
footer .links a:hover {
  opacity: 1;
  font-weight: 500;
}
footer .footer-links {
  padding: 1rem 0;
  background-color: #111;
  margin-top: 2rem;
}
footer .footer-links .copyright-note {
  font-size: 14px;
  text-align: center;
  display: block;
  color: #444;
}
footer .footer-links .copyright-note a {
  text-decoration: none;
  font-weight: 500;
  color: #666;
}
footer .footer-links .copyright-note a:hover {
  color: #ffc600;
}
footer .contact-details {
  border-top: thin solid rgba(255, 255, 255, 0.05);
  margin-top: 80px;
  padding-top: 2rem;
  text-align: center;
}
footer .contact-details p {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
footer .contact-details i {
  color: #888;
}
footer .contact-details a {
  text-decoration: none;
  color: #666;
}
footer .contact-details a:hover {
  color: white;
}
footer .footer-social-links {
  border-top: thin solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding-top: 2rem;
}
footer .footer-social-links .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
}
footer .footer-social-links .links a {
  background-color: #344b5d;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
footer .footer-social-links .links a i {
  color: white;
  font-size: 20px;
}

.foot-note {
  background-color: #191919;
  padding: 50px 0;
}
.foot-note p {
  color: #666;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.tile {
  background-color: #f5f5f5;
  padding: 1rem;
  margin-bottom: 2rem;
}
.tile img {
  height: 150px;
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1rem;
}
.tile p {
  text-align: center;
  font-weight: 700;
}

.portfolio-cover {
  position: relative;
  padding-bottom: 0;
}
.portfolio-cover img {
  display: block;
  width: 100%;
}
.portfolio-cover .title {
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 2rem;
}
.portfolio-cover small {
  font-size: 20px;
  position: relative;
  font-weight: 600;
  font-style: italic;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.portfolio-cover small::before {
  content: "";
  display: block;
  height: 2px;
  width: 24px;
  background-color: black;
}
.portfolio-cover i {
  font-size: 14px;
  padding-left: 40px;
}
.portfolio-cover a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 2rem;
  background-color: #ffc600;
  color: black;
  margin: 1rem 0 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.portfolio-cover a:hover {
  background-color: black;
  color: white;
}
@media (max-width: 991px) {
  .portfolio-cover .title {
    text-align: center;
  }
  .portfolio-cover small {
    justify-content: center;
  }
  .portfolio-cover i {
    text-align: center;
    display: block;
  }
  .portfolio-cover img {
    width: 70%;
    margin: 2rem auto 0;
  }
}

.creative-post {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.creative-post img {
  display: block;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.creative-post:hover {
  background-color: #ffc600;
}
.creative-post:hover img {
  transform: scale(1.1);
  opacity: 0.5;
}

.creative-tiles {
  background-image: url("../img/bg-portfolio.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.creative-tiles .title {
  color: white;
}

.gallery {
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  min-height: 310px;
}
@media (max-width: 767px) {
  .gallery {
    min-height: auto;
  }
}
.gallery img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1rem;
}
.gallery p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.about-chandu {
  position: relative;
  background-image: linear-gradient(90deg, #ffc600 0%, #ffc600 50%, #344B5D 50%, #344B5D 100%);
}
.about-chandu .sub-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  position: sticky;
  top: 40%;
  width: 50%;
  padding-right: 2rem;
}
.about-chandu .sub-title::after {
  content: "\f231";
  font-family: bootstrap-icons !important;
  display: flex;
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  color: #ffc600;
  font-size: 56px;
}
.about-chandu small {
  font-size: 16px;
  font-style: italic;
  display: block;
}
.about-chandu .content {
  width: 50%;
  position: relative;
  left: 50%;
  top: -200px;
  padding-left: 2rem;
  color: white;
}
.about-chandu p {
  position: relative;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .about-chandu {
    background-image: linear-gradient(#ffc600 0%, #ffc600 16%, #344B5D 16%, #344B5D 100%);
  }
  .about-chandu .sub-title {
    width: 100%;
    z-index: 1;
    position: relative;
    top: unset;
    padding-right: 0;
    text-align: center;
  }
  .about-chandu .sub-title::after {
    content: "\f229";
    position: relative;
    right: 0px;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
  }
  .about-chandu .content {
    width: 100%;
    position: relative;
    left: unset;
    top: unset;
    padding-left: 0rem;
    color: white;
  }
}

.stages {
  position: relative;
}
.stages .stage {
  position: relative;
  overflow: hidden;
  display: block;
}
.stages .stage h4 {
  font-weight: 800;
  color: #344B5D;
  text-align: center;
  font-size: 32px;
  margin: 0;
}
.stages .stage h2 {
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  font-size: 100px;
  color: #ffc600;
}
.stages .stage img {
  display: block;
  margin: auto;
  height: 300px;
  margin-top: -70px;
  position: relative;
}
.stages .stage::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  border-left: thick dotted #344B5D;
  margin: auto;
}

.stage-bg {
  background-image: url("../img/bngl.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 300px 0;
}
.stage-bg::before {
  content: "";
  background-color: rgba(52, 75, 93, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stage-bg h2,
.stage-bg p {
  padding: 8px 16px;
  position: relative;
  z-index: 1;
}
.stage-bg h2 {
  font-weight: 800;
  text-align: center;
  background-color: #ffc600;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.stage-bg p {
  text-align: center;
  background-color: #ffc600;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 18px;
}

.portfolio-gallery {
  background-color: #f5f5f5;
}
.portfolio-gallery .nav-link {
  color: black !important;
}
.portfolio-gallery .nav-link.active {
  color: black !important;
  background-color: #ffc600 !important;
}

.schl {
  position: relative;
}
.schl::before {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  border-left: thick dotted #344B5D;
  margin: auto;
}
.schl .data-tile img {
  width: 90%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.schl .data-tile h3 {
  font-weight: 700;
  text-align: center;
}
.schl .data-tile p {
  text-align: center;
  font-weight: 600;
  width: 80%;
  margin: auto;
}

.line {
  border: thick dotted #344B5D;
  border-bottom: none;
  height: 100px;
  width: 50%;
  margin: auto;
}

.line-reverse {
  border: thick dotted #344B5D;
  border-top: none;
}

.stage3 {
  position: relative;
}
.stage3::before {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  border-left: thick dotted #344B5D;
  margin: auto;
}
.stage3 img {
  display: block;
  margin: auto;
  height: 300px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.stage3 h4 {
  font-weight: 700;
  text-align: center;
}
.stage3 p {
  text-align: center;
  font-weight: 600;
  width: 80%;
  margin: auto;
}

.training-cover {
  background-color: #f5f5f5;
  padding: 100px 0;
}
.training-cover a {
  background-color: #ffc600;
  color: black;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 24px;
  display: block;
  margin-top: 1rem;
}
.training-cover a:hover {
  background-color: black;
  color: white;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet-list li {
  display: flex;
  position: relative;
  margin-bottom: 8px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-weight: 500;
}
.bullet-list li::before {
  content: "\f633";
  font-family: bootstrap-icons !important;
  font-weight: 800;
  color: #ffc600;
}

.featured-banner {
  background-color: #344B5D;
}
.featured-banner p {
  margin: 0;
  color: white;
}

.job-list {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
.job-list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: thin solid #ddd;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.job-list .item h4 {
  font-size: 18px;
  font-weight: 600;
}
.job-list .item .points {
  padding: 0;
  margin: 0;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  list-style: none;
}
.job-list .item .points li {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.job-list .item .points li::before {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background-color: #344b5d;
  border-radius: 100px;
}
.job-list .item .link {
  border-radius: 100px;
  padding: 0.5rem 1rem;
  background-color: #ffc600;
  text-decoration: none;
  color: black;
  font-weight: 500;
  cursor: pointer;
}
.job-list .item .link:hover {
  background-color: black;
  color: white;
}

.form {
  position: relative;
  display: flex;
  row-gap: 1rem;
  flex-flow: column;
  padding: 1.5rem;
  background-color: white;
}
.form input,
.form textarea {
  border: thin solid #eee;
  outline: none;
  font-size: 16px;
  padding: 8px;
  box-sizing: border-box;
  color: black;
}
.form button {
  background-color: black;
  color: white;
  border: none;
  outline: none;
  padding: 1rem;
  font-weight: 600;
}
.form button:hover {
  color: #ffc600;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background-color: #eee;
}
.grid .item {
  min-height: 100px;
  padding: 2rem;
  flex-grow: 1;
  height: 150px;
  background-color: white;
}
.grid .item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.grid .item:hover img {
  transform: scale(1.05);
}
.grid .span-2 {
  grid-column-end: span 2;
  grid-row-end: span 2;
  min-height: 200px;
}
.grid .span-3 {
  grid-column-end: span 3;
  grid-row-end: span 3;
  min-height: 400px;
}

.roadmap {
  background-color: #344B5D;
  position: relative;
  background-image: url("../img/roadmap_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.roadmap .container {
  position: relative;
  z-index: 2;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  background-image: linear-gradient(90deg, #344B5D 0%, #344B5D 48%, #ffc600 48%, #ffc600 100%);
}
@media (max-width: 991px) {
  .roadmap::before {
    background-image: linear-gradient(0deg, #ffc600 0%, #ffc600 85%, #344B5D 85%, #344B5D 100%);
  }
}
.roadmap .sticky-content {
  position: sticky;
  top: 200px;
}
.roadmap .title {
  color: white;
}
@media (max-width: 991px) {
  .roadmap .title {
    margin-bottom: 100px;
    text-align: center;
  }
  .roadmap .title::before {
    margin: auto;
    left: 0;
    right: 0;
  }
}
.roadmap p {
  color: white;
  padding-right: 5rem;
}
.roadmap .data {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
}
.roadmap .data img {
  padding: 0.5rem;
  background-color: #ffc600;
  height: 72px;
  width: 72px;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  box-shadow: 0 8px 32px rgba(52, 75, 93, 0.2);
}
.roadmap .data .content {
  display: flex;
  flex-direction: column;
}
.roadmap .data .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.roadmap .data .data-title {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
}
.roadmap .data .data-title span {
  display: block;
  color: #344B5D;
  font-weight: 800;
  font-size: 24px !important;
  margin-top: 4px;
}
.roadmap .data-right {
  flex-flow: row-reverse;
}

.saparate-line {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 0 2rem;
  margin: auto;
}
.saparate-line::before, .saparate-line::after {
  content: "";
  height: 50px;
  display: block;
  position: relative;
  border: 2px dashed rgba(52, 75, 93, 0.5);
}

.sap-up::before {
  border-top: none;
  border-right: none;
}
.sap-up::after {
  border-top: none;
  border-left: none;
  border-bottom: none;
}

.sap-down::before {
  border-top: none;
  border-left: none;
}
.sap-down::after {
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.mission_vision {
  background-color: #344b5d;
}
.mission_vision .d-card {
  overflow: hidden;
}
.mission_vision .d-card .content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 1rem;
  width: 70%;
  min-height: 320px;
}
.mission_vision .d-card .content p {
  font-size: 15px;
}

.overview {
  background-size: cover;
  background-position: center right;
}
@media (max-width: 991px) {
  .overview {
    background-image: none;
  }
  .overview .sub-title {
    font-size: 24px;
  }
}

.pr_activity .feat-img {
  display: block;
  margin: 2rem auto;
  width: 50%;
}

.features {
  background-color: #344B5D;
  color: white;
}
.features .points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features .points li {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin: 2rem;
}
.features .points img {
  width: 32px;
  height: 32px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.features .points .content {
  width: calc(100% - 32px);
}
.features .points .content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #ffc600;
}

.feat-bg {
  background-color: #ffc600;
}

.process_social_media .container .row h3 {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.process_social_media .container .row h3::before {
  font-size: 5rem;
  font-weight: 800;
  border-radius: 0;
  position: relative;
  top: initial;
  left: initial;
  width: 60px;
  height: 60px;
  display: flex;
  flex-grow: 1;
  color: white;
  justify-content: center;
  align-items: center;
  padding-top: 1.24rem;
}
.process_social_media .container .row h3 span {
  font-size: 48px;
  text-transform: initial;
}
.process_social_media .container .row:nth-child(1) h3::before {
  content: "1";
}
.process_social_media .container .row:nth-child(2) h3::before {
  content: "2";
}
.process_social_media .container .row:nth-child(3) h3::before {
  content: "3";
}
.process_social_media .container .row:nth-child(4) h3::before {
  content: "4";
}
.process_social_media .container .row:nth-child(5) h3::before {
  content: "5";
}
.process_social_media .container .row:nth-child(6) h3::before {
  content: "6";
}
.process_social_media .container .row:nth-child(7) h3::before {
  content: "7";
}
.process_social_media .container .row:nth-child(8) h3::before {
  content: "8";
}

.difference {
  background-color: #344B5D;
  color: white;
}

.d-card {
  position: relative;
  display: block;
  align-items: flex-end;
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 1rem;
}
.d-card .content {
  padding: 2rem;
  color: #151515;
  z-index: 1;
}
.d-card .content .bullet-list {
  font-size: 14px;
}
.d-card .content p {
  margin: 0;
  font-size: 15px;
}
.d-card .img {
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .d-card .img {
    position: relative;
    width: 100%;
    height: 200px;
    -o-object-position: center;
       object-position: center;
    margin-top: 1rem;
  }
  .d-card .content {
    width: 100% !important;
  }
}

.career-page {
  height: calc(100vh - 200px);
  background-image: url("../img/img_career_cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.career-page::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80%;
  z-index: 1;
  background-image: linear-gradient(transparent, black);
}
.career-page .content {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  color: white;
}
.career-page .content h1 {
  font-weight: 800;
}
.career-page .content a {
  background-color: #ffc600;
  color: black;
  padding: 1rem 2rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  text-decoration: none;
  margin: auto;
}
.career-page .content a:hover {
  color: white;
  background-color: black;
}

.blog-sec {
  background-color: #eee;
}
.blog-sec .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-sec .title .link {
  font-size: 16px;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.blogs {
  position: relative;
}
.blogs .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.blogs .item img {
  height: auto !important;
  width: 100% !important;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.blogs .item .blog-title {
  display: block;
}
.blogs .item .blog-title a {
  font-size: 24px;
  line-height: 32px;
  display: -moz-box;
  display: -webkit-box;
  min-height: 56px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  color: black;
  font-weight: 700;
}
.blogs .item .timestamp {
  display: block;
  font-size: 14px;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.blogs .item p {
  font-size: 16px;
  line-height: 24px;
  display: -moz-box;
  display: -webkit-box;
  min-height: 56px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogs .item:hover .blog-title {
  color: #ffc600 !important;
}

.dialog-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: auto;
}
.dialog-wrapper .dialog {
  background-color: white;
  padding: 1rem;
  border-radius: 0.24rem;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  box-sizing: border-box;
  box-shadow: 0 32px 40px rgba(0, 0, 0, 0.16);
  min-width: 280px;
  max-width: 768px;
}
.dialog-wrapper .dialog .head,
.dialog-wrapper .dialog .body,
.dialog-wrapper .dialog .footer {
  display: flex;
  position: relative;
}
.dialog-wrapper .dialog .head {
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: thin solid #eee;
}
.dialog-wrapper .dialog .head .title {
  display: flex;
  flex-flow: column;
  margin: 0;
}
.dialog-wrapper .dialog .head .title small {
  font-size: 12px;
}
.dialog-wrapper .dialog .head .title span {
  font-size: 20px;
  font-weight: bold;
}
.dialog-wrapper .dialog .head .btnClose {
  background-color: transparent;
  border: none;
  outline: none;
}
.dialog-wrapper .dialog .head .btnClose:hover {
  background-color: #f5f5f5;
}
.dialog-wrapper .dialog .body {
  padding: 1rem 0;
  flex-flow: column;
}
.dialog-wrapper .dialog .body .row {
  row-gap: 1rem;
}
.dialog-wrapper .dialog .footer {
  justify-content: end;
  padding-top: 1rem;
  border-top: thin solid #eee;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.dialog-wrapper .dialog .footer button {
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.dialog-wrapper .dialog .footer .btnSubmit {
  background-color: #ffc600;
}
.dialog-wrapper .dialog .footer .btnSubmit:hover {
  background-color: black;
  color: white;
}
.dialog-wrapper .dialog .footer .btnClose:hover {
  background-color: #f9f9f9;
}

.open_dialog {
  display: flex;
}

.pe-input {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1rem;
}
.pe-input label {
  font-size: 14px;
  margin-bottom: 8px;
}
.pe-input input,
.pe-input textarea {
  border: thin solid #ddd;
  padding: 12px;
  outline-color: #ffc600;
}

.landing-page-banner {
  background-image: linear-gradient(45deg, #ffc600, orange);
}
.landing-page-banner .content {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.landing-page-banner .content img {
  display: block;
  position: relative;
  height: 300px;
  padding-top: 1rem;
}
.landing-page-banner .content h2 {
  font-weight: 800;
}
.landing-page-banner .content p {
  font-size: 1.24rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .landing-page-banner .content {
    flex-direction: column;
  }
  .landing-page-banner .content img {
    padding-top: 0px;
    height: 250px;
  }
  .landing-page-banner .content h2,
  .landing-page-banner .content p {
    text-align: center;
    display: block;
  }
}
.landing-page-banner .link-main {
  padding: 1rem 2rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: black;
  margin: auto;
  font-weight: 700;
  background-color: white;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.landing-page-banner .link-main:hover {
  background-color: black;
  color: white;
}
@media (max-width: 991px) {
  .landing-page-banner {
    padding: 2rem 0;
  }
}

.floating-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  text-decoration: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.floating-btn i {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  font-size: 24px;
}
.floating-btn span {
  font-weight: 600;
  color: black;
  mix-blend-mode: color-burn;
}
.floating-btn::after {
  content: "Chat with Political Engineer";
  color: #333;
  font-weight: 500;
  display: none;
}
.floating-btn:hover::after {
  display: block;
}

.shop-cover-section {
  background: linear-gradient(45deg, #ffc600, #fffb00);
  background-size: 200% 200%;
  animation: gradientAnimation 5s infinite forwards;
  position: relative;
  padding: 80px 0;
}
.shop-cover-section h1 {
  font-weight: bolder;
  margin: 0 0 1rem;
}
.shop-cover-section h3 {
  margin: 0 0 2rem;
}
.shop-cover-section p {
  margin: 0 0 2rem;
}

.produt-card {
  position: relative;
  background-color: white;
  transition: all 0.3s ease-in-out;
  display: block;
  text-decoration: none;
  color: black;
}
.produt-card .img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.produt-card .content {
  padding: 1.24rem;
}
.produt-card .content .product-title {
  font-weight: bold;
  margin-bottom: 1rem;
}
.produt-card .content .des {
  min-height: 50px;
}
.produt-card .content .price {
  font-size: 20px;
  margin: 2rem 0 1rem;
  font-weight: bold;
  display: flex;
  gap: 8px;
  align-items: center;
}
.produt-card .content .price del {
  font-size: 16px;
  opacity: 0.5;
  font-weight: 500;
}
.produt-card .cta {
  background-color: #ffc600;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
  color: black;
}
.produt-card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
}

.page-cover-section {
  background: linear-gradient(45deg, #ffc600, #fffb00);
  background-size: 200% 200%;
  animation: gradientAnimation 5s infinite forwards;
  height: 500px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-cover-section {
    height: auto;
    padding: 100px 0;
  }
}
.page-cover-section .container {
  display: flex;
  justify-content: center;
  height: 100%;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  flex-direction: column;
}
.page-cover-section .page-name {
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.16);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 4px;
  font-size: 14px;
  margin: 0 0 0.5rem;
}
@media (max-width: 991px) {
  .page-cover-section .page-name {
    margin: 0 auto 0.5rem;
  }
}
.page-cover-section .page-title {
  font-size: 48px;
  font-weight: 800;
}
.page-cover-section .page-sub-title {
  font-size: 1.56rem;
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .page-cover-section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    background-color: rgba(255, 198, 0, 0.5);
  }
  .page-cover-section .container {
    background-position: center center;
    background-size: cover;
  }
  .page-cover-section .container .row {
    z-index: 1;
    position: relative;
  }
  .page-cover-section .container .row h1,
  .page-cover-section .container .row h3 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .page-cover-section .page-title {
    font-size: 40px;
    margin-bottom: 2rem;
  }
  .page-cover-section .page-sub-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.feature-section {
  background-color: #344b5d;
  color: white;
}
.feature-section .team-block {
  color: #344B5D;
  padding: 1.5rem;
  margin: 0 auto;
}
.feature-section .team-block .title,
.feature-section .team-block p {
  text-align: center;
}
.feature-section .team-block p {
  min-height: 150px;
}

.alt-section {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-section {
  background-image: url("../img/coloboration-outline-bg.svg");
  background-repeat: repeat-x;
  background-position: bottom;
}

.ad-verticles .row {
  margin-bottom: 5rem;
}
.ad-verticles .row:last-child {
  margin-bottom: 0;
}
.ad-verticles h2 {
  font-weight: bold;
  margin-bottom: 1.24rem;
  position: relative;
  padding-left: 1rem;
}
.ad-verticles h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #ffc600;
}
.ad-verticles .sec-img {
  max-height: 400px;
  max-width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  margin: auto;
}
@media (max-width: 991px) {
  .ad-verticles .sec-img {
    max-height: 300px;
  }
}

.campaign-reach-impact {
  background-image: url("../img/img-reach-impact.png");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  background-color: #000105;
}
.campaign-reach-impact .container {
  z-index: 10;
  position: relative;
}
@media (max-width: 991px) {
  .campaign-reach-impact {
    background-size: cover;
    background-position: center;
  }
  .campaign-reach-impact::before {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.data-block {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
  background-color: white;
  height: -moz-max-content;
  height: max-content;
  position: relative;
}
.data-block img {
  position: absolute;
  right: 1rem;
  top: 1rem;
  height: 150px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top right;
     object-position: top right;
  filter: opacity(0.3);
}
.data-block .data-block-img-top {
  position: relative;
  top: 0;
  right: 0;
  filter: opacity(1) !important;
  margin-bottom: 1rem;
}
.data-block .title {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.data-block .title::before {
  position: relative;
  left: unset;
  top: unset;
  height: 4px;
  width: 60px;
  border-radius: unset;
  margin-top: 1rem;
}
.data-block p {
  text-align: justify;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 32px;
}

.data-block-center {
  text-align: center;
}
.data-block-center .data-block-img-top {
  margin: 0 auto 1rem;
  display: block;
}
.data-block-center .title {
  margin-bottom: 1.24rem;
}
.data-block-center .title::before {
  margin: 1rem auto 0;
}
.data-block-center .title,
.data-block-center p,
.data-block-center .tag {
  text-align: center;
}

.featured-img-section {
  background-size: 100%;
}

.gradient-mix-bg {
  background-image: linear-gradient(#ffde00, white);
}

.large-data-tile {
  background-color: #F9F9F9;
  border-radius: 1.24rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.large-data-tile:hover {
  box-shadow: 0px 0rem 2rem 0.5rem rgba(0, 0, 0, 0.16);
  background-color: #FFF;
}
.large-data-tile .content {
  padding: 3rem 2rem 0;
}
.large-data-tile .content .title {
  font-size: 32px;
  margin-bottom: 1.5rem;
}
.large-data-tile .content .title::before {
  display: none;
}
.large-data-tile .content p {
  min-height: 200px;
}
.large-data-tile img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.info-data-tile {
  position: relative;
  background-color: #eee;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.info-data-tile img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.info-data-tile .content {
  margin-top: 300px;
  position: relative;
  z-index: 1;
  background-color: #344B5D;
  color: white;
  padding: 2rem;
}
.info-data-tile .content .title {
  margin-bottom: 1.5rem;
}
.info-data-tile .content h4 {
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.info-data-tile .content h4::before {
  content: "";
  width: 4px;
  height: inherit;
  background-color: #ffc600;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.info-data-tile p {
  margin-bottom: 0;
}
.info-data-tile:hover {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.info-data-tile-alt {
  background-color: rgba(255, 198, 0, 0.1);
  height: 100%;
}
.info-data-tile-alt img {
  -o-object-position: center;
     object-position: center;
  position: relative;
  height: 300px;
}
.info-data-tile-alt .content {
  margin-top: 0;
  background-color: transparent;
  color: black;
}

.steps {
  counter-reset: section;
}
.steps .step {
  position: relative;
}
.steps .step::before {
  content: counter(section);
  counter-increment: section;
  position: relative;
  display: block;
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.8;
}
.steps .step::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -35px;
  height: 100px;
  width: 100px;
  background-color: rgba(255, 198, 0, 0.5);
  border-radius: 100%;
  z-index: -1;
}
.steps .step h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.twitter-bg {
  background-color: #000;
  background-image: url("../img/logo-twitter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1300px center;
  color: white;
}

.data-points {
  position: relative;
  border-top: thin solid #eee;
  padding-top: 3rem;
  margin-top: 3rem;
  counter-reset: section;
}
.data-points .point {
  position: relative;
}
.data-points .point::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: -14px;
  bottom: 0;
  width: 1px;
  background-color: #ccc;
}
.data-points .point::before {
  content: counter(section);
  counter-increment: section;
  font-size: 4rem;
  font-weight: 800;
  position: relative;
  text-align: center;
  opacity: 0.2;
  text-align: center;
  display: block;
}
.data-points .point .title {
  font-size: 20px;
  margin-bottom: 1rem;
  text-align: center;
}
.data-points .point .title::before {
  display: none;
}
.data-points .point p {
  text-align: center;
}
.data-points .col-sm-12:last-child .point {
  position: relative;
}
.data-points .col-sm-12:last-child .point::after {
  display: none;
}
@media (max-width: 991px) {
  .data-points .col-sm-12:nth-child(2) .point {
    position: relative;
  }
  .data-points .col-sm-12:nth-child(2) .point::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .data-points .col-sm-12 .point {
    position: relative;
  }
  .data-points .col-sm-12 .point::after {
    display: none;
  }
}

.bg-graphic-image-design {
  background-image: url("../img/img-bg-svg-1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-video-editing {
  background-image: url("../img/img-bg-video-editing.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}

.bg-cartoon-animation {
  background-image: linear-gradient(rgba(255, 251, 0, 0.2), white);
}

.team-block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: white;
  margin-bottom: 2rem;
  transition: all 0.3s ease-in-out;
}
.team-block img {
  display: block;
  height: 150px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 8px;
}
.team-block .title {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 1rem;
}
.team-block .title::before {
  display: none;
}
.team-block .text {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-height: 200px;
}
.team-block:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
}

.team-block-alt {
  border-top: thick solid #ffc600;
  box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.1);
}
.team-block-alt p,
.team-block-alt title {
  text-align: center;
}

.no-height-cover {
  height: initial;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .no-height-cover {
    padding: 100px 0 0;
  }
}

.pointers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.pointers li {
  background-color: #ffc600;
  padding: 1rem 1.24rem;
  border-radius: 0.24rem;
  border-left: thick solid #344B5D;
  border-right: thick solid #344B5D;
}
.pointers li span {
  color: #344B5D;
  font-weight: 600;
}
.pointers li:hover {
  background-color: #344B5D;
}
.pointers li:hover span {
  color: #ffc600 !important;
}

.cta-banner {
  background-color: #344B5D;
  position: relative;
}
.cta-banner .title {
  color: white;
  font-size: clamp(24px, 10vw, 72px);
}
.cta-banner .title small {
  color: #ffc600;
  display: block;
  font-size: clamp(12px, 10vw, 24px);
  font-weight: bold;
}
.cta-banner .title::before {
  display: none;
}
.cta-banner h5 {
  color: white;
}
.cta-banner .block {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.cta-banner img {
  height: 150px;
}
.cta-banner .content h4 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 32px;
  color: white;
}
.cta-banner .content h4::first-letter {
  color: #ffc600;
}
.cta-banner .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: white;
}

.banner {
  background-color: #ffc600;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 3rem;
}
.banner .wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.banner img {
  width: 50%;
  height: 450px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.banner .content {
  width: 50%;
  padding-right: 2rem;
  position: relative;
}
.banner .content::after {
  content: "?";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: clamp(100px, 100vw, 400px);
  font-weight: 800;
  opacity: 0.1;
  z-index: -1;
}
.banner .content h2 {
  text-align: center;
  display: block;
  font-weight: 800;
  margin: 0;
  color: black;
  font-size: clamp(24px, 10vw, 40px);
  position: relative;
}
.banner .content h2 small {
  display: block;
  font-weight: 700;
  font-size: clamp(16px, 10vw, 24px);
  color: #6e5809;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .banner .wrapper {
    flex-direction: column-reverse;
  }
  .banner img {
    width: 100%;
    height: auto;
  }
  .banner .content {
    width: 100%;
    padding: 2rem 2rem 0;
  }
}
.banner .keywords {
  background-color: #6e5809;
  padding: 1rem;
  position: relative;
}
.banner .keywords h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fffb00;
  text-align: center;
}
.banner .keywords .list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  color: #ffc600;
}
.banner .keywords .list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner .keywords .list li::before {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background-color: #ffc600;
  border-radius: 16px;
}

.client {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.client img {
  height: 160px;
  width: 150px;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.client h3 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.client p {
  font-size: 14px;
  text-align: center;
}

.has-box {
  padding-bottom: 0;
}
.has-box .section-box {
  background-color: #eee;
  padding: 50px 0;
}
.has-box .section-box h3 {
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}
.has-box .section-box p {
  text-align: center;
  margin: 0;
}
.has-box .section-box p strong {
  position: relative;
  display: inline-block;
}
.has-box .section-box p strong::after {
  content: "";
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffc600;
}

.foot-links a {
  text-decoration: none;
  color: #666;
}
.foot-links a:hover {
  color: #888;
}

.award-card {
  background-image: url("../img/award-bg-img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
  gap: 1rem;
}
.award-card::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
}
.award-card .content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}
.award-card .content h2,
.award-card .content p {
  margin: 0;
  color: white;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
.award-card .content h2 {
  font-weight: 700;
}
.award-card .cert-img {
  position: relative;
  display: block;
  z-index: 1;
  width: 40%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .award-card {
    flex-direction: column-reverse;
  }
}

@keyframes slidedown {
  0% {
    opacity: 50;
  }
  5% {
    opacity: 0;
    transform: translateY(0.5em);
  }
  7% {
    transform: translateY(-1em);
  }
  10% {
    opacity: 0;
  }
  20% {
    transform: translateY(0);
    opacity: 100;
  }
}
.hero-section {
  background-image: url("../img/img-hero-slider.jpeg");
  background-position: bottom right;
  background-size: cover;
  position: relative;
}
.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0 5%, transparent);
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-section .slide {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  min-height: 550px;
}
.hero-section .title {
  color: white;
  font-weight: 800;
}
.hero-section .title .random-word {
  display: inline-block;
  color: #ffc600;
  letter-spacing: 3px;
  width: auto;
  /*   transition: all 1.25s; */
  animation: slidedown 4s infinite;
}
.hero-section .cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-section .cta .cta-btn {
  background-color: #ffc600;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  gap: 8px;
  font-weight: bold;
  text-transform: uppercase;
  border: thin solid transparent;
}
.hero-section .cta .cta-btn:hover {
  background-color: black;
  color: #ffc600;
  border-color: #ffc600;
}
.hero-section .cta span {
  color: white;
  opacity: 0.8;
  font-style: italic;
}

.daily-scheduling {
  counter-reset: section;
}
.daily-scheduling .title-alt {
  margin-bottom: 2rem;
}
.daily-scheduling .block {
  border: thin solid #eee;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.daily-scheduling .block::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  height: 2px;
  width: 0%;
  background-color: #ffc600;
  transition: all 0.3s ease-in-out;
  margin: auto;
}
.daily-scheduling .block img {
  display: block;
  height: 72px;
  width: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1rem;
}
.daily-scheduling .block .block-title {
  font-size: 1rem;
  font-weight: bold;
}
.daily-scheduling .block p {
  margin: 0;
  font-size: 15px;
}
.daily-scheduling .block:hover {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transform: translateY(-5px);
}
.daily-scheduling .block:hover::after {
  width: 100%;
}
.daily-scheduling .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 991px) {
  .faq .sec-img {
    width: auto;
    height: 300px;
    margin: 0 auto 2rem;
  }
}
.faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}
.faq .accordion .accordion-item {
  border: none;
}
.faq .accordion .accordion-button {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.faq .accordion .accordion-button[aria-expanded=true] {
  background-color: #ffc600;
  color: black;
}
.faq .accordion .accordion-collapse {
  border: none;
}
.faq .accordion .accordion-collapse.show .accordion-body {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  margin-bottom: 1rem;
}
.faq .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
  flex-direction: column;
}

.cta .cta-banner {
  position: relative;
  background-color: black;
}
.cta .cta-banner .row {
  min-height: 350px;
}
.cta .cta-banner .content {
  padding: 2rem;
  color: white;
}
.cta .cta-banner .content p {
  margin-bottom: 2rem;
}
.cta .cta-banner .banner-title {
  font-weight: bold;
  margin-bottom: 1rem;
}
.cta .cta-banner .banner-title span {
  display: block;
  font-weight: normal;
  color: #ffc600;
}
.cta .cta-banner .cta-btn {
  background-color: #ffc600;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  gap: 8px;
  font-weight: bold;
  text-transform: uppercase;
  border: thin solid transparent;
}
.cta .cta-banner .cta-btn:hover {
  background-color: black;
  color: #ffc600;
  border-color: #ffc600;
}
.cta .cta-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.note .sec-img {
  margin: 0 auto;
  width: 80%;
}
.note .content {
  position: sticky;
  top: 100px;
}
.note .note-block {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .note .note-block {
    padding: 1.24rem;
  }
}
.note .title-center {
  text-align: center;
  margin-top: 1rem;
}
.note .title-center::before {
  display: none;
}

.compare-section .block {
  padding: 2rem;
  background-color: #ccc;
  position: relative;
}
.compare-section .block .block-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
}
.compare-section .block .block-title span {
  font-size: 16px;
  display: block;
  font-weight: 600;
}
.compare-section .block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.compare-section .row .col-sm-12:first-child .block {
  background-color: #ffc600;
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .compare-section .row .col-sm-12:first-child .block {
    transform: scale(1);
  }
}
.compare-section .row .col-sm-12:first-child .block::before {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  left: -40px;
  transform: rotate(45deg);
  width: 80px;
  height: 80px;
  background-color: black;
}

.e-book-cover {
  background-color: white;
}

.boxed-hero-cover {
  position: relative;
  padding: 2rem;
  margin: 1rem auto;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.24);
  border-radius: 2rem;
  overflow: hidden;
}
.boxed-hero-cover .row {
  position: relative;
  z-index: 1;
}
.boxed-hero-cover::before {
  content: "";
  display: block;
  width: 620px;
  height: 500px;
  background-color: #ffc600;
  position: absolute;
  bottom: -100px;
  right: -50px;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .boxed-hero-cover::before {
    height: 450px;
  }
}
.boxed-hero-cover .title {
  font-size: clamp(14px, 10vw, 24px);
  margin: 0 0 1.5rem;
}
.boxed-hero-cover .title span {
  font-size: clamp(24px, 10vw, 40px);
  display: block;
  font-weight: 700;
  color: #344B5D;
  line-height: 1;
  margin-top: 0.5rem;
}
.boxed-hero-cover p {
  line-height: 1.5;
}
.boxed-hero-cover img {
  display: block;
  width: 100%;
}
.boxed-hero-cover .cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.boxed-hero-cover .cta-btn {
  background-color: #ffc600;
  color: black;
  padding: 1rem 1.5rem;
  display: block;
  text-decoration: none;
  font-weight: bold;
}
.boxed-hero-cover .cta-btn:hover {
  background-color: #344B5D;
  color: #ffc600;
}

.cta-btn {
  background-color: #ffc600;
  color: black;
  padding: 1rem 1.5rem;
  display: block;
  text-decoration: none;
  font-weight: bold;
  border: none;
}
.cta-btn:hover {
  background-color: #344B5D;
  color: #ffc600;
}

.cta-btn-alt {
  background-color: #344B5D;
  color: #ffc600;
}
.cta-btn-alt:hover {
  background-color: #ffc600;
  color: #344B5D;
}

.why-box {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  border-radius: 1.5rem;
  background-color: #344B5D;
  overflow: hidden;
  min-height: 550px;
}
.why-box .col {
  padding: 2.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-box .col:first-child {
  background-color: #ffc600;
}
.why-box .col:first-child p {
  flex-grow: 1;
}
.why-box .col:last-child {
  color: white;
}
.why-box .col:last-child .point {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.img-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: #f9f9f9;
  padding: 1rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.img-box img {
  display: block;
  margin: auto;
  height: 80px;
}
.img-box p {
  margin: 0 !important;
}
.img-box:hover {
  background-color: rgba(255, 198, 0, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.quote {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem !important;
  line-height: 1.24 !important;
  text-align: center;
  font-weight: 700;
}

.cta-banner-footer {
  padding: 0;
  position: relative;
}
@media (max-width: 991px) {
  .cta-banner-footer {
    padding: 3rem 0 0;
  }
}
.cta-banner-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background-color: #344B5D;
  z-index: -1;
}
@media (max-width: 991px) {
  .cta-banner-footer::before {
    height: 100%;
  }
}
.cta-banner-footer img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .cta-banner-footer img {
    height: 250px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.cta-banner-footer h3 {
  color: white;
  font-weight: 700;
  text-align: center;
}
.cta-banner-footer .cta-btn {
  width: -moz-max-content;
  width: max-content;
  margin: 1rem auto 3rem;
}
@media (max-width: 767px) {
  .cta-banner-footer .cta-btn {
    margin: 1rem auto 1rem;
  }
}
.cta-banner-footer .cta-btn:hover {
  background-color: rgba(255, 198, 0, 0.16);
}

.offer-section {
  background-color: black;
  position: relative;
}
.offer-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 48%;
  background-color: #ffc600;
  background-image: url("../img/e-book/img-offer-e-book.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .offer-section::after {
    width: 100%;
    top: unset;
    height: 250px;
    position: relative;
    margin-top: 3rem;
  }
}
@media (max-width: 991px) {
  .offer-section {
    padding-bottom: 0;
  }
}
.offer-section .title {
  color: #ffc600;
}
.offer-section .title::before {
  background-color: #344b5d;
}
.offer-section .title span {
  color: gray;
}
.offer-section p {
  color: white;
}
.offer-section .price {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 1rem;
  line-height: 1.16;
}
.offer-section .price del {
  font-size: 1.24rem;
  opacity: 1;
  color: white;
  opacity: 0.5;
  font-weight: 500;
}
.offer-section .price b {
  font-size: 2rem;
  color: #ffc600;
  font-weight: 800;
}
.offer-section .cta-btn-box {
  border: thin solid #ffc600;
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
}
.offer-section .cta-btn-box span {
  color: #ffc600;
  padding: 1rem;
}
.offer-section .cta-btn-box a {
  background-color: #ffc600;
  color: black;
  padding: 1rem;
  display: block;
  text-decoration: none;
  font-weight: bold;
}

.contact-map {
  position: relative;
  padding: 160px 0 100px;
}
.contact-map iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.contact-map .content {
  background-color: rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.contact-map .container {
  background-color: #ffc600;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  padding: 0;
}
.contact-map .address {
  padding: 2rem;
}
.contact-map .address .title {
  font-weight: bold;
}

.g3-section {
  background-image: url("../img/vector-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  position: relative;
}
.g3-section .img-info-card {
  margin: 1rem 0 0;
}
.g3-section .img-info-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.g3-section .img-info-card img {
  height: 300px;
}
@media (max-width: 767px) {
  .g3-section .img-info-card img {
    height: 250px;
  }
}
.g3-section .img-info-card h3 {
  font-weight: bold;
}
.g3-section .img-info-card .content {
  background-color: white;
}
.g3-section .img-info-card:hover h3 {
  color: #ffc600;
}
@media (max-width: 991px) {
  .g3-section .card-2 {
    flex-direction: row-reverse;
  }
}

.shop-section {
  background-color: #ffc600;
}
.shop-section .title {
  font-size: 40px;
}
@media (max-width: 991px) {
  .shop-section .row {
    row-gap: 2rem;
  }
}
.shop-section .produt-card .product-title {
  font-size: 24px;
}
.shop-section .produt-card .cta {
  background-color: black;
  color: white;
}

.about-page-cover {
  padding: 0;
}
@media (max-width: 991px) {
  .about-page-cover {
    padding-top: 100px;
  }
  .about-page-cover h1 {
    text-align: center !important;
    margin: 0;
  }
}
.about-page-cover img {
  width: 100%;
  display: block;
  margin: 0 auto;
}/*# sourceMappingURL=main.css.map */