:root {
  --color-primary: #0f172a;
  --color-secondary: #6b21a8;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #020202;
  color: #333;
  height: 100%;
  padding: 0;
  margin: 0;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px dotted #FFF;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 2s linear infinite;
          animation: rotation 2s linear infinite;
}

.spinner::after {
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #69d0e7;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-animation: rotationBack 1s linear infinite;
          animation: rotationBack 1s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

.loader {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  background: #000;
  z-index: 1;
}

.loader.hidden {
  -webkit-animation: fadeOut 1.5s;
          animation: fadeOut 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

a {
  text-decoration: none;
}

p {
  margin: 1rem 0;
}

ul {
  list-style: none;
}

li {
  line-height: 2;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

.p2 {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.pf {
  padding: 3rem 1rem 2rem 1rem;
}

.pfT {
  text-align: center;
}

.txtB {
  font-weight: 800;
}

.email {
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 1rem;
  margin-right: 2rem;
  border-radius: 5px;
  background: #000115;
  color: whitesmoke;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-style: none solid none solid;
  border-width: 1px;
  border-color: whitesmoke;
}

.logos-small {
  display: none;
}

.containerFull {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr auto auto;
      grid-template-rows: 1fr auto auto;
  gap: 1em 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
      grid-template-areas: "sec1" "sec2" "sec3";
  min-height: 100%;
}

.sec1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sec1;
  height: 100%;
}

.sec2 {
  min-height: 100%;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: sec2;
}

.sec3 {
  min-height: 100%;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: sec3;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.3fr 0.7fr;
      grid-template-columns: 0.3fr 0.7fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: "hTXT hIMG";
  min-height: 100vh;
}

.storiesjumbo {
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: hIMG;
  -webkit-filter: contrast(100%);
          filter: contrast(100%);
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

.storiesjumbo:hover {
  -webkit-filter: contrast(200%);
          filter: contrast(200%);
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

.storiesjumbo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.storiesjumbo picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.storiesTxt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: hTXT;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: whitesmoke;
  background-color: #020202;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0 1rem 0 1rem;
  border-style: solid none solid solid;
  border-width: 3rem;
  border-color: #040625;
}

.storiesTxt h1 {
  font-size: 5rem;
  padding-bottom: 1rem;
}

.storiesTxt h2 {
  padding-bottom: 1rem;
  opacity: 0.6;
  font-style: italic;
}

.topnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.topnav a {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  font-weight: normal;
  font-style: normal;
  color: whitesmoke;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.topnav a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #82e6fd;
}

.borderBottom {
  border-style: none none solid none;
  border-width: 0.1rem;
  border-color: #a3174d;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.borderBottom:hover {
  border-style: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.text-gradient {
  background: linear-gradient(315deg, #3e61ca 25%, #69d0e7);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradientd {
  background: linear-gradient(315deg, #ec34ae 25%, #a3174d);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content {
  max-width: 1200px;
}

.lineHold {
  min-width: 1200px;
}

.about {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.5fr 0.5fr;
      grid-template-columns: 0.5fr 0.5fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  gap: 8rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
      grid-template-areas: "t1 i1" "i2 t2" "t3 i3" "i4 t4" "t5 i5";
  min-height: 100%;
}

.sec2 h1 {
  font-size: 3rem;
  padding: 5rem 0;
}

.imgBox {
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: contrast(100%);
          filter: contrast(100%);
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

.imgBox:hover {
  -webkit-filter: contrast(150%);
          filter: contrast(150%);
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

.textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem;
}

.textBox p {
  color: whitesmoke;
  font-size: 1.2rem;
}

.i1 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: i1;
}

.t1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: t1;
}

.i2 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: i2;
}

.t2 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: t2;
}

.i3 {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: i3;
}

.t3 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: t3;
}

.i4 {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: i4;
}

.t4 {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
  grid-area: t4;
}

.i5 {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
  grid-area: i5;
}

.t5 {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: t5;
}

.imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 5%;
}

.imgBox picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 5%;
}

.textBorderinio {
  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;
}

.textBorderinio span {
  margin: 0 9rem;
  padding: 5rem 0;
}

.textBorderinio:before,
.textBorderinio:after {
  background: #a3174d;
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  content: '';
}

.contactBackground {
  padding-top: 3.45rem;
  padding-bottom: 3.45rem;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-shadow: 2px 2px 4px rgba(62, 97, 202, 0.5) inset, -2px -2px 4px rgba(62, 97, 202, 0.5) inset;
          box-shadow: 2px 2px 4px rgba(62, 97, 202, 0.5) inset, -2px -2px 4px rgba(62, 97, 202, 0.5) inset;
  -ms-grid-column-align: center;
      justify-self: center;
  margin: 0.55rem;
  border-radius: 5px;
}

.gridy {
  display: -ms-grid;
  display: grid;
  grid-row-gap: 2rem;
  grid-column-gap: 1rem;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  justify-items: start;
  padding-top: 3.45rem;
  padding-bottom: 3.45rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -ms-grid-column-align: center;
      justify-self: center;
  max-width: 560px;
  margin: 0.55rem;
  border-radius: 5px;
  color: whitesmoke;
}

.gridy h3 {
  font-size: 1.5rem;
}

.gridy a {
  color: whitesmoke;
}

.gridy h4 {
  padding-bottom: 1rem;
  font-weight: normal;
}

@media screen and (orientation: portrait) and (max-width: 960px) {
  .body {
    font-size: 10px;
  }
  .btn {
    padding: 0.7rem;
  }
  .hero {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto 0.3fr;
        grid-template-rows: auto 0.3fr;
        grid-template-areas: "hIMG" "hTXT";
  }
  .storiesTxt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.1em;
    padding: 2rem;
    border-style: none none none none;
    border-width: 3rem;
    border-color: #040625;
  }
  .storiesTxt h1 {
    font-size: 3.5rem;
    padding-bottom: 0rem;
  }
  .storiesTxt h2 {
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  .topnav a {
    font-size: 1.2rem;
  }
  .topnav {
    padding-top: 2rem;
  }
  .about {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 1rem 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
        grid-template-areas: "i1"  "t1" "i2"  "t2" "i3" "t3" "i4"  "t4" "i5"  "t5";
  }
  .textBorderinio span {
    margin: 0 2rem;
    padding: 1rem 0;
  }
  .contactBackground {
    padding: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-grid-column-align: center;
        justify-self: center;
    margin: 0.55rem;
    border-radius: 0px;
  }
}
/*# sourceMappingURL=styles.css.map */