/* ----------------------------------------------------------------------------------------
* Author        : My Code Magic
* Template Name : Template
* File          : Main CSS file
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Helper css
02. General css
03. Header css
04. Hero css
-------------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Code+Latin:wght@100;200;300;400;500;600;700&display=swap");
/*----------------------------------------*/
/*  01 - Helper Class
/*----------------------------------------*/
.p-0 {
  padding: 0px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-100 {
  padding: 100px !important;
}

/** padding-top **/
.pt-0 {
  padding-top: 0px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

/** padding-bottom **/
.pb-0 {
  padding-bottom: 0px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.section-padding-y {
  padding: 40px 0;
}
@media screen and (max-width: 991px) {
  .section-padding-y {
    padding: 20px 0;
  }
}

.section-padding-x {
  padding: 0 60px;
}
@media screen and (max-width: 991px) {
  .section-padding-x {
    padding: 0 30px;
  }
}

.section-padding-xy {
  padding: 40px 60px;
}
@media screen and (max-width: 991px) {
  .section-padding-xy {
    padding: 20px 30px;
  }
}

.font-w-1 {
  font-weight: 100;
}

.font-w-3 {
  font-weight: 300;
}

.font-w-4 {
  font-weight: 400;
}

.font-w-5 {
  font-weight: 500;
}

.font-w-6 {
  font-weight: 600;
}

.font-w-7 {
  font-weight: 700;
}

.font-w-8 {
  font-weight: 800;
}

.font-w-9 {
  font-weight: 900;
}

.box-shadow-01 {
  -webkit-box-shadow: 10px 10px 10px 10px #d3d3d3;
  -moz-box-shadow: 10px 10px 10px 10px #d3d3d3;
  -ms-box-shadow: 10px 10px 10px 10px #d3d3d3;
  -o-box-shadow: 10px 10px 10px 10px #d3d3d3;
  box-shadow: 10px 10px 10px 10px #d3d3d3;
}

.box-shadow-02 {
  -webkit-box-shadow: 10px 10px 10px 10px rgba(116, 116, 116, 0.493);
  -moz-box-shadow: 10px 10px 10px 10px rgba(116, 116, 116, 0.493);
  -ms-box-shadow: 10px 10px 10px 10px rgba(116, 116, 116, 0.493);
  -o-box-shadow: 10px 10px 10px 10px rgba(116, 116, 116, 0.493);
  box-shadow: 10px 10px 10px 10px rgba(116, 116, 116, 0.493);
}

.btn {
  text-decoration: none;
  background-color: #000000;
  text-transform: uppercase;
  border: 1px solid transparent;
  font-size: 15px;
  display: inline-block;
  color: white;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.btn:hover {
  color: #000000;
  border: 1px solid #000000;
  background-color: #d3d3d3;
}
@media screen and (max-width: 991px) {
  .btn {
    display: block;
    width: 100%;
  }
}

.social ul {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.social li {
  display: inline-block;
  padding: 0 5px;
}
.social li a {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-color: transparent;
  font-size: 18px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

/************************************/
/***** 	   02. General css		 ****/
/************************************/
body {
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  font-family: "Work Sans", sans-serif;
  background: #030711;
  height: 100vh;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

a:hover,
a {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

::-moz-selection {
  background: #05cbfc;
  color: #fff;
}

::selection {
  background: #05cbfc;
  color: #fff;
}

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

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

button:focus,
input:focus,
img:focus,
.slick-slide:focus,
textarea:focus,
input:focus {
  outline: none;
}

/************************************/
/***** 	   04. Hero css		    ****/
/************************************/
@keyframes rotate {
  from {
    rotate: 0deg;
  }
  50% {
    scale: 1 1.5;
  }
  to {
    rotate: 360deg;
  }
}
#blob {
  background-color: #E1E7EF;
  height: 34vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(180deg, #B3F36A 21.7%, #002382 100%);
  animation: rotate 20s infinite;
  opacity: 0.5;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  #blob {
    display: none;
  }
}

#blur {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12vmax);
}
@media screen and (max-width: 991px) {
  #blur {
    display: none;
  }
}

.banner {
  height: 100vh;
  position: relative;
  z-index: 10;
}
.banner__inner {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.banner__logo a {
  display: inline-block;
  width: 250px;
}
.banner__text {
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .banner__text {
    padding: 50px 0;
  }
}
.banner__text h1 {
  color: #E1E7EF;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
  font-family: "M PLUS Code Latin", sans-serif;
  letter-spacing: 5px;
}
@media screen and (max-width: 991px) {
  .banner__text h1 {
    font-size: 50px;
  }
}
.banner__text p {
  color: #E1E7EF;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 30px;
}
@media screen and (max-width: 991px) {
  .banner__text p {
    font-size: 14px;
    padding-top: 20px;
  }
  .banner__text p br {
    display: none;
  }
}
.banner__social ul {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .banner__social ul {
    gap: 30px;
  }
}
.banner__social ul li a {
  color: #E1E7EF;
  display: inline-block;
  font-size: 24px;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.banner__social ul li a i {
  display: inline-block;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}
.banner__social ul li a:hover {
  color: #B3F36A;
  transform: translateY(-3px);
}

/*# sourceMappingURL=style.css.map */
