@import url("../css2");
html {
  scroll-behavior: smooth;
  scroll-snap-type: proximity;
}

.none {
  display: none;
}

* {
  background: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.my_btns {
  position: relative;
  text-decoration: none;
  background: #ee3266;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  color: #f2f2f2;
  transition: background 300ms ease-in-out;
}

.my_btns:hover {
  background: #f2f2f2;
}

.fcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fullscreen {
  position: relative;
  padding: 0 10px;
  width: 100vw;
  min-height: 100vh;
}

.my_fullwidth {
  width: 100vw;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.7rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-weight: 300;
  font-size: 0.7rem;
}

.second_header {
  font-size: 0.9rem;
  font-weight: 400;
  color: #ee3266;
}

p {
  color: #858585;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  background: #202732;
  font-family: "Poppins";
  font-size: 16px;
  color: #f2f2f2;
  width: 100vw;
  overflow-x: hidden;
}
body header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  padding: 4px 0;
  top: 0;
  z-index: 99;
  background: #202732a1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
body header .navbar {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  max-width: 1080px;
}
body header .navbar .navleft {
  align-items: center;
  width: 20%;
  height: 100%;
}
body header .navbar .navleft .logoholder {
  display: flex;
  align-items: center;
  justify-content: left;
}
body header .navbar .navleft .logoholder .logo {
  padding: 0.4rem 0;
}
body header .navbar .navright {
  display: flex;
  flex-direction: row;
  height: 100%;
}
body header .navbar .navright .navlinks a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  margin-right: 0.4rem;
}
body header .navbar .navright .ctaholder a {
  background-color: transparent;
  border: 2px solid #ee3266;
  padding: 0.2rem 1.2rem;
  border-radius: 100px;
}
body header .navbar .navright .ctaholder .outlined:hover {
  background: #ee3266;
}
body header .navbar .navright .langswitch {
  margin-left: 10px;
  padding: 0 10px;
}
body header .navbar .navright .langswitch * {
  color: white;
  border: none;
  outline: none;
}
body header .navbar .navright .langswitch .select-custom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 10px;
  color: orange;
}
body header .navbar .navright .langswitch .select-custom label select {
  position: relative;
  border: none;
  height: 30px;
  width: 100px;
}
body main {
  position: relative;
  justify-content: center;
  top: -60px;
}
body main .popup {
  display: none;
  background-color: #13181f4d;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 20;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  scroll-behavior: none;
}
body main .popup .popup_box {
  padding: 20px;
  max-width: 600px;
  margin: 0 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px 10px black;
  background-color: rgba(245, 245, 245, 0.866);
}
body main .popup .popup_box h1 {
  color: #ee3266;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
body main .hero_container {
  background-image: url("../assets/my-outlined-layout.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-attachment: fixed;
  background-size: 50%;
  overflow: hidden;
}
body main .hero_container .scroller {
  position: absolute;
  bottom: 5rem;
  right: 1.5rem;
  transform: rotate(90deg);
  animation: flikering 4s infinite 5s linear;
}
@keyframes flikering {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  6% {
    opacity: 1;
  }
  7% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  14% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  19% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
body main .hero_container .hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  filter: invert(1);
}
body main .hero_container .hero {
  height: 100%;
  width: 100%;
  position: relative;
  flex-direction: row;
  max-width: 1080px;
  position: relative;
}
body main .hero_container .hero .heroleft {
  width: 50%;
  height: 400px;
}
body main .hero_container .hero .heroleft img {
  width: 400px;
  position: absolute;
}
body main .hero_container .hero .heroleft .img_back {
  animation: flaotingimg 4s ease-in-out infinite;
}
body main .hero_container .hero .heroleft .img_front {
  animation: flaotingimg 4s 0.4s ease-in-out infinite;
}
@keyframes flaotingimg {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
body main .hero_container .hero .heroright {
  width: 50%;
}
body main .hero_container .hero .heroright h1 {
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
body main .hero_container .hero .heroright p {
  margin-bottom: 1.7rem;
  color: #acacac;
}
body main .hero_container .hero .heroright .hero_btn:hover {
  color: #ee3266;
}
body main .hero_container .hero .heroright .hero_label {
  font-size: 0.8rem;
  margin-top: 1.2rem;
  color: white;
}
body main .hero_container .hero .heroright span {
  color: #ee3266;
  font-size: 1.4rem;
  font-weight: 600;
}
body main .mobile_features {
  background-image: url("../assets/my-filled-layout.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-attachment: fixed;
  background-size: 50%;
  overflow: hidden;
}
body main .mobile_features .container {
  display: flex;
  position: relative;
  max-width: 1080px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 40px;
}
body main .mobile_features .container .mobf_left {
  width: 60%;
}
body main .mobile_features .container .mobf_left h2 {
  text-transform: uppercase;
}
body main .mobile_features .container .mobf_left p {
  color: white;
}
body main .mobile_features .container .mobf_left .mobf_left_items {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
body main .mobile_features .container .mobf_left .mobf_left_items .mobf_item {
  padding: 0.5rem;
}
body main .mobile_features .container .mobf_left .mobf_left_items .mobf_item img {
  width: 50px;
  height: auto;
}
body main .mobile_features .container .mobf_left .mobf_left_items .mobf_item h5 {
  margin-top: 0.5rem;
  text-transform: uppercase;
  line-height: 1.2rem;
}
body main .mobile_features .container .mobf_left .mobf_left_items .mobf_item p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.644);
  font-size: 0.8rem;
  line-height: 1.2;
}
body main .mobile_features .container .mobf_right {
  display: flex;
  position: relative;
  height: 60vh;
  min-height: 500px;
  justify-content: center;
  align-items: center;
}
body main .mobile_features .container .mobf_right .visual_holder {
  display: flex;
  right: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 100%;
}
body main .mobile_features .container .mobf_right .visual_holder img {
  position: absolute;
}
body main .mobile_features .container .mobf_right .visual_holder .frame {
  z-index: 2;
  height: 100%;
}
body main .mobile_features .container .mobf_right .visual_holder .screen {
  height: 95%;
  box-shadow: 0px 5px 55px 20px rgba(0, 0, 0, 0.53);
}
body main .mobile_features .container .download_btns {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 1rem;
}
body main .mobile_features .container .download_btns img:first-child {
  margin-right: 1rem;
}
body main .key_figuers {
  padding: 5rem 0;
  background-color: #13181f;
}
body main .key_figuers .top_key_header {
  width: 1080px;
  text-align: center;
  margin-bottom: 2.5rem;
}
body main .key_figuers .top_key_header p {
  color: #ee3266;
  line-height: 1;
}
body main .key_figuers .top_key_header h2 {
  margin: 1rem 0;
  text-transform: uppercase;
  line-height: 1;
}
body main .key_figuers .key_items_container {
  width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
body main .key_figuers .key_items_container .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body main .key_figuers .key_items_container .item h5 {
  text-transform: uppercase;
  line-height: 1;
  color: #ee3266;
}
body main .key_figuers .key_items_container .item .counter {
  line-height: 1.3;
  font-size: 4.2rem;
}
body main .stb_features {
  padding-left: 20px 0;
}
body main .stb_features .top_key_header {
  max-width: 1080px;
  text-align: center;
}
body main .stb_features .top_key_header .stb_subheader {
  color: #ee3266;
}
body main .stb_features .top_key_header h2 {
  text-transform: uppercase;
}
body main .stb_features .figures {
  display: grid;
  max-width: 1080px;
  margin-top: 3rem;
  width: 100%;
  grid-template-areas: "left center right";
  grid-template-columns: 1fr 2fr 1fr;
  text-align: center;
}
body main .stb_features .figures .left .item,
body main .stb_features .figures .right .item {
  margin-bottom: 2rem;
}
body main .stb_features .figures .left .item img,
body main .stb_features .figures .right .item img {
  width: 65px;
  height: auto;
  padding: 0;
  transition: 400ms ease-in-out;
}
body main .stb_features .figures .left {
  text-align: left;
  grid-area: left;
}
body main .stb_features .figures .right {
  grid-area: right;
  text-align: right;
}
body main .stb_features .figures .center {
  grid-area: center;
}
body main .stb_features .figures .center img {
  width: 450px;
}
body main .findus #map_holder,
body main .findus #map {
  width: 100%;
  max-width: 1080px;
  height: 500px;
  outline: none;
}
body main .findus #map_holder .pin_time,
body main .findus #map .pin_time {
  font-weight: 500;
  font-size: 0.7rem;
  margin: 0.6rem 0 0.3rem 0;
  color: black;
}
body main .contact_us {
  margin: 5rem 0;
}
body main .contact_us .cu_header {
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
body main .contact_us .cu_headersub {
  padding: 0 1rem;
  text-transform: uppercase;
}
body main .contact_us .sumbits_outcome {
  display: none;
}
body main .contact_us .sumbits_reason {
  display: none;
}
body main .contact_us .contact_form {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
body main .contact_us .contact_form iframe {
  display: none;
}
body main .contact_us .contact_form form .form_input_section {
  color: #858585;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  max-width: 400px;
  min-width: 300px;
  margin-bottom: 10px;
}
body main .contact_us .contact_form form .form_input_section label {
  color: #f2f2f2;
  font-size: 0.8rem;
}
body main .contact_us .contact_form form .form_input_section .label {
  display: flex;
  flex-direction: column;
}
body main .contact_us .contact_form form .form_input_section input {
  border: none;
  background-color: transparent;
  border-bottom: 1px dashed #f2f2f2;
  color: white;
  padding: 7px 7px 7px 5px;
}
body main .contact_us .contact_form form .form_input_section input:focus {
  background-color: white;
  color: #005027;
}
body main .contact_us .contact_form form .form_input_section select {
  border: 1px solid #a2a2a2;
  color: white;
  padding: 0.4rem 0.4rem;
  outline: none;
}
body main .contact_us .contact_form form .form_input_section button {
  background-color: #ee3266;
  border: none;
  color: white;
  padding: 10px 25px;
  margin-top: 1rem;
  border-radius: 5px;
  outline: none;
  transition: 100ms ease-in-out;
}
body main .contact_us .contact_form form .form_input_section button:hover {
  background-color: #f64c4c;
}
body main .contact_us .contact_form form .form_input_section button:active {
  background-color: #f2f2f2;
  color: #ee3266;
}
body .submitted_message {
  text-align: center;
}
body .submitted_message a {
  margin-top: 1rem;
}
body footer {
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.171);
  border-top: 1px solid #ffffff13;
}
body footer .container {
  display: grid;
  align-items: center;
  max-width: 1080px;
  grid-template-columns: 1fr 1fr;
}
body footer .container .contact_container h5 {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}
body footer .container .contact_container .contact_items .item {
  display: flex;
  padding: 0.1rem 0;
  align-items: center;
}
body footer .container .contact_container .contact_items .item img {
  max-height: 1.3rem;
}
body footer .container .contact_container .contact_items .item p {
  padding: 0 0.7rem;
}
body footer .container .footer_copyright {
  text-align: right;
}
body footer .footer_menu {
  display: none;
}

@media screen and (max-width: 900px) {
  body h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  body header .navbar .navleft {
    width: 100%;
    text-align: center;
  }
  body header .navbar .navright .navlinks {
    display: none;
  }
  body header .navbar .navright .ctaholder {
    display: none;
  }
  body header .navbar .navright .langswitch {
    width: 100px;
  }
  body main .hero_container {
    background-image: url("../assets/my-outlined-layout.webp");
    background-repeat: no-repeat;
    background-position: center right;
    background-attachment: fixed;
    background-size: 100%;
    overflow: hidden;
  }
  body main .hero_container .scroller {
    display: none;
  }
  body main .hero_container .hero {
    flex-direction: column;
    padding: 0 0.7rem;
  }
  body main .hero_container .hero .heroleft {
    width: 100%;
    height: 150px;
  }
  body main .hero_container .hero .heroleft img {
    width: 200px;
    margin-bottom: 0rem;
  }
  body main .hero_container .hero .heroright {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body main .hero_container .hero .heroright h1 {
    font-size: 2rem;
  }
  body main .hero_container .hero .heroright p {
    text-align: center;
    line-height: 1.2;
  }
  body main .mobile_features {
    background-image: url("../assets/my-filled-layout.webp");
    background-repeat: no-repeat;
    background-position: center right;
    background-attachment: fixed;
    background-size: 100%;
    overflow: hidden;
    padding-top: 4rem;
    width: 100vw;
  }
  body main .mobile_features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
  }
  body main .mobile_features .container .mobf_left {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  body main .mobile_features .container .mobf_left h2 {
    font-size: 2rem;
    text-align: center;
  }
  body main .mobile_features .container .mobf_left > p {
    text-align: center;
    margin: 0 auto;
    width: 100vw;
    padding: 10px;
    margin-bottom: 3rem;
  }
  body main .mobile_features .container .mobf_left .mobf_left_items {
    width: 100vw;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;
  }
  body main .mobile_features .container .mobf_left .mobf_left_items .mobf_item {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body main .mobile_features .container .mobf_left .mobf_left_items .mobf_item * {
    text-align: center;
  }
  body main .mobile_features .container .mobf_left .download_btns {
      height: auto;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    gap: 20px;
  }
  body main .mobile_features .container .mobf_left .download_btns a img {
    margin: 0 0.2rem;
    width: 50vw;
    height: auto;
  }
  body main .mobile_features .container .mobf_right {
      margin-top: 68px;
  }
  body main .mobile_features .container .mobf_right .frame {
    z-index: 2;
    height: 100%;
  }
  body main .mobile_features .container .mobf_right .screen {
    height: 95%;
    box-shadow: 0px 5px 55px 20px rgba(0, 0, 0, 0.53);
  }
  body main .key_figuers {
    display: flex;
    position: relative;
    padding: 5rem 1rem 2rem 1rem;
    max-width: 100vw;
    flex-wrap: wrap;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  body main .key_figuers .top_key_header {
    width: 100%;
  }
  body main .key_figuers .key_items_container {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  body main .key_figuers .key_items_container .item {
    margin-bottom: 3rem;
  }
  body main .stb_features {
    padding-top: 4rem;
    position: relative;
    width: 100vw;
  }
  body main .stb_features .top_key_header {
    padding: 0 0.7rem;
  }
  body main .stb_features .top_key_header p {
    line-height: 1.3;
  }
  body main .stb_features .figures {
    position: relative;
    width: 100vw;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "center center" "left right";
    margin: 0;
  }
  body main .stb_features .figures .center img {
    width: 270px;
    height: auto;
    margin: 5rem 0;
  }
  body main .stb_features .figures .right,
body main .stb_features .figures .left {
    padding: 0.2rem;
  }
  body main .stb_features .figures .right .item,
body main .stb_features .figures .left .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  body main .stb_features .figures .right .item img,
body main .stb_features .figures .left .item img {
    grid-area: img;
  }
  body main .stb_features .figures .right .item h5,
body main .stb_features .figures .left .item h5 {
    grid-area: h5;
  }
  body main .stb_features .figures .right .item p,
body main .stb_features .figures .left .item p {
    grid-area: p;
    font-size: 0.8rem;
  }
  body main .stb_features .figures .right {
    grid-area: right;
  }
  body main .stb_features .figures .left {
    grid-area: left;
  }
  body main .contact_us {
    padding-top: 4rem;
  }
  body main .contact_us .cu_header {
    font-size: 2rem;
  }
  body main .contact_us .cu_headersub {
    font-size: 1.3rem;
  }
  body main .contact_us form .form_input_section {
    border-radius: 0;
  }
  body main .contact_us form .form_input_section * {
    outline: none;
  }
  body main .contact_us form .form_input_section .form_input {
    line-height: 1.3rem;
  }
  body main .contact_us form .form_input_section select {
    color: #858585;
    padding: 5px 15px;
    border-radius: 0;
    color: #858585;
    outline: none;
  }
  body footer {
    padding: 2rem 0.7rem 7rem 0.7rem;
  }
  body footer .container {
    display: flex;
    flex-direction: column;
  }
  body footer .container * {
    text-align: center;
  }
  body footer .container .email_contact {
    margin-bottom: 1rem;
  }
  body footer .footer_menu {
    display: grid;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 99;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #202732;
    grid-template-columns: repeat(5, 1fr);
  }
  body footer .footer_menu a {
    text-decoration: none;
  }
  body footer .footer_menu .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1rem;
    background: black;
  }
  body footer .footer_menu .item .fnavicon {
    width: 35px;
    padding-top: 1rem;
    margin-bottom: 5px;
  }
  body footer .footer_menu .item p {
    color: white;
    padding-top: 0.4rem;
    font-size: 0.9rem;
    padding-bottom: 1rem;
  }
  body footer .footer_menu .buy {
    background: #ee3266;
  }
  body footer .footer_menu .buy p {
    font-size: 1rem;
  }
}
::placeholder {
  color: #858585;
}

:-ms-input-placeholder {
  color: #858585;
}

::-webkit-input-placeholder {
  color: #858585;
}

.success_container {
  background-image: url("../assets/my-outlined-layout.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-attachment: fixed;
  background-size: 70%;
  overflow: hidden;
}
.success_container .submition_head {
  max-width: 700px;
}
.success_container .submition_head * {
  text-align: center;
}
.success_container .submition_head .submition iframe {
  display: none;
}
.success_container .submited_from .submition_btn {
  margin-top: 2rem;
  background: #ee3266;
  color: #f2f2f2;
  border: none;
  padding: 0.7rem 4rem;
}

.gm-style-iw-d {
  color: #ee3266;
}

.pin_header {
  color: #ee3266;
  font-weight: 700;
  text-transform: uppercase;
  margin: 5px 0;
}