/* Fonts */
@import url("css2.css");
@font-face {
  font-family: "m-regular";
  src: url("../font/Montserrat-Regular.eot");
  src: url("../font/Montserrat-Regular.eot?#iefix") format("embedded-opentype"),
    url("../font/Montserrat-Regular.woff2") format("woff2"),
    url("../font/Montserrat-Regular.woff") format("woff"),
    url("../font/Montserrat-Regular.ttf") format("truetype"),
    url("../font/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "m-medium";
  src: url("../font/Montserrat-Medium.eot");
  src: url("../font/Montserrat-Medium.eot?#iefix") format("embedded-opentype"),
    url("../font/Montserrat-Medium.woff2") format("woff2"),
    url("../font/Montserrat-Medium.woff") format("woff"),
    url("../font/Montserrat-Medium.ttf") format("truetype"),
    url("../font/Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "m-semibold";
  src: url("../font/Montserrat-SemiBold.eot");
  src: url("../font/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../font/Montserrat-SemiBold.woff2") format("woff2"),
    url("../font/Montserrat-SemiBold.woff") format("woff"),
    url("../font/Montserrat-SemiBold.ttf") format("truetype"),
    url("../font/Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "m-bold";
  src: url("../font/Montserrat-Bold.eot");
  src: url("../font/Montserrat-Bold.eot?#iefix") format("embedded-opentype"),
    url("../font/Montserrat-Bold.woff2") format("woff2"),
    url("../font/Montserrat-Bold.woff") format("woff"),
    url("../font/Montserrat-Bold.ttf") format("truetype"),
    url("../font/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: m-regular;
}
body {
  padding-top: 61px;
}
html {
  font-size: 16px;
}
img {
  max-width: 100%;
}
section {
  overflow: hidden;
}
.page-body {
  padding-top: 60px;
}

.section-heading {
  color: #fff;
  font: 1.875rem/1.5 m-bold;
  margin-bottom: 20px;
  text-align: center;
}
.section-sub-text {
  color: rgba(255, 255, 255, 0.7);
  font: 1.25rem/1.5 m-medium;
  text-align: center;
}
.section-heading-left {
  font: 1.875rem/1.4 m-bold;
  color: #040606;
  margin-bottom: 1.875rem;
  max-width: 50%;
}
.section-sub-text-left {
  color: rgba(4, 6, 6, 0.7);
  font: 1.25rem m-medium;
  max-width: 50%;
  margin-bottom: 1.875rem;
}
.banner-btn {
  display: flex;
  align-items: flex-end;
}
.banner-btn .primary-btn {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.9375rem 2.1875rem;
  background: #fd805b;
  border-radius: 4px;
  color: #fff;
  transition: 0.3s;
}
.banner-btn .primary-btn:hover {
  background: #ff6f2f;
}
.banner-btn .btn {
  border-radius: 35px 35px 0px 35px;
  background: #5078fc;
  padding: 0.9375rem 2.1875rem;
  color: #ffffff;
  font: 1.125rem m-bold;
  margin-right: 4px;
}
.banner-btn .dark-btn {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.9375rem 2.1875rem;
  background: #111c4a;
  border-radius: 4px;
  color: #fff;
  transition: 0.3s;
}
.banner-btn .dark-btn:hover {
  background: #8467ff;
}
.banner-btn .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid #687be5;
  border-radius: 50%;
  margin: 0 4px;
  vertical-align: bottom;
}
.banner-btn .btn:hover ~ .dot {
  animation-name: dot-bounce;
  animation-duration: 1s;
}
.dot:nth-child(1) {
  animation-delay: 0ms;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes dot-bounce {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}
.banner-section {
  padding: 3.75rem 0px 20px;
}

.banner-section .banner-content h2 {
  font: 2rem/1.4 m-bold;
  color: #040606;
  margin-bottom: 1.875rem;
}
.banner-section .banner-content {
  padding-right: 9.375rem;
}
.banner-section .banner-content p {
  font: 1.25rem/1.5 m-medium;
  color: #040606;
  margin-bottom: 1.875rem;
}
.banner-section .banner-img img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  display: block;
  padding: 0 15px;
}
.custom-list {
  list-style: none;
  padding: 0;
}
.custom-list li {
  position: relative;
  padding: 10px 10px 10px 1.875rem;
}
.custom-list li::before {
  content: "";
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 2px solid #ff904b;
  border-radius: 50%;
  left: 0;
  top: 13px;
}
.custom-list.audio-icon li::before {
  border: 0;
  background: url(../images/speaker-voice.svg) no-repeat;
  background-size: cover;
}
.custom-list.audio-icon.secondary-icon li::before {
  border: 0;
  background: url(../images/speaker-volume.svg) no-repeat;
  background-size: cover;
}
.secondry-btn {
  background: #4746a3;
  color: #fff;
  font: 1.125rem m-bold;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  white-space: normal;
}
.secondry-btn:hover {
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
}
.btn::after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  transform: scale(0.1);
}
.btn:hover img {
  transform: translateX(5px);
}
.btn img {
  margin-left: 1.875rem;
  transition: 0.3s;
}
.cta-btn {
  background: #5078fc;
  box-shadow: 0px 20px 50px rgba(2, 31, 255, 0.61);
  border-radius: 4px;
  color: #fff;
  font: 1.25rem m-medium;
  padding: 0.9375rem 2.8125rem;
  transition: 0.3s;
  margin: 0 auto;
  will-change: transform;
}
.cta-btn.secondry {
  background: #fd805b;
  box-shadow: 0px 20px 50px rgba(214, 130, 99, 0.61);
}
.cta-btn:hover {
  color: #fff;
  transform: scale(1.1);
}
.bottom-cta {
  padding: 5rem 0;
  background: url(../images/cta-bg.svg) no-repeat bottom center;
  text-align: center;
}
.bottom-cta h2 {
  font: 1.875rem/1.7 m-bold;
  max-width: 70%;
  margin: 0 auto 3.75rem;
}
.error {
  color: #f00 !important;
  margin-top: 5px;
  font: 14px m-medium !important;
}
.page-not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/404-bg.png) no-repeat;
  background-size: contain;
  padding: 5% 0;
}
.page-not-found h3 {
  font-size: 3.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #000;
  text-align: center;
}
.page-not-found p {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.125rem;
  color: #000;
  text-align: center;
}
.page-not-found span {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 3.125rem;
  color: #000;
  text-align: center;
  opacity: 0.7;
  text-align: center;
}
.page-not-found .action-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-not-found .action-container .btn {
  padding: 0.9375rem;
  width: 15.625rem;
  margin: 0 1.875rem;
  font-size: 1.375rem;
  line-height: normal;
  justify-content: center;
}
.page-not-found .action-container .btn.btn-primary {
  background: #4a58ff;
  border-color: #4a58ff;
}
.page-not-found .action-container span {
  margin: 0;
  font-size: 1.5625rem;
  opacity: 1;
}

.arrow-list li {
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: 1.875rem;
  font: 1.125rem/1.5 m-semibold;
}
.arrow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/list-arrow.svg) no-repeat;
  background-size: cover;
  will-change: transform;
  transition: 0.3s;
}
.arrow-list li:hover::before {
  transform: rotate(30deg);
}
.outline-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid #3352fb;
  border-radius: 4px;
  background: transparent;
  color: #3352fb;
  font: 1.25rem m-medium;
  padding: 0.9375rem 1.25rem;
}
.outline-btn .bg {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #3352fb;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
}
.outline-btn span {
  position: relative;
  margin: 0;
  color: currentColor;
  font: inherit;
  flex: 1;
}
.outline-btn:hover .bg {
  width: 225%;
  height: 562.5px;
}
.outline-btn:hover {
  border-color: transparent;
  color: #fff;
}
.outline-btn .arrow-icon {
  width: 1.25rem;
}
.outline-btn:hover .arrow-icon {
  filter: brightness(0) invert(1);
}
.container-xxl .section-heading {
  padding-right: 15px;
  padding-left: 15px;
}
.container-xxl .section-sub-text {
  padding-right: 15px;
  padding-left: 15px;
}
.cookies-block {
  position: fixed;
  display: flex;
  bottom: 15px;
  margin: 0 15px;
  background: #e7f4f7;
  box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
  max-width: 30%;
  padding: 1rem 0.75rem 1rem 1.375rem;
  border-radius: 6px;
  z-index: 9;
}

.cookies-block p {
  flex: 1;
  padding-right: 0.5rem;
  color: #040606;
  font-size: 0.875rem;
  margin: 0;
}
.cookies-block a {
  display: inline-block;
  color: #6161f7;
  border: 1px solid transparent;
  border-width: 1px 0;
  transition: 0.2s;
  line-height: 1.2;
}
.cookies-block a:hover {
  border-bottom-color: currentColor;
}
.cookies-block .close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  margin-top: -6px;
  margin-right: -6px;
}

.cms-page {
  padding: 3.75rem 0 2.5rem;
  background: #f9f9f9;
}
.cms-page .section-heading {
  position: relative;
  color: #212431;
  padding-bottom: 5px;
}
.cms-page .section-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  max-width: 90%;
  height: 3px;
  background: #6161f7;
  transform: translateX(-50%);
}
.cms-page .content-block {
  padding: 0.9375rem 0;
}
.cms-page .content-block h3 {
  font: 1.25rem m-semibold;
  color: #040606;
  margin-bottom: 1.25rem;
}
.cms-page ol {
  padding-left: 2.5rem;
}
.cms-page ol li::marker {
  font-family: m-semibold;
}
.cms-page .content-block h4 {
  font: 1.125rem m-semibold;
  color: #040606;
  margin-bottom: 1.25rem;
  padding-top: 0.625rem;
}
.cms-page .content-block p {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1366px;
  }
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .banner-section .banner-content {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 13px;
  }
  body {
    padding-top: 58px;
  }
  .page-body {
    padding-top: 0;
  }
 
  .resposive-col-reverse {
    flex-direction: column-reverse;
  }

  .section-heading-left {
    max-width: 100%;
  }
  .section-sub-text-left {
    max-width: 100%;
  }
  .cookies-block {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .sm-col-reverse {
    flex-direction: column-reverse;
  }

  .banner-section .banner-img img {
    max-width: 60%;
    margin: 3.125rem auto 0;
  }

  .banner-section .banner-content h2 {
    text-align: center;
  }
  .banner-section .banner-content p {
    text-align: center;
  }
  .banner-btn {
    justify-content: center;
  }
  .bottom-cta h2 {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
  .section-heading {
    font: 1.625rem/1.5 m-bold;
  }
  .section-sub-text {
    font: 1.1875rem/1.5 m-medium;
  }
  .bottom-cta h2 {
    font: 1.6875rem/1.7 m-bold;
  }
  body {
    padding-top: 54px;
  }
  .page-not-found .action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .page-not-found .action-container span {
    margin: 0.9375rem 0;
  }
  .banner-section .banner-img img {
    max-width: 100%;
  }
}
.banner-section .container-xxl{
  padding: 0 15px;
}
@media (min-width: 768px) {
 
  .banner-section .container-xxl {
    max-width: calc(100% - ((100% - 720px)/2))
  }
}
@media (min-width: 992px) {
  .banner-section .container-xxl {
    max-width: calc(100% - ((100% - 960px)/2))
  }
}
@media (min-width: 1200px) {
  .banner-section .container-xxl {
    max-width: calc(100% - ((100% - 1240px)/2));
    padding: 0 15px;
  }
}
@media (min-width: 1600px) {
  .banner-section .container-xxl {
    max-width: calc(100% - ((100% - 1366px)/2))
  }
}
