/* SCSS */
/* SCSS */
/* SCSS */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

*,
*::before,
*::after {
  margin: 0px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  scrollbar-color: #FD4513 #707070;
  scrollbar-width: thin;
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

/* style scrollbar */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
  scroll-margin: 1em 0.5em 1em 1em;
  margin: 0 1rem;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #a1a1a1;
          box-shadow: inset 0 0 5px #a1a1a1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 35px;
  background: #F9EE94;
  background-clip: padding-box;
}

p {
  text-align: justify;
}

a.mail {
  color: #292D32;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.mail:hover {
  letter-spacing: 2px;
  text-decoration: overline;
  color: #FD4513;
}

.home-page .hero {
  min-height: 100vh;
}

.home-page .hero .content .get-app img {
  width: 175px;
  height: 55px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-page .hero .content .get-app img:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.home-page .hero .content .get-app img:first-child {
  margin-right: .7rem;
}

@media screen and (max-width: 575px) {
  .home-page .hero .content .watch-video {
    -webkit-margin-start: 0.5rem;
            margin-inline-start: 0.5rem;
  }
  .home-page .hero .content .get-app img {
    width: 150px;
    height: 50px;
  }
  .home-page .hero .content .get-app img:first-child {
    margin-right: .5rem;
  }
}

.home-page .who-we-are .content .title {
  font-weight: 700;
  font-size: 36px;
}

.home-page .who-we-are .content .text {
  color: #7d809e;
}

@media screen and (max-width: 400px) {
  .home-page .who-we-are .content .title {
    font-size: 30px;
  }
  .home-page .who-we-are .content .text {
    font-size: 15px;
  }
}

.home-page .vision-and-mission {
  background-image: url(../assets/images/vision-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

.home-page .vision-and-mission .content .subtitle {
  color: #F9EE94;
}

.home-page .why-us .content .subtitle {
  color: #FD4513;
}

.home-page .why-us ul li {
  margin-bottom: .5rem;
}

.home-page .why-us ul li .correct {
  border-radius: 50%;
  width: 25px !important;
  height: 25px;
  background-color: #044F3C;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  color: white;
  display: block;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-page .why-us ul li:hover .correct {
  background-color: #FD4513;
}

.home-page .why-us ul li:hover p {
  color: #FD4513;
}

.home-page .why-us ul li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}

@media screen and (max-width: 375px) {
  .home-page .why-us ul li {
    margin-bottom: .2rem;
  }
  .home-page .why-us ul li .correct {
    width: 22px !important;
    height: 22px;
    -webkit-margin-end: .5rem;
            margin-inline-end: .5rem;
    font-size: 12px;
  }
}

.home-page .services {
  background-image: url(../assets/images/services-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  background-attachment: fixed;
}

@media screen and (max-width: 991px) {
  .home-page .services {
    padding-top: 3rem;
  }
}

.home-page .services .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-page .services .content .subtitle {
  color: #F9EE94;
}

.home-page .services .table-icon {
  border-radius: 24px;
  width: 100px;
  height: 100px;
  background-color: #FD4513;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  margin-top: -.5rem;
}

.home-page .services .table-icon img {
  width: 60px;
}

.home-page .services-features {
  position: relative;
}

.home-page .services-features .content .subtitle {
  color: #FD4513;
}

.home-page .services-features::before {
  content: url("../assets/images/logo-before.svg");
  position: absolute;
  left: 0;
  top: calc(50% - 177px);
  opacity: .85;
}

.home-page .services-features .features-content .text {
  font-weight: 500;
  font-size: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-page .services-features .features-content .icon {
  width: 72px;
  height: 72px;
  background-color: rgba(4, 79, 60, 0.06);
  border-radius: 24px;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-page .services-features .features-content .icon img {
  width: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-page .services-features .features-content:hover .icon {
  background-color: rgba(4, 79, 60, 0.2);
  border-radius: 50%;
}

.home-page .services-features .features-content:hover .icon img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.home-page .hero,
.home-page .services-features {
  overflow: hidden;
}

.home-page .hero .devices,
.home-page .services-features .devices {
  position: relative;
}

.home-page .hero .devices img,
.home-page .services-features .devices img {
  z-index: 4;
  position: relative;
}

.home-page .hero .devices:after,
.home-page .services-features .devices:after {
  content: "";
  width: 117px;
  height: 117px;
  background-image: url('../assets/images/text-rotate.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  -webkit-animation: rotate 10s linear infinite;
          animation: rotate 10s linear infinite;
}

.home-page .hero .devices:after,
.home-page .services-features .devices:after {
  right: -15%;
  top: 14%;
}

@media screen and (max-width: 450px) {
  .home-page .hero .devices:after,
  .home-page .services-features .devices:after {
    right: -19%;
    top: 11%;
  }
}

.home-page .vision-and-mission,
.home-page .why-us,
.home-page .services,
.home-page .services-features {
  overflow: hidden;
}

.home-page .vision-and-mission .content .subtitle,
.home-page .why-us .content .subtitle,
.home-page .services .content .subtitle,
.home-page .services-features .content .subtitle {
  font-weight: 700;
}

.home-page .vision-and-mission .content .title,
.home-page .why-us .content .title,
.home-page .services .content .title,
.home-page .services-features .content .title {
  font-weight: 600;
  font-size: 40px;
}

.home-page .vision-and-mission .device,
.home-page .why-us .device,
.home-page .services .device,
.home-page .services-features .device {
  position: relative;
}

.home-page .vision-and-mission .device img,
.home-page .why-us .device img,
.home-page .services .device img,
.home-page .services-features .device img {
  z-index: 4;
  position: relative;
}

.home-page .vision-and-mission .device:after,
.home-page .why-us .device:after,
.home-page .services .device:after,
.home-page .services-features .device:after {
  content: "";
  width: 117px;
  height: 117px;
  background-image: url('../assets/images/text-rotate.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  -webkit-animation: rotate 10s linear infinite;
          animation: rotate 10s linear infinite;
}

.home-page .vision-and-mission .device:after,
.home-page .why-us .device:after,
.home-page .services .device:after,
.home-page .services-features .device:after {
  top: -55px;
  right: -40px;
}

@media screen and (max-width: 550px) {
  .home-page .vision-and-mission .content .title,
  .home-page .why-us .content .title,
  .home-page .services .content .title,
  .home-page .services-features .content .title {
    font-size: 30px;
  }
}

@media screen and (max-width: 375px) {
  .home-page .vision-and-mission .content .subtitle,
  .home-page .why-us .content .subtitle,
  .home-page .services .content .subtitle,
  .home-page .services-features .content .subtitle {
    font-size: 18px;
  }
  .home-page .vision-and-mission .content .title,
  .home-page .why-us .content .title,
  .home-page .services .content .title,
  .home-page .services-features .content .title {
    font-size: 26px;
  }
}

.privacy-page .hero {
  min-height: 55vh;
}

.privacy-page .privacy-main .main-content .title {
  font-weight: 700;
  font-size: 32px;
  color: #FD4513;
}

.privacy-page .privacy-main .main-content .text {
  font-size: 17px;
}

@media screen and (max-width: 400px) {
  .privacy-page .privacy-main .main-content .title {
    font-size: 25px;
  }
}

.privacy-page .privacy-main .privacy-box .title {
  font-weight: 500;
  font-size: 28px;
}

.privacy-page .privacy-main .privacy-box p {
  color: #5d6078;
  font-size: 17px;
}

.privacy-page .privacy-main .privacy-box .text {
  line-height: 1.9rem;
}

@media screen and (max-width: 400px) {
  .privacy-page .privacy-main .privacy-box .title {
    font-size: 22px;
  }
  .privacy-page .privacy-main .privacy-box .text {
    font-size: 16px;
  }
}

.privacy-page .privacy-main .privacy-small {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

.privacy-page .privacy-main .privacy-small p {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

@media screen and (max-width: 400px) {
  .privacy-page .privacy-main .privacy-small p {
    font-size: 15px;
  }
}

.home-page,
.privacy-page {
  color: #292D32;
  overflow: hidden;
}

.home-page .hero,
.privacy-page .hero {
  color: white;
  background-image: url(../assets/images/hero-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4rem 0;
}

.home-page .hero .content,
.privacy-page .hero .content {
  padding-top: 5rem;
}

.home-page .hero .content .subtitle,
.home-page .hero .content .title,
.privacy-page .hero .content .subtitle,
.privacy-page .hero .content .title {
  font-weight: 700;
}

.home-page .hero .content .subtitle,
.privacy-page .hero .content .subtitle {
  font-size: 20px;
  color: #F9EE94;
}

.home-page .hero .content .title,
.privacy-page .hero .content .title {
  line-height: 70px;
  font-size: 42px;
}

.home-page .hero .content .title span,
.privacy-page .hero .content .title span {
  color: #FD4513;
}

@media screen and (max-width: 575px) {
  .home-page .hero .content,
  .privacy-page .hero .content {
    text-align: center;
    padding-top: 2rem;
  }
  .home-page .hero .content .subtitle,
  .privacy-page .hero .content .subtitle {
    font-size: 18px;
  }
  .home-page .hero .content .title,
  .privacy-page .hero .content .title {
    font-size: 34px;
    line-height: 50px;
  }
}

.main-btn {
  background-color: transparent;
  border-radius: 12px;
  display: inline-block;
  color: white !important;
  min-height: 40px;
  min-width: 100px;
  line-height: 24.43px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  border: none;
  letter-spacing: .08rem;
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-btn .icon,
.main-btn svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.main-btn.primary-btn {
  border: 2px solid #FD4513;
  background: #FD4513;
  -webkit-box-shadow: 0px 5px 20px 0px #fd451352;
          box-shadow: 0px 5px 20px 0px #fd451352;
}

.main-btn.primary-btn:hover {
  color: #FD4513 !important;
  background: transparent;
}

.main-btn.primary-btn:hover .icon svg {
  fill: #FD4513;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.main-btn.primary-btn:hover .icon svg path {
  stroke: #FD4513;
}

.main-btn.secondary-btn {
  color: #F9EE94 !important;
  border: 2px solid #F9EE94;
}

.main-btn.secondary-btn:hover {
  color: #292D32 !important;
  background: #F9EE94;
}

.navContainer {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  top: 0;
  padding: 0rem 2rem;
  width: 100%;
  height: 85px;
  z-index: 99;
  -webkit-transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
  transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
  overflow: hidden;
}

.navScroll {
  -webkit-box-shadow: 2px 0px 50px rgba(102, 127, 168, 0.164);
          box-shadow: 2px 0px 50px rgba(102, 127, 168, 0.164);
  background: rgba(2, 64, 48, 0.836);
  height: 70px;
}

.navContent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.linksContainer {
  color: #292D32;
  padding-left: 2rem;
  width: 80%;
  margin: 0;
}

.linksContainer ul.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.linksContainer li {
  margin: 0 .3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.linksContainer {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.linksContainer ul.links {
  width: 70%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 992px) {
  .linksContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    min-height: 100vh;
    background: rgba(2, 64, 48, 0.836);
    right: 0;
    width: 65%;
    position: fixed;
    top: 0;
    z-index: 8;
    -webkit-transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
    transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
  .linksContainer ul.links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 75%;
  }
}

@media (max-width: 992px) and (max-width: 350px) {
  .linksContainer {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .linksContainer.open-nav {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
  .linksContainer.open-nav ul.links li {
    margin: 1rem 0;
  }
}

.navLink {
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.navLink:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: currentColor;
}

.navLink:after {
  z-index: 5;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -5px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.navLink:hover {
  text-decoration: none;
  color: currentColor;
}

.navLink:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.navLink.active {
  pointer-events: none;
}

.navLink.active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.navLink.active::before {
  -webkit-transform: rotate(180deg) scaleY(1);
          transform: rotate(180deg) scaleY(1);
}

.navLink:hover {
  color: #FD4513;
}

.navLink.active {
  color: #FD4513;
}

.navLink.active::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.logo {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 200px;
}

.logo:hover {
  cursor: pointer;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media (max-width: 992px) {
  .logo {
    position: fixed;
    left: 2.1rem;
    top: 1.3rem;
  }
}

@media (max-width: 400px) {
  .logo {
    left: 1rem;
    width: 180px;
  }
}

.menuBtn {
  display: none;
  position: absolute;
  position: fixed;
  right: 2.1rem;
  top: 1.6rem;
  cursor: pointer;
  z-index: 9;
  -webkit-transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
  transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
}

@media (max-width: 992px) {
  .menuBtn {
    display: block;
  }
}

@media (max-width: 370px) {
  .menuBtn {
    right: 1rem;
  }
}

.closeMenu {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.closeMenu :nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.closeMenu :nth-child(2) {
  opacity: 0;
}

.closeMenu :nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(11px, -11px);
          transform: rotate(-45deg) translate(11px, -11px);
}

.btnLine {
  width: 1.9rem;
  height: 0.3rem;
  margin: 0 0 0.4rem 0;
  -webkit-transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
  transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1.75);
  background: #FD4513;
}

footer {
  background-color: #EEF7F9;
}

footer .social img {
  width: 190px;
}

footer .social .text {
  font-size: 15px;
  color: #2A394B;
  font-weight: 500;
}

footer .social .social-links li {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .social .social-links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

footer .social .social-links li svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .social .social-links li:hover {
  background-color: #FD4513;
}

footer .social .social-links li:hover svg path {
  fill: white;
}

footer .content .title {
  color: #2A394B;
  font-size: 18px;
  font-weight: 600;
}

footer .content a {
  color: #57687D;
  font-weight: 500;
  font-size: 14px;
}

footer .content li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .content li a:hover {
  border-bottom: 1px solid #FD4513;
  color: #FD4513;
}

footer .content .get-app img {
  width: 156.5px;
  height: 46.62px;
}

footer .footer-top {
  border-bottom: 1px solid #b8c0c2;
}

footer .footer-bottom {
  font-weight: 500;
  color: #57687D;
  font-size: 14px;
}

footer .footer-bottom .payments {
  width: 200px;
}

footer .payments img,
footer .get-app img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .payments img:hover,
footer .get-app img:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
/*# sourceMappingURL=style.css.map */
.regs-img{
  text-align: center;
}
.m-checkbox>span:after{
  transform: rotate(45deg) !important;
}
.titel-regs{
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #C7C7C7;
}
.titel-regs h2{
  color: #FC4513;
  text-align: center;
}
.regs-form{
  margin-bottom: 20px;
}

.regs-form label{
  font-size: 14px;
  margin-bottom: 10px;
  color: #02382B;
}
.regs-form label span{
  color: red;
}
.regs-form input,
.regs-form select{
  height: 40px;
  border-radius: 50px;
  border: 1px solid #C7C7C7;
}
[dir="ltr"] .up-file label{
  border-radius:0 50px 50px 0;
}
[dir="ltr"] .show-c .show-p,
[dir="ltr"] .show-c .show-k{
       left: auto;
       right: 14px;
}
.up-file{
  height: 40px;
  border-radius: 50px;
  border: 1px solid #C7C7C7;
  display: flex;
}
.up-file span{
  flex-grow: 1;
  padding: 6px 10px;
}
.up-file label{
  background-color: #E2DEB4;
  display: flex;
  min-width: 100px;
  height: 40px;
  border-radius: 50px 0 0 50px;
  /* text-align: center; */
  line-height: 40px;
  justify-content: center;
  cursor: pointer;
}
.trm-c{
  display: flex;
  margin-bottom: 20px;
}

.trm-c input{
  width: 17px;
  height: 17px;
  margin-inline-end: 10px;
  margin-top:3px;
  accent-color: #FC4513;
}
.trm-c span{}
.trm-c span a{
  text-decoration: underline !important;
  color: #FC4513;
}
.row-r{
  display: flex;
  flex-direction: row-reverse;
}
.send{
  background-color: #FC4513;
  color: #F5E452;
  border: 0;
  height: 40px;
  width: 140px;
  text-align: center;
  border-radius: 55px;
}

.show-c{
  position: relative;
}
.show-c .show-p{

  position: absolute;
  left: 14px;
  top: 10px;

}
.show-c .show-k{

  position: absolute;
  left: 14px;
  top: 10px;

}
.regs-form .show-k,.regs-form .show-p{
  top: 44px;
}
.event-po{
  opacity: .5;
  pointer-events: none;
}

.show-c .show-p,
.show-c .show-k{
    position: absolute;
    
    width: 19px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        cursor: pointer;
}

.z-index{
z-index:1;
}
.inner-header{
  background-image: url(../assets/images/header.png);
}
.hero{
  padding: 2rem 0 !important;
  min-height: 0 !important;
}
.home-page .hero .content, .privacy-page .hero .content{
  padding-top:0 !important;
}