/*Color Declarations via SCSS*/
/*HTML, Body and reccess styling*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: #15141B;
}

body {
  font-family: "CircularStd";
  line-height: 1;
  margin: 0;
  padding: 0;
  color: #15141B;
  background-color: #FFFFFF;
  padding-right: 0 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wrapper {
  background-color: #15141B;
  height: 100%;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: testSlide;
          animation-name: testSlide;
  position: absolute;
  z-index: 1001;
}

@-webkit-keyframes testSlide {
  from {
    margin-left: -300%;
    width: 800%;
  }
  to {
    margin-left: 100%;
    width: 0%;
  }
}

@keyframes testSlide {
  from {
    margin-left: -300%;
    width: 800%;
  }
  to {
    margin-left: 100%;
    width: 0%;
  }
}

/*Font Declarations*/
@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Black.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Bold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Book.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

/*=======================
STYLE GUIDE STARTS HERE
=======================*/
/*Custom Paddings and Frames*/
.px-2rem {
  padding-left: 10rem;
  padding-right: 10rem;
}

.px-25rem {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/*Color Classes*/
.neon {
  color: #D0F224;
}

.black {
  color: #15141B;
}

.brown {
  color: #50524f;
}

.blue {
  color: #1238bf;
}

.darkblue {
  color: #040c26;
}

.stonegrey {
  color: #6c757d;
}

.lightblack {
  color: #15141B;
  opacity: 0.7;
}

.grey1 {
  color: #B3B3B3;
}

.grey2 {
  color: #f5f5f5;
}

.white {
  color: #FFFFFF;
}

.opacity {
  opacity: 0.7;
}

/*Background Classes*/
.bg-white {
  background-color: #FFFFFF;
}

.bg-blue {
  background-color: #1238bf;
}

.bg-darkblue {
  background-color: #040c26;
}

.bg-black {
  background-color: #15141B;
}

.bg-brown {
  background-color: #50524f;
}

.bg-stonegrey {
  background: #6c757d;
}

.bg-grey1 {
  background-color: #B3B3B3;
}

.bg-grey2 {
  background-color: #f5f5f5;
}

.bg-transparent {
  background-color: transparent;
}

/*Border Classes*/
.border-around {
  border: 1px solid #B3B3B3;
}

.border-top {
  border-top: 1px solid #B3B3B3;
}

.border-bottom {
  border-bottom: 1px solid #B3B3B3;
}

.border-right {
  border-right: 1px solid #B3B3B3;
}

.border-left {
  border-left: 1px solid #B3B3B3;
}

.border-none {
  border: none !important;
}

.border-rounded {
  border-radius: 50px;
}

.border-rounded-less {
  border-radius: 8px;
}

.border-around-light {
  border: 1px solid #e4e4e4;
}

/*Shadows*/
.box-shadow {
  -webkit-box-shadow: -2px 10px 16px -7px rgba(0, 0, 0, 0.17);
          box-shadow: -2px 10px 16px -7px rgba(0, 0, 0, 0.17);
}

/*Fonts*/
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  z-index: 1000;
  letter-spacing: 6px;
}

h1 {
  font-size: 4.6rem;
  margin: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
}

h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
}

h3 {
  font-size: 2.3rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.25px;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

h5 {
  font-size: 1.15rem;
  margin: 0;
}

h6 {
  font-size: 1.3rem;
  margin: 0;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

.text-underline {
  text-decoration: underline;
}

/*a-tag link styling*/
a {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a:hover {
  color: #D0F224 !important;
  text-decoration: none;
}

/*Button Classes*/
.btn {
  width: auto;
  height: auto;
  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;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-main {
  background-color: #D0F224;
  color: #15141B;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.85rem 1.65rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 0.25px solid #D0F224;
}

.btn-main:hover {
  border: 0.25px solid #D0F224;
  -webkit-box-shadow: 0px 1px 20px -1px #D0F224;
          box-shadow: 0px 1px 20px -1px #D0F224;
}

.btn-blue {
  background-color: #1238bf;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.85rem 1.65rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 0.25px solid #1238bf;
}

.btn-blue:hover {
  border: 0.25px solid #1238bf;
  -webkit-box-shadow: 0px 1px 20px -1px #1238bf;
          box-shadow: 0px 1px 20px -1px #1238bf;
  color: #FFFFFF;
}

/*For images*/
.img-fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blog-image {
  width: 100%;
  height: 17rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.img-logo {
  width: auto;
  height: 3.4rem;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.plan-img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.img-round {
  width: 6rem;
  height: 6rem;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*Header*/
#navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.navbar {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.nav-link h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.nav-link h4:hover {
  border-bottom: 2px solid #D0F224;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar-toggler-icon {
  font-size: 1.3rem;
}

.mobile-menu.navbar-collapse {
  z-index: 999;
  height: auto;
}

.mobile-menu .nav-link {
  padding: 1rem 2.3rem;
}

/*Footer Styling Classes*/
footer {
  background-color: #15141B;
}

footer a {
  color: #B3B3B3;
  opacity: 0.8;
}

.footer i {
  font-size: 1.3rem;
  margin: 0;
}

/*Form Styling Classes*/
/*Modal Styling Classes*/
.modal .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal .modal-body {
  overflow-y: auto;
}

.modal-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  border-bottom: none;
}

.close {
  opacity: 1;
  -webkit-transition: all .6s;
  transition: all .6s;
}

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

.close span {
  font-size: 1.5rem;
  color: #15141B;
}

.close span:hover {
  color: #B3B3B3;
}

/*Tabs and Pills Styling*/
/*=======================
STYLE GUIDE ENDS HERE
=======================*/
/*PAGE CHANGE: HOMEPAGE*/
/*Landing Area*/
.landing-area {
  height: 100vh;
  position: relative;
  background-color: #FFFFFF;
}

.landing-area video {
  width: 100%;
  height: auto;
  position: absolute;
}

/*About Area*/
.about-area h1 {
  font-size: 11.2rem;
  margin-bottom: -1rem;
  letter-spacing: -9px;
}

.about-area h2 {
  font-size: 9.0rem;
  margin-bottom: -0.8rem;
  letter-spacing: -9px;
}

.about-area a {
  color: #15141B;
}

.about-area video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-area .border-top {
  border-color: #7b788b !important;
}

/*Circular text rotation*/
#container {
  margin: 0%;
  position: absolute;
  top: 19%;
  left: 0;
}

#circle {
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

#circle text {
  font-size: 16px;
  font-weight: bold;
}

#circle svg {
  left: 0;
  top: 0;
  width: 100%;
  height: 540px;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

/*Website for every purpose*/
.pill-options {
  height: 100%;
}

.pill-options h3 {
  border: 0.25px solid #474747;
  padding: 1rem 1.9rem;
  border-radius: 6px;
  background-color: transparent;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 1.3rem;
  margin-right: 0.8rem;
  margin-bottom: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pill-options h3:hover {
  border: 0.25px solid #D0F224;
  -webkit-box-shadow: 0px 1px 20px -1px #D0F224;
          box-shadow: 0px 1px 20px -1px #D0F224;
}

.pill-options i {
  font-size: 1.1rem;
  color: #D0F224;
  padding-right: 0.8rem;
}

/*Image Banner*/
.banner-area img {
  width: 100%;
  height: 65vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*Blog Area*/
.blog-area h3 {
  font-size: 1.9rem;
  line-height: 1.1;
}

/*Pricing area*/
.pricing-area a {
  color: #15141B;
  border-bottom: 2px solid #15141B;
}

.pricing-area a:hover {
  color: #1238bf !important;
  border-bottom: 2px solid #1238bf;
}

.pricing-card {
  border: 0.5px solid #dedede;
}

.pricing-card h3 {
  font-size: 2.5rem;
  letter-spacing: -1.2px;
}

.pricing-card h6 {
  font-size: 2rem;
  letter-spacing: -1.2px;
}

.pricing-area .bg-grey2 .border-top,
.pricing-area .bg-grey2 .border-left {
  border-color: #adadad !important;
}

/*PAGE CHANGE: CONTACT PAGE*/
.contact-area h1 {
  font-size: 3.6rem;
}

.direct-call {
  border-radius: 6px;
}

.direct-call .btn-blue,
.direct-call .btn-main {
  padding: 0.25rem 0.8rem;
  font-weight: 400;
}

.form-area form {
  width: 65%;
}

.form-area .form-row {
  margin: 2.5rem 0rem 2rem 0rem;
}

.form-area input,
.form-area textarea {
  border: none;
  border-bottom: 1px solid #15141B;
  border-radius: 0px;
  font-size: 2rem;
  font-weight: 300;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #1238bf;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control-lg {
  padding: 0.5rem 0.5rem;
}

/*PAGE CHANGE: PRICING PAGE*/
/*# sourceMappingURL=style.css.map */