/* ================ */
/* Basic */
/* ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  line-height: 1.8;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
button:focus,
input:focus,
a:focus,
i:focus,
textarea:focus {
  outline: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
/* ================ */
/* Fonts */
/* ================ */
@font-face {
  font-family: poligon-bold;
  src: url("../fonts/Poligon-Bold.ttf");
}
@font-face {
  font-family: poligon-medium;
  src: url("../fonts/Poligon-Medium.ttf");
}
@font-face {
  font-family: poligon-regular;
  src: url("../fonts/Poligon-Regular.ttf");
}
@font-face {
  font-family: poligon-light;
  src: url("../fonts/Poligon-Light.ttf");
}
.poligon-bold {
  font-family: poligon-bold;
}
.poligon-medium {
  font-family: poligon-medium;
}
.poligon-regular {
  font-family: poligon-regular;
}
.poligon-light {
  font-family: poligon-light;
}
/* ================ */
/* Reuseable */
/* ================ */
.heading {
  font-family: poligon-bold;
  font-size: 4rem;
  color: #242f40;
}
.para-size {
  font-family: poligon-regular;
  font-size: 1.8rem;
  color: #0e212d;
}
.para-color-5b6b82 {
  color: #a5aeb9;
}
.para-color-122136 {
  color: #122136;
}
.para-color-485668 {
  color: #485668;
}
.button {
  font-size: 1.8rem;
  font-family: poligon-regular;
  background: transparent linear-gradient(104deg, #006fff 0%, #ff00dd 100%) 0%
    0% no-repeat padding-box;
  border-radius: 7px;
  color: #ffffff;
  padding: 1rem 4rem;
  text-decoration: none;
  position: relative;
}
.button::after {
  position: absolute;
  content: "";
  width: 95%;
  margin: auto;
  height: 0.7rem;
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: transparent linear-gradient(103deg, #006effb7 0%, #ff00ddb0 100%);
  filter: blur(4px);
  transition: all 0.5s linear;
  border-radius: 7px;
}
.button:hover {
  transition: all 0.5s linear;
  color: #ffffff;
  background: transparent linear-gradient(208deg, #006fff 0%, #ff00dd 100%) 0%
    0% no-repeat padding-box;
}
.button:hover::after {
  height: 0;
  transition: all 0.5s linear;
}

/* ================ */
/* Header */
/* ================ */
#header-section {
  background-image: url("../img/banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* Navbar */
.nav-link {
  font-family: poligon-regular;
  font-size: 1.8rem;
  margin-left: 3rem;
  color: #122136;
  padding: 0.5rem 0;
}
.nav-link.active {
  font-family: poligon-bold;
}
.nav-link:hover {
  color: #006fff;
}
.nav-btn {
  padding: 0.5rem 2rem !important;
  font-size: 1.6rem !important;
}
/* StickyNav */
.sticky-nav {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.185);
}
/* Navbar For Mobile */
.fullnav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #039ff0;
  overflow-x: hidden;
  transition: all 0.7s linear;
  padding-top: 60px;
  z-index: 9999999999;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}
.fullnav {
  white-space: nowrap;
}
.fullnav-content {
  margin-top: 5rem;
}
.fullnav .closebtn {
  position: absolute;
  color: #ffffff;
  top: 7px;
  right: 20px;
  font-size: 36px;
  margin-left: 50px;
}
/* Header Content */
.header-content {
  margin: auto;
  padding: 25rem 0 20rem 0;
}
.header-content h1 {
  font-size: 4rem;
  color: #000000;
}
.get-started-box {
  backdrop-filter: blur(37px);
  padding: 4rem;
  border-radius: 19px;
  background-color: rgba(0, 0, 0, 0.5);
}
.get-started-box input,
.get-started-box textarea {
  font-family: poligon-regular;
  font-size: 1.8rem;
  color: #ffffff;
  border-radius: 7px;
  padding: 0.5rem 2rem;
  border: none;
  background-color: #ffffff31;
}
.get-started-box input::placeholder,
.get-started-box textarea::placeholder {
  color: #ffffff;
}
/* ================ */
/* Do Not Call Section */
/* ================ */
#do-not-call-section {
  padding: 8rem 0;
}
#do-not-call-section .heading span {
  color: #006fff;
  border-bottom: 2px solid #006fff;
}
/* ================ */
/* Purchase Section */
/* ================ */
#purchase-section {
  background-image: url("../img/purchase-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 0;
}
/* ================ */
/* Info Section */
/* ================ */
.info-box {
  background: #f2f4f6 0% 0% no-repeat padding-box;
  border-radius: 36px;
  padding: 4rem;
}
.info-heading {
  font-size: 3rem;
  font-family: poligon-bold;
  color: #242f40;
}
p.para-size b {
  font-family: poligon-bold;
  color: #006fff;
  border-bottom: 2px solid #006fff;
}
p.para-size span {
  color: #ff7474;
  border-bottom: 1px solid #ff7474;
}
p.para-size span.color-006fff {
  color: #006fff;
  border-color: #006fff;
}
p.para-size b:hover,
p.para-size span:hover {
  border: none !important;
}
/* ================ */
/* How It Works  Section */
/* ================ */
#how-it-works-section {
  padding: 10rem 0;
}
.how-it-works-card-box {
  box-shadow: 0px 6px 28px #00000017;
  border-radius: 28px;
  padding: 4rem;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.how-it-works-card-box:hover {
  transition: all 0.5s linear;
  cursor: pointer;
  box-shadow: 0 10px 10px #00000031;
  background-color: #d9fbff;
}
.how-it-works-card-box h3 {
  font-family: poligon-bold;
  color: #006fff;
  font-size: 2.3rem;
}

/* ================ */
/* Footer */
/* ================ */
footer {
  background-color: #485668;
}
.footer-sub-heading {
  font-size: 2.2rem;
  color: #ffffff;
  font-family: poligon-bold;
}
.footer-link p a,
.footer-contact p {
  color: #ffffff;
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
  font-family: poligon-regular;
  text-decoration: none;
}
.footer-link p a:hover,
.footer-contact p:hover,
.footer-copyright a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.footer-copyright {
  border-top: 1px solid #ffffff;
  font-family: poligon-regular;
  font-size: 1.8rem;
}
.footer-copyright a {
  text-decoration: none;
}
.footer-border-end-default {
  position: relative;
}
.footer-border-end-default::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 0.1rem;
  background-color: #ffffff;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
}
/* Back to top */
#myBtn {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 15px;
  border: none;
  outline: none;
  background: #039ff0;
  color: white;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  animation: updown-btn 5s infinite;
  -webkit-animation: updown-btn 5s infinite;
}
@keyframes updown-btn {
  0% {
    transform: translateY(-10px);
  }

  25% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  75% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}
/* POP UP CONTACT FORM*/
.container-form h3 {
  color: #142339;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: poligon-bold;
}
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}
.container-form {
  padding: 16px;
}
.modal form label {
  color: #142339;
  font-size: 1.8rem;
  margin-top: 1rem;
  font-family: poligon-regular;
}
.modal form input {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  opacity: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 0.7rem 1rem;
  font-family: poligon-regular;
  font-size: 1.8rem;
}
.modal form #message {
  padding-bottom: 8rem;
}
.modal form button {
  border: 0;
  font-size: 1.8rem;
  color: #fff;
  background: transparent linear-gradient(99deg, #006fff 0%, #ff00dd 100%) 0% 0%
    no-repeat padding-box;
  padding: 0.7rem 7rem;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-top: 3rem;
  font-family: poligon-regular;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-top: 60px;
  z-index: 99999999999;
  backdrop-filter: blur(15px);
  background-size: cover;
  border: none !important;
  background-color: #00000018;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  width: 53rem; /* Could be more or less, depending on screen size */
  max-width: 90%;
  margin: auto !important;
  padding: 0 2rem;
  border: none !important;
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: -3rem;
  top: -1.5rem;
  color: #ff4a4a;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 2rem;
  font-weight: bold;
  background: #fff;
  z-index: 999999;
  text-align: center;
  line-height: 3rem;
  opacity: 1 !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.247);
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}
