@charset "UTF-8";

/*!
* Start Bootstrap - New Age v6.0.6 (https://startbootstrap.com/theme/new-age)
* Copyright 2013-2022 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-new-age/blob/master/LICENSE)
*/
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #063d74;
  --bs-indigo: #6610f2;
  --bs-purple: #9f1ae2;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffbc00;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #063d74;
  --bs-secondary: #9f1ae2;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffbc00;
  --bs-danger: #e11e21;
  --bs-light: #f8f9fa;
  --bs-dark: #1b1b19;
  --bs-primary-rgb: 41, 55, 240;
  --bs-secondary-rgb: 159, 26, 226;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(298deg, #403634 0%, #1b1b19 77%);
  --bs-body-font-family: 'Cairo', sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 500;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  text-decoration: none;
  font-weight: 700;
  color: var(--bs-gradient);
}

a:hover {
  color: var(--bs-danger);
}

input {
  box-shadow: 0 0 0!important;
}

input.code {
  width: 15.5%;
  display: inline-block;
  margin: auto;
  user-select: none;
}

button{
  box-shadow: 0 0 0!important;
}

.ltr {
  direction: ltr!important;
}

.rtl {
  direction: rtl!important;
}

.fw-bolder {
  font-weight: 900 !important;
}

.bg-dark {
  background-color:var(--bs-dark)!important;
}

.bg-light-v{
  background: #fffdf6;
}

.text-danger{
  color: var(--bs-danger)!important;
}

.skewed{
  transform: skewX(-10deg);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.skewed:hover{
  background: var(--bs-warning);
}

.skewed:hover .icon-feature{
  color: var(--bs-white)!important;
}

.skewed:hover .text-muted{
  color: var(--bs-dark)!important;
}

.img200{
  width: 200px;
}

.invert{
  filter: invert(1);
}

.shadow-small{
  filter: drop-shadow(0px 2px 12px black);
}

.shadow-big{
  filter: drop-shadow(2px 4px 6px black);
}

.blink {
  animation: blink linear infinite 2s;
}

.blink-slow1 {
  animation: blink linear infinite 2.5s;
}

.blink-slow2 {
  animation: blink linear infinite 3s;
}

@keyframes blink {
  78% {
    opacity: 1;
  }

  79% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  81% {
    opacity: 1;
  }

  82% {
    opacity: 0;
  }

  83% {
    opacity: 1;
  }

  92% {
    opacity: 0;
  }

  92.5% {
    opacity: 1;
  }
}

.circular {
  animation: circular_loader linear 20s infinite;
}

@keyframes circular_loader {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.text-gradient {
  /*color: #063d74!important;*/
  background: var(--bs-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.underlined{
  position: relative;
}

.underlined::after{
  content: "";
  position: absolute;
  bottom: -35px;
  right: -10px;
  left: 0;
  width: 120%;
  margin: auto;
  background:var(--bs-danger);
  height: 80px;
  -webkit-clip-path: polygon(0% 66%, 11% 58%, 31% 49%, 46% 47%, 55% 48%, 73% 55%, 97% 67%, 86% 71%, 74% 67%, 61% 63%, 44% 59%, 33% 58%, 19% 58%, 11% 60%);
  clip-path: polygon(0% 66%, 11% 58%, 31% 49%, 46% 47%, 55% 48%, 73% 55%, 97% 67%, 86% 71%, 74% 67%, 61% 63%, 44% 59%, 33% 58%, 19% 58%, 11% 60%);
}

.underlined.inlined::after{
  bottom: -15px;
  height: 36px;
}

@media (min-width: 576px) {
  .underlined::after{
    bottom: -22px;
  }
}

.navbar {
  background: var(--bs-dark);
  background: var(--bs-gradient);
}

.navbar .nav-contents{
  border-top: 10px solid var(--bs-danger);
  height: 90px;
}

.navbar img{
  width: 110px;
  height: auto;
}

.toView {
  background-image: url(../img/abstract.png), linear-gradient(360deg, #ffffff 0%, #ffbc00 77%);
  background-size: contain;
  padding-top: 9.5rem;
  padding-bottom: 5rem;
}

.device-wrapper {
  max-width: 300px;
  width: 100%;
}

.device {
  position: relative;
  background-size: cover;
}

.device::after {
  position: absolute;
  background-size: cover;
  width: 100%;
  height: 103.5%;
  pointer-events: none;
}

.device .screen {
  position: absolute;
  background-size: cover;
  pointer-events: auto;
}

.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] {
  padding-bottom: 198.898071625%;
}

.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] .screen {
  top: 2px;
  left: 6px;
  width: 94%;
  height: 101%;
  border-radius: 12%;
}

@media (min-width: 786px){
    .device[data-device=iPhoneX][data-orientation=portrait][data-color=black] .screen {
      top: 6px;
      height: 100%;
    }
}
.device[data-device=iPhoneX][data-orientation=portrait][data-color=black]::after {
  content: "";
  background-image: url("../img/portrait_black.png");
}

.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] .button {
  display: none;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 99%;
}

.toView .toView-device-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.toView .toView-device-mockup * {
    user-select: none;
    pointer-events: none;
}

.toView .toView-device-mockup .circle {
  position: absolute;
  fill: url(#circleGradient);
  width: 90%;
  border-bottom: 15px solid var(--bs-danger);
  border-radius: 100%;
  padding: 5px;
}

.toView .toView-device-mockup .circle .gradient-start-color {
  stop-color: var(--bs-warning);
}

.toView .toView-device-mockup .circle .gradient-end-color {
  stop-color: var(--bs-dark);
}

.toView .toView-device-mockup .shape-1 {
  position: absolute;
  height: 1rem;
  width: 1rem;
  transform: rotate(-10deg);
  fill: var(--bs-dark);
  bottom: 15%;
  left: 10%;
}

.toView .toView-device-mockup .shape-2 {
  position: absolute;
  height: 0.75rem;
  width: 0.75rem;
  fill: var(--bs-danger);
  top: 15%;
  right: 10%;
}

.toView .toView-device-mockup .device-wrapper {
  max-width: 10rem;
}

@media (min-width: 576px) {
  .toView .toView-device-mockup .circle {
    width: 70%;
    display: block;
  }

  .toView .toView-device-mockup .device-wrapper {
    max-width: 12.5rem;
  }
}

@media (min-width: 768px) {
  .toView .toView-device-mockup .circle {
    width: 60%;
  }

  .toView .toView-device-mockup .device-wrapper {
    max-width: 15rem;
  }
}

@media (min-width: 992px) {
  .toView .toView-device-mockup .circle {
    width: 90%;
  }

  .toView .toView-device-mockup .device-wrapper {
    max-width: 15rem;
  }
}

@media (min-width: 1200px) {
  .toView .toView-device-mockup .circle {
    width: 75%;
  }

  .toView .toView-device-mockup .device-wrapper {
    max-width: 15rem;
  }
}

@media (min-width: 1400px) {
  .toView .toView-device-mockup .circle {
    width: 70%;
  }

  .toView .toView-device-mockup .device-wrapper {
    max-width: 17rem;
  }
}

.icon-feature {
  font-size: 4rem;
}

footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

footer a:hover,
footer a:active,
footer a:focus {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.social li {
  display: inline-block;
  list-style: none;
}
