* {
  font-family: var(--marketing-font-family);
}

.scrolled {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: var(--marketing-blue-bg);
}
.scrolled .language-dropdown .dropdown-toggle:hover {
  border-color: var(--primary) !important;
}

.up-down {
  animation: updown 1s infinite alternate;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.left-right {
  animation: leftright 1s infinite alternate;
}

@keyframes leftright {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10px);
  }
}
.header-section {
  padding: 15px 0px;
  z-index: 20;
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 767px) {
  .header-section {
    padding: 8px 0px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .header-section {
    padding: 8px 0px;
  }
}
.header-section .header-logo-text {
  max-height: 46px;
}
@media screen and (max-width: 767px) {
  .header-section .header-logo-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .header-section .header-logo-text {
    font-size: 20px;
  }
}
.header-section .header-logo-text img {
  max-height: 46px;
}
@media screen and (max-width: 767px) {
  .header-section .header-logo-text img {
    max-height: 40px;
  }
}
.header-section .header-btn {
  background: var(--offwhite);
  color: var(--heading-c);
  padding: 10px 20px;
  outline: none;
  height: 46px;
  font-size: var(--default-font-size);
  border: none;
  transition: 0.3s all ease-in;
  cursor: pointer;
  border-radius: var(--border-radius-default);
  font-weight: var(--font-weight600);
}
@media screen and (max-width: 767px) {
  .header-section .header-btn {
    padding: 6px 12px;
    outline: none;
    font-size: 14px !important;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .header-section .header-btn {
    padding: 8px 15px;
    outline: none;
    font-size: 14px !important;
  }
}
.header-section .header-btn:hover {
  color: var(--dark-green);
}

.section-1 {
  font-family: var(--marketing-font-family);
}
.section-1 .bg {
  background-image: url(../assets/images/pages/Hero-Section.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding: 60px 0px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.section-1 .bg:before {
  position: absolute;
  left: 0px;
  top: 45%;
  content: "";
  background-image: url(../assets/images/pages/arrow-curved.png);
  background-position: left;
  width: 100%;
  height: 100%;
  max-height: 240px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1300px) {
  .section-1 .bg:before {
    top: 65%;
    max-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section-1 .bg:before {
    top: 45%;
    opacity: 0.5;
  }
}
.section-1 .bg .icon-container {
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0.8;
}
.section-1 .bg .icon-container.star-svg {
  top: 15%;
  left: 6%;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .section-1 .bg .icon-container.star-svg {
    top: 6%;
    left: 2%;
  }
}
.section-1 .bg .icon-container.star1-svg {
  bottom: 13%;
  right: 9%;
  transform: rotate(45deg);
}
.section-1 .bg .icon-container.ellipse-svg {
  right: 10%;
  top: 12%;
}
.section-1 .bg .icon-container.ellipse1-svg {
  left: 10%;
  bottom: 5%;
}
.section-1 .bg .icon-container.ellipse2-svg {
  left: 50%;
  bottom: 25%;
}
.section-1 .heading {
  margin-top: 60px;
  color: var(--white);
  font-size: 48px;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .section-1 .heading {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
}
.section-1 .text-white {
  color: var(--white);
}
.section-1 .title-width {
  max-width: 750px;
  position: relative;
}
.section-1 .title-width .head-logo {
  border-radius: 100%;
  background-color: var(--marketing-blue-bg);
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 10px;
}
@media screen and (max-width: 991px) {
  .section-1 .title-width .head-logo {
    width: 42px;
    height: 42px;
    padding: 5px;
  }
}
.section-1 .title-width .head-logo img {
  display: inline-block;
  border-radius: 100%;
}
.section-1 .ai-img {
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.section-1 .ai-img img {
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .section-1 .ai-img {
    height: 42px;
  }
}
.section-1 .form-banner-wrapper {
  max-width: 450px;
  background: var(--white);
  padding: 10px;
  border: 1px solid var(--border-c);
  border-radius: var(--border-radius-default);
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-1 .form-banner-wrapper {
    max-width: 100%;
  }
}
.section-1 .form-banner-wrapper .input-field {
  padding: 15px;
  border-radius: var(--border-radius-default);
  background-color: var(--grey-light);
  line-height: normal;
  width: 100%;
  box-shadow: 0px 0px 8px rgba(128, 128, 128, 0.4196078431) inset;
  border: 1px solid var(--black-opacity-30);
  color: var(--heading-c);
  font-size: var(--default-font-size);
  font-family: var(--marketing-font-family);
  margin-bottom: 4px;
}
.section-1 .form-banner-wrapper .input-textarea-field {
  padding: 15px;
  border-radius: var(--border-radius-default);
  background-color: var(--grey-light);
  line-height: normal;
  width: 100%;
  min-height: inherit;
  max-height: 80px;
  max-width: 100%;
  overflow-y: auto;
  scale: none;
  box-shadow: 0px 0px 8px rgba(128, 128, 128, 0.4196078431) inset;
  border: 1px solid var(--black-opacity-30);
  color: var(--heading-c);
  font-size: var(--default-font-size);
  font-family: var(--marketing-font-family);
  margin-bottom: 1px;
}
@media screen and (max-width: 575px) {
  .section-1 .form-banner-wrapper .input-textarea-field {
    padding: 5px 15px;
    max-height: 90px !important;
  }
}
.section-1 .form-banner-wrapper .cta-btn {
  background: var(--tertiary-color);
  color: var(--white);
  width: 100%;
  padding: 10px 20px;
  outline: none;
  height: 46px;
  font-size: var(--default-font-size);
  border: 1px solid var(--tertiary-color);
  transform: transition 0.3s all ease-in;
  cursor: pointer;
  border-radius: var(--border-radius-default);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-1 .form-banner-wrapper .cta-btn:hover {
  background-color: var(--tertiary-hover);
  border: 1px solid var(--tertiary-hover);
}
.section-1 .form-banner-wrapper .cta-btn svg {
  width: 20px;
  margin-right: 5px;
}
.section-1 .video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 380px;
  max-height: 380px;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .section-1 .video-container {
    margin-top: 20px;
    height: initial;
    max-height: initial;
  }
}
.section-1 .video-container video {
  height: 380px;
  display: block;
  border-radius: 8px;
  background: #000000;
  width: 100%;
  border: 3px #000000 solid;
}
@media screen and (max-width: 991px) {
  .section-1 .video-container video {
    height: initial;
  }
}
.section-1 .video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}
.section-1 .video-container .play-button .play-icon {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.section-2 {
  font-family: var(--marketing-font-family);
}
.section-2 .background-wrapper {
  background-color: var(--marketing-blue-bg);
  padding: 60px 0px;
  background-image: url(../assets/images/pages/bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  overflow: hidden !important;
  min-height: 100vh !important;
  max-height: auto !important;
  display: flex;
  justify-content: center;
}
.section-2 .background-wrapper .icon-container {
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0.6;
}
.section-2 .background-wrapper .icon-container.star-svg {
  top: 33%;
  right: 26%;
  transform: rotate(25deg);
}
.section-2 .background-wrapper .icon-container.ellipse-svg {
  right: 10%;
  top: 12%;
}
.section-2 .background-wrapper .icon-container.ellipse1-svg {
  left: 10%;
  bottom: 5%;
}
.section-2 .background-wrapper .icon-container.ellipse2-svg {
  left: 20%;
  top: 12%;
}
.section-2 .background-wrapper .heading {
  font-weight: var(--font-weight800);
  color: var(--white);
  margin-bottom: 40px;
  display: block;
  text-align: center;
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .section-2 .background-wrapper .heading {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .section-2 .background-wrapper .heading {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.section-2 .background-wrapper .card1 {
  position: relative;
  background-color: var(--marketing-card-1);
  background-image: url("../assets/images/pages/main-shape-decor-blue-01.svg"), url("../assets/images/pages/main-shape-decor-blue.svg");
  background-position: top -20px left 50%, bottom -20px left 0px;
  background-repeat: no-repeat;
}
.section-2 .background-wrapper .card2 {
  background-color: var(--marketing-card-2);
  background-image: url("../assets/images/pages/main-shape-decor-yellow-01.svg"), url("../assets/images/pages/main-shape-decor-yellow.svg");
  background-position: top -20px left 50%, bottom -20px left 0px;
  background-repeat: no-repeat;
}
.section-2 .background-wrapper .card3 {
  background-color: var(--marketing-card-3);
  background-image: url("../assets/images/pages/main-shape-decor-red-01.svg"), url("../assets/images/pages/main-shape-decor-red.svg");
  background-position: top -20px left 50%, bottom -20px left 0px;
  background-repeat: no-repeat;
}
.section-2 .background-wrapper .card4 {
  background-color: var(--marketing-card-4);
  background-image: url("../assets/images/pages/main-shape-decor-green-01.svg"), url("../assets/images/pages/main-shape-decor-green.svg");
  background-position: top -20px left 50%, bottom -20px left 0px;
  background-repeat: no-repeat;
}
.section-2 .background-wrapper .card5 {
  background-color: var(--marketing-card-5);
  background-image: url("../assets/images/pages/main-shape-decor-purple-01.svg"), url("../assets/images/pages/main-shape-decor-purple.svg");
  background-position: top -20px left 50%, bottom -20px left 0px;
  background-repeat: no-repeat;
}
.section-2 .background-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-2 .background-wrapper .content-box {
  position: relative;
}
.section-2 .background-wrapper .content-box .blurred-box__title {
  font-weight: var(--font-weight800);
  color: var(--heading-c);
  font-size: 28px;
  padding: 20px 0px;
}
@media screen and (max-width: 767px) {
  .section-2 .background-wrapper .content-box .blurred-box__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .section-2 .background-wrapper .content-box .blurred-box__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .section-2 .background-wrapper .content-box .blurred-box__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .section-2 .background-wrapper .content-box .blurred-box__text {
    font-size: 14px;
  }
}
.section-2 .background-wrapper .content-box .blurred-box__step {
  font-weight: var(--font-weight600);
  color: var(--heading-c);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .section-2 .background-wrapper .content-box .blurred-box__step {
    font-size: 14px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .section-2 .background-wrapper .content-box .blurred-box__step {
    font-size: 14px;
  }
}
.section-2 .background-wrapper .content-box .check-icon {
  min-width: 27px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .section-2 .background-wrapper .content-box .check-icon {
    font-size: 16px;
    margin-right: 10px;
  }
}
.section-2 .background-wrapper .image-wrapper {
  text-align: right;
}
.section-2 .background-wrapper .image-wrapper .slide-img {
  width: auto;
  height: 100%;
  max-height: 285px;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .section-2 .background-wrapper .image-wrapper .slide-img {
    width: 100%;
    height: auto;
    max-height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 10px auto;
    text-align: center;
    display: block;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .section-2 .background-wrapper .image-wrapper .slide-img {
    margin: 0px auto;
    max-height: 210px;
  }
}
.section-2 .slider {
  min-width: 900px;
  max-width: 900px;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .section-2 .slider {
    min-width: 80%;
    max-width: 80%;
  }
}
@media screen and (max-width: 575px) {
  .section-2 .slider {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
}
.section-2 .carousel__slider {
  position: relative;
  width: 100%;
}
.section-2 .carousel__item {
  width: 100%;
  min-height: 440px;
  padding: 48px;
  color: var(--heading-c);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  position: absolute;
  top: 0%;
  opacity: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .section-2 .carousel__item {
    padding: 20px;
  }
  .section-2 .carousel__item .col-9,
  .section-2 .carousel__item .col-3 {
    width: 100% !important;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .section-2 .carousel__item {
    padding: 20px;
    min-height: calc(100vh - 150px);
  }
}
.section-2 .carousel__nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-direction: column !important;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .section-2 .carousel__nav {
    flex-direction: row;
    right: 5px;
  }
}
.section-2 .carousel__nav__item {
  background: transparent;
  box-shadow: none;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--body-tc);
  border-radius: 50%;
  cursor: pointer;
}
.section-2 .carousel__nav__item--active {
  background: var(--primary);
}

/*.section-3 {
    font-family: var(--marketing-font-family);
    .bg {
        position: relative;
        width: 100%;
        background-color: var(--marketing-card-1);
        min-height: 60vh;

        align-items: center;
        justify-content: center;
        display: flex;
    }
    .heading {
        color: var(--heading-c);
        font-size: 48px;
        margin-bottom: 40px;
        @media screen and (max-width: 575px) {
            font-size: 32px;
            margin-bottom: 20px;
            margin-top: 0px;
        }
    }
    .text-color {
        color: var(--heading-c);
    }
    .title-width {
        max-width: 720px;
        position: relative;
        padding-right: 110px;
        @media screen and (max-width: 991px) {
            padding-right: 0px;
        }
    }

    .form-banner-wrapper {
        max-width: 450px;
        background: var(--white);
        padding: 10px;
        border: 1px solid var(--border-c);
        border-radius: var(--border-radius-default);
        margin-top: 20px;
        @media screen and (max-width: 575px) {
            max-width: 100%;
        }
        .input-textarea-field {
            padding: 15px;
            border-radius: var(--border-radius-default);
            background-color: var(--grey-light);
            line-height: normal;
            width: 100%;
            min-height: inherit;
            max-height: 80px;
            max-width: 100%;
            overflow-y: auto;
            scale: none;
            box-shadow: 0px 0px 8px #8080806b inset;
            border: 1px solid var(--black-opacity-30);
            color: var(--body-tc);
            font-size: var(--default-font-size);
            font-family: var(--marketing-font-family);
            @media screen and (max-width:575px) {
                padding: 5px 15px;
                max-height: 90px !important;
            }
        }

        .cta-btn {
            background: var(--tertiary-color);
            color: var(--white);
            width: 100%;
            padding: 10px 20px;
            outline: none;
            height: 46px;
            font-size: var(--default-font-size);
            border: 1px solid var(--tertiary-color);
            transform: transition 0.3s all ease-in;
            cursor: pointer;
            border-radius: var(--border-radius-default);
            display: flex;
            align-items: center;
            justify-content: center;
            &:hover {
                background-color: var(--tertiary-hover);
                border: 1px solid var(--tertiary-hover);
            }
            svg {
                width: 20px;
                margin-right: 5px;
            }
        }
    }
    .assistant-img {
        width: 100%;
        height: auto;
        z-index: 2;
    }
    .left-side-section {
        display: flex;
        align-items: center;
        min-height: 60vh;
    }
    .right-side-section {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 60vh;
        @media screen and (max-width: 767px) {
            padding-top: 60px;
            min-height: auto ;
        }
        &:before {
            content: "";
            background-image: url(../assets/images/pages/bar.svg);
            background-repeat: repeat-y no-repeat;
            background-size: contain;
            width: 60%;
            height: 100%;
            position: absolute;
            top: 0%;
            z-index: 1;
            left: 50%;
            transform: translateX(-50%);
            @media screen and (max-width: 767px) {
                width: 60%;
                height: 250px;
            }
        }
        .icon-container {
            position: absolute;
            height: 40px;
            width: 40px;
            opacity: 1;
            &.star-svg {
                top: 34%;
                left: 15%;
            }

            &.ellipse-svg {
                right: 9%;
                top: 62%;
            }
        }
    }
    .section-padding {
        padding: 60px 0px;
        @media screen and (max-width: 767px) {
            padding: 30px 0px 10px 0px;
        }
    }
    @media screen and (max-width: 767px) {
        .mob-col {
            flex-direction: column-reverse;
        }
    }
}*/
.section-4 {
  font-family: var(--marketing-font-family);
}
.section-4 .bg {
  position: relative;
  width: 100%;
  background-color: var(--upgrade-bg);
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  padding: 60px 0px 40px 0px;
  display: flex;
}
.section-4 .bg .icon-container {
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0.5;
}
.section-4 .bg .icon-container.star-svg {
  top: 8%;
  left: 10%;
}
.section-4 .bg .icon-container.ellipse-svg {
  right: 9%;
  top: 12%;
}
.section-4 .bg .icon-container.ellipse1-svg {
  left: 5%;
  top: 38%;
}
.section-4 .bg .upgrades-card {
  background-color: var(--upgrade-card);
  color: var(--heading-c);
  padding: 40px 20px;
  border-radius: var(--border-radius-default);
  display: flex;
  align-items: center;
  min-height: 340px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-4 .bg .upgrades-card {
    min-height: auto;
  }
}
.section-4 .bg .upgrades-card .check-icon {
  min-width: 27px;
  margin-right: 20px;
}
.section-4 .bg .upgrades-card .upgrades-icon-img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}
.section-4 .bg .upgrades-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-4 .bg .upgrades-card ul li {
  margin-bottom: 5px;
}
.section-4 .bg .heading {
  font-weight: var(--font-weight800);
  color: var(--heading-c);
  margin-bottom: 40px;
  display: block;
  text-align: center;
  font-size: 48px;
}
@media screen and (max-width: 575px) {
  .section-4 .bg .heading {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.section-4 .bg .sub-heading {
  font-size: 30px;
  color: var(--dark-green);
  margin-bottom: 5px;
}
.section-4 .bg .heading-card {
  font-weight: var(--font-weight800);
  color: var(--heading-c);
  margin-bottom: 20px;
}
.section-4 .bg .text-color {
  color: var(--heading-c);
}
.section-4 .bg .primary-color {
  color: var(--dark-green);
}
.section-4 .bg .check-icon {
  min-width: 20px;
  margin-right: 10px;
}
.section-4 .bg .cta-anchor {
  margin: 40px auto 0px auto;
  display: block;
  text-align: center;
}
.section-4 .bg .cta-anchor .cta-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  cursor: pointer;
  text-align: center;
  transition: 0.3s ease-in-out;
  transform: translateY(0);
}
.section-4 .bg .cta-anchor .cta-img:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .section-4 .bg .cta-anchor .cta-img {
    max-width: 130px;
  }
}
.section-4 .bg .standard-plan-card {
  padding: 40px 30px;
  background-color: var(--upgrade-plan-card-bg);
  margin-bottom: 20px;
  border-radius: 30px;
  border: 2.5px solid var(--border-dark);
  box-shadow: 2px 2px 0px var(--border-dark);
  min-height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .section-4 .bg .standard-plan-card {
    min-height: auto;
    padding: 30px 20px;
  }
}
.section-4 .bg .standard-plan-card .cta-btn {
  background: var(--blue-btn-bg);
  color: var(--white);
  width: 100%;
  padding: 10px 20px;
  outline: none;
  height: 46px;
  font-size: var(--default-font-size);
  border: 1px solid var(--blue-btn-bg);
  transform: transition 0.3s all ease-in;
  cursor: pointer;
  border-radius: var(--border-radius-default);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-4 .bg .standard-plan-card .cta-btn:hover {
  background-color: var(--marketing-blue-bg);
  border: 1px solid var(--marketing-blue-bg);
}
.section-4 .bg .standard-plan-card .divider-color {
  color: var(--grey200);
}
.section-4 .bg .standard-plan-card .amt-heading {
  font-weight: var(--font-weight800);
  color: var(--dark-green);
  display: block;
  text-align: center;
  font-size: 88px;
}
.section-4 .bg .standard-plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-4 .bg .standard-plan-card ul li:hover {
  opacity: 0.65;
}
.section-4 .bg .sticky-wrapper-plan {
  position: sticky;
  top: 105px;
}
@media screen and (max-width: 991px) {
  .section-4 .bg .sticky-wrapper-plan {
    position: unset;
    top: unset;
  }
}

.section-5 {
  font-family: var(--marketing-font-family);
}
.section-5 .bg {
  background-image: url(../assets/images/pages/footer-bg.png);
  background-repeat: no-repeat;
  background-color: var(--dark-green);
  background-size: cover;
  position: relative;
  width: 100%;
  margin: auto;
  padding: 100px 20px;
}
.section-5 .heading {
  margin-top: 60px;
  color: var(--white);
  font-size: 78px;
  line-height: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section-5 .heading {
    font-size: 42px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.section-5 .text-white {
  color: var(--white);
}
.section-5 .title-width {
  max-width: 720px;
  margin: auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .section-5 .title-width {
    padding-right: 0px;
  }
}
.section-5 .form-banner-wrapper {
  max-width: 720px;
  background: var(--white);
  padding: 10px;
  border: 1px solid var(--border-c);
  border-radius: var(--border-radius-default);
  margin: 30px auto 20px auto;
  position: relative;
}
@media screen and (max-width: 575px) {
  .section-5 .form-banner-wrapper {
    max-width: 100%;
  }
}
.section-5 .form-banner-wrapper .input-field {
  padding: 15px;
  border-radius: var(--border-radius-default);
  background-color: var(--grey-light);
  line-height: normal;
  width: 100%;
  box-shadow: 0px 0px 8px rgba(128, 128, 128, 0.4196078431) inset;
  border: 1px solid var(--black-opacity-30);
  color: var(--heading-c);
  font-size: var(--default-font-size);
  font-family: var(--marketing-font-family);
  margin-bottom: 4px;
}
.section-5 .form-banner-wrapper .input-textarea-field {
  padding: 15px;
  border-radius: var(--border-radius-default);
  background-color: var(--grey-light);
  line-height: normal;
  width: 100%;
  min-height: inherit;
  max-height: 80px;
  max-width: 100%;
  overflow-y: auto;
  scale: none;
  box-shadow: 0px 0px 8px rgba(128, 128, 128, 0.4196078431) inset;
  border: 1px solid var(--black-opacity-30);
  color: var(--heading-c);
  font-size: var(--default-font-size);
  font-family: var(--marketing-font-family);
  margin-bottom: 1px;
}
@media screen and (max-width: 575px) {
  .section-5 .form-banner-wrapper .input-textarea-field {
    padding: 5px 15px;
    max-height: 90px !important;
  }
}
.section-5 .form-banner-wrapper .cta-btn {
  background: var(--tertiary-color);
  color: var(--white);
  width: 100%;
  padding: 10px 20px;
  outline: none;
  height: 46px;
  font-size: var(--default-font-size);
  border: 1px solid var(--tertiary-color);
  transform: transition 0.3s all ease-in;
  cursor: pointer;
  border-radius: var(--border-radius-default);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-5 .form-banner-wrapper .cta-btn:hover {
  background-color: var(--tertiary-hover);
  border: 1px solid var(--tertiary-hover);
}
.section-5 .form-banner-wrapper .cta-btn svg {
  width: 20px;
  margin-right: 5px;
}

.section-6 {
  font-family: var(--marketing-font-family);
}
.section-6 .bg {
  padding: 30px 0px;
  background-color: var(--marketing-card-4);
  background-size: cover;
  position: relative;
  width: 100%;
  padding: 20px 0px;
}
.section-6 .bg .sub-heading {
  font-size: 20px;
  color: var(--heading-c);
  margin-bottom: 15px;
}
.section-6 .bg .anchor-link {
  color: var(--heading-c);
  text-decoration: underline;
}
.section-6 .bg .anchor-link:hover {
  color: var(--dark-green);
  text-decoration: underline;
}
.section-6 .bg .footer-link {
  color: var(--heading-c);
}
.section-6 .bg .social-media-icons a.icon-wrapper {
  display: inline-block;
  margin: 0px 10px;
}
.section-6 .bg .social-media-icons a.icon-wrapper .social-icon {
  width: 32px;
  height: 32px;
}
.section-6 .bg .social-media-icons a.icon-wrapper svg {
  width: 32px;
  height: 32px;
}
.section-6 .bg .social-media-icons a.icon-wrapper svg .svg-icon {
  fill: var(--marketing-header-bg);
}
.section-6 .bg .social-media-icons a.icon-wrapper:hover svg .svg-icon {
  fill: var(--primary);
}
.section-6 .bg .divider-line {
  background-color: rgba(8, 34, 51, 0.2);
  height: 1px;
  border: navajowhite;
  margin: 20px 0px;
}

.marketing-btn {
  background: var(--tertiary-color);
  color: var(--white);
  padding: 10px 20px;
  outline: none;
  height: 46px;
  font-size: var(--default-font-size);
  border: 1px solid var(--tertiary-color);
  transform: transition 0.3s all ease-in;
  cursor: pointer;
  border-radius: var(--border-radius-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.marketing-btn:hover {
  background-color: var(--tertiary-hover);
  border: 1px solid var(--tertiary-hover);
}
.marketing-btn svg {
  width: 20px;
  margin-right: 5px;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}
.language-dropdown .dropdown-toggle {
  background-color: transparent;
  padding: 4px 12px;
  border: none;
  cursor: pointer;
  height: 46px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: inline-flex;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: var(--white);
}
.language-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  border-top-color: var(--white);
}
.language-dropdown .dropdown-toggle:hover {
  border-color: var(--marketing-blue-bg);
}
.language-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  right: 0px;
  background-color: var(--white);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 15px;
}
.language-dropdown .dropdown-menu::after {
  bottom: 100%;
  right: 20px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: var(--white);
  border-width: 6px;
  margin-left: -6px;
}
.language-dropdown .dropdown-menu a {
  color: #021647;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.language-dropdown .dropdown-menu a:hover {
  background-color: #EFF2FF;
  color: #49B100;
}
.language-dropdown .icon {
  width: 24px;
  height: 16px;
  display: inline-block;
  background-image: url(../../images/language-flag.jpg);
  background-repeat: no-repeat;
  margin-right: 8px;
}
.language-dropdown .icon.english {
  background-position: 0px 0px;
}
.language-dropdown .icon.italian {
  background-position: -24px 0px;
}
.language-dropdown .icon.spanish {
  background-position: -48px 0px;
}
.language-dropdown .icon.french {
  background-position: -72px 0px;
}
.language-dropdown .icon.german {
  background-position: -96px 0px;
}

.our-features-section .bg {
  position: relative;
  width: 100%;
  background-color: var(--white);
  padding: 60px 0px 40px 0px;
}
.our-features-section .heading {
  font-weight: var(--font-weight800);
  color: var(--heading-c);
  margin-bottom: 40px;
  display: block;
  text-align: center;
  font-size: 48px;
}
@media screen and (max-width: 575px) {
  .our-features-section .heading {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.our-features-section .feature-row {
  border-bottom: 1px #FFEDED solid;
}
.our-features-section .feature-row .feature-box {
  padding: 20px 10px;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .our-features-section .feature-row .feature-box {
    padding: 10px 0px;
  }
}
.our-features-section .feature-row .feature-box .feature-icon {
  padding-left: 26px;
  position: relative;
}
.our-features-section .feature-row .feature-box .feature-icon .icon {
  position: absolute;
  left: 0px;
  top: 2px;
  width: 20px;
  height: 20px;
}
.our-features-section .feature-row .feature-box .feature-icon .icon.tick svg {
  fill: var(--primary);
}
.our-features-section .feature-row .feature-box .feature-icon .icon.delete svg {
  fill: #FF0D0D;
}
.our-features-section .feature-row.main-heading {
  position: sticky;
  top: 76px;
  background-color: var(--white);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .our-features-section .feature-row.main-heading {
    top: 61px;
  }
}
@media screen and (max-width: 767px) {
  .our-features-section .feature-row.main-heading {
    top: 56px;
  }
}
.our-features-section .feature-row.main-heading .month-text {
  font-size: 16px;
}
.our-features-section .feature-row.sub-heading {
  background-color: #FFEDED;
  color: var(--heading-c);
}
@media screen and (max-width: 767px) {
  .our-features-section .feature-row.sub-heading {
    padding: 0px 10px;
  }
}
.our-features-section .feature-row .border-l {
  border-left: 1px #FFEDED solid;
}
.our-features-section .feature-row .min-h {
  min-height: 100%;
}

.privacy-policy-header {
  background-color: var(--marketing-blue-bg);
}

.privacy-policy-content {
  padding: 100px 0 60px;
  font-family: var(--marketing-font-family) !important;
}
.privacy-policy-content .sub-heading {
  margin-bottom: 4px;
}
.privacy-policy-content ul {
  padding-left: 40px;
}/*# sourceMappingURL=marketing.css.map */