@font-face {
  font-family: 'TpFont';
  src: URL('font/RussoOne.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: black;
  overflow-x: hidden;
  margin: 0;
}

main {
  visibility: hidden;
}

header {
   visibility: hidden;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

p, h1, h2, h3 {
  color: white;
  margin: 0;
}

a {
  text-decoration: none;
}

.loader-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 5vw;
}

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

.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #FF3D00;
  border-style: solid solid dotted;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

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

.h-link {
  display: flex;
  align-items: center; 
}

.h-link a {
  color: white;
}

.h-link a:hover {
  color: #2bde73;
}

.h-link :nth-child(2) {
  margin-left: 1vw;
  margin-right: 3vw;
}

.go-l {
  width: 4vw;
  height: 4vw;
}

.ks-sl {
  width: 10vw;
}

.c-p {
  cursor: pointer;
}

.bg-r {
  background-color: #D71313
}

.clr-r {
  color: #D71313;
}

.bg-b {
  background-color: #0D1282;
}

.clr-b {
  color: #0D1282;
}

.justify {
  text-align: justify;
}

.bg-g {
  background-color: #EEEDED;
}

.neons img {
  width: 100%;
  height: auto;
}

@keyframes neonSlide {
  from {
    opacity: 0;
    margin-top: 15vw;
  }
  to {
    opacity: 1;
    margin-top: 12vw;
  }
}

.neon-slogan {
  position: absolute;
  text-align: center;
  width: 100%;
  opacity: 0;
}

.neon-slogan-animation {
  animation: neonSlide 0.8s ease-out 1s forwards;
}

.under-neons button {
  background-color: #D71313;
  color: #EEEDED;
  width: 15vw;
  height: 5vw;
  border: none;
  margin-top: 5vw;
  cursor: pointer;
}

.under-neons {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vw;
}

.under-neons-c {
  text-align: center;
}

.f-center {
  align-items: center;
}

.f-end {
  align-items: end
}

.p-a {
  font-family: Arial;
}

.p-r {
  font-family: 'TpFont';
}

.ps-1a5 {
  font-size: 1.5vw;
}

.ps-1a55 {
  font-size: 1.55vw;
}

.ps-2 {
  font-size: 2vw;
}

.ps-2a55 {
  font-size: 2.55vw;
}

.ps-3 {
  font-size: 3vw;
}

.ps-5 {
  font-size: 5vw;
}

.ps-6 {
  font-size: 6vw;
}

.ps-7 {
  font-size: 7vw;
}

.ps-10 {
  font-size: 10vw;
}

.reverse {
  order: 1;
}

.s-50-50 {
  display: flex;
}

.s-50-50 img {
  width: 50%;
  height: auto;
}

.s-50-50-txt {
  color: #EEEDED;
  width: 50%;
  height: auto;
}

.s-66-33-reverse,
.s-66-33 {
  display: flex;
  padding-top: 3vw;
  margin-right:2vw;
  margin-left: 2vw;
}

.s-66-33-reverse img,
.s-66-33 img {
  width: 66%;
  height: auto;
}

.s-66-33-reverse img {
  order: 1;
  display: block;
  margin-left: auto;
}

.s-66-33-reverse p,
.s-66-33-reverse h3,
.s-66-33 p,
.s-66-33 h3 {
  opacity: 0;
  color: black;
}

.s-66-33 .s-66-33-txt {
  padding-left: 2vw;
}

.s-66-33-reverse .s-66-33-txt {
  padding-right: 2vw;
}

@keyframes leftToRight {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rightToLeft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pyw-animation h3 {
  animation: leftToRight 0.8s ease-out 0s forwards;
}

.pyw-animation .pyw-txt {
  animation: rightToLeft 0.8s ease-out 0s forwards;
}

.pyw h3 {
  margin-left: 7vw;
  opacity: 0;
}

.pyw-txt {
  padding-right: 7vw;
  padding-left: 7vw;
  margin-top: 2vw;
  opacity: 0;
}

.tldr {
  background-color: white;
  padding: 0 2vw;
}

.tldr-h {
  color: #EEEDED;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 0;
}

.tldr-box {
  display: flex;
  justify-content: center;
  gap: 2vw;
}

.tldr-sec {
  background-color: #EEEDED;
  position: relative;
  width: 100%;
  height: auto
}

.tldr-sec h3 {
  color: black;
  margin: 0 5vw;
}

.tldr-sec p {
  color: black;
  margin: 2vw 5vw 7vw 5vw;
}

.tldr-sec svg:first-child {
  width: 5vw;
  margin: 1vw;
  fill: #0D1282;
}

.tldr-sec svg:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3vw;
  margin: 1vw;
  fill: #0D1282;
  transition: transform 0.5s ease;
  transform: rotate(0deg);
}

.tldr-sec:hover svg {
  fill: #D71313;
}

.tldr-sec:hover svg:last-child {
  transform: rotate(45deg);
}

@keyframes downToBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h-cus-animation p,
.h-cus-animation h3 {
  animation: downToBottom 0.8s ease-out 0s forwards;
}

.h-cus {
  padding-bottom: 3vw;
  background-color: white
}

.h-cus-1p {
  margin: 2vw 0;
}

.nofg {
  background-color: #D71313;
  padding-top: 3vw;
  padding-bottom: 3vw;
}

.nofg .s-50-50:nth-last-of-type(1),
.nofg .s-50-50:nth-last-of-type(3) {
  padding-left: 2vw;
}

.nofg .s-50-50:nth-last-of-type(2) {
  padding-right: 2vw;
}

.nofg-sec {
  padding-right: 7vw;
  padding-left: 7vw;
}

.nofg-sec h3 {
  margin-bottom: 2vw;
}

.nofg-h {
  text-align: center;
  margin-bottom: 4vw;
}

.nofg p,
.nofg h3 {
  color: white;
}

.nofg-sec p,
.nofg-sec h3 {
  opacity: 0;
}

.nofg-badges {
  margin-top: 2vw;
}

.nofg-badges p {
  background-color: #0D1282;
  border-radius: 1.5vw;
  padding: 0.5vw 1vw;
  width: fit-content;
  margin-top: 0.5vw;
}

.nofg-sec-animation p:first-of-type {
  animation: rightToLeft 0.8s ease-out 0s forwards;
}

.nofg-sec-animation .nofg-badges p, 
.nofg-sec-animation h3 {
  animation: leftToRight 0.8s ease-out 0s forwards;
}

.tsm {
  background-color: white;
  padding-top: 3vw;
  padding-bottom: 6vw;
  padding-left: 2vw;
}

.tsm h3 {
  color: #0D1282;
}

.tsm-row {
  display: flex;
  margin-top: 3vw;
  overflow-x: auto;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.tsm-row::-webkit-scrollbar {
  display: none; 
}

.tsm-sqr {
  flex: 0 0 auto;
  position: relative;
  margin-right: 2vw;
  width: 28vw;
  color: white;
  background-color: #0D1282;
  aspect-ratio: 1 / 1;
}

.tsm-sqr img {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20%;
  aspect-ratio: 1 / 1;
}

.tsm-sqr p:first-of-type {
  margin: 7vw 4vw 1vw 4vw;
  font-style: italic;
}

.tsm-sqr p:nth-of-type(2) {
  position: absolute;
  margin-bottom: 4vw;
  margin-left: 4vw;
  bottom: 0;
}

.ly-box {
  background-color: white;
  padding: 1vw 2vw 1vw 2vw;
}

.ly-row {
  display: flex;
  justify-content: center;
  padding: 1vw 0 1vw 0;
  gap: 2vw;
}

.ly-sqr {
  opacity: 0;
  background-color: #EEEDED;
  position: relative;
  width: 100%;
  height: auto
}

.ly-sqr p {
  color: black;
  margin: 2vw;
}

.ly-sqr img {
  width: 100%
}

.ly-sqr-l-animation {
  animation: leftToRight 0.8s ease-out 0s forwards;
}

.ly-sqr-r-animation {
  animation: rightToLeft 0.8s ease-out 0s forwards;
}

.faq {
  padding-top: 3vw;
  padding-bottom: 6vw;
  background-color: #0D1282;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-q {
  background-color: #EEEDED;
  margin-top: 3vw;
  padding: 3vw;
  width: 55vw;
}

.faq-row {
  cursor: pointer;
}

.faq-row p {
  display: inline;
  color: #0D1282;
}

.faq-arrow {
  display: inline-block;
  fill: #0D1282;
  margin-right: 1vw;
  width: 1.5vw;
  height: 1.5vw;
  transition: transform 0.5s ease;
}

.faq-arrow-rotate {
  transform: rotate(180deg);
}

.faq-answer {
  margin-left: 2.5vw;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.faq-answer p {
  color: #0D1282;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.faq-hr {
  border-top: 1px solid #0D1282;
  margin: 1vw 0;
}

.footer {
  display: flex;
  background-color: black;
  justify-content: space-between;
  padding: 8vw 17% 8vw 17%
}

.footer-l,
.footer-r {
  height: auto;
  display: flex;
  flex-direction: column; 
  align-items: left;
}

.footer-l img {
  margin-top: 1vw;
}

.footer-r p:nth-child(3) {
  margin-top: 1.5vw;
}

.footer-url {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 4vw;
  width: fit-content;
}

.footer-url svg {
  fill: #2bde73;
  width: auto;
  height: 50%;
  margin-right: 1.5vw;
}

.footer-url:hover svg {
  fill: white;
}

.ks-bl {
  width: 24vw;
}

.social-media {
  display: flex;
  justify-content: space-between;
  width: 24vw;
  margin-left: 0.2vw;
  margin-top: 1vw;
}

.social-media img {
  display: flex;
  width: 5vw;
}

.social-media img:hover {
  background-color: #2bde73;
}

@media (width < 64rem) {

  .reverse {
    order: 0;
  }

  .go-l {
    width: 8vw;
    height: 8vw;
  }

  .h-link a {
    font-size: 3.5vw;
  }

  .ks-sl {
    width: 22vw;
  }
  
  .under-neons button {
    width: 21vw;
    height: 7vw;
    font-size: 2.5vw;
  }

  .s-50-50,
  .s-66-33, 
  .s-66-33-reverse {
    flex-direction: column;
  }

  .pyw .s-50-50-txt {
    height: 40vw;
    width: auto;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: left; 
    overflow: hidden;
  }

  .s-66-33-reverse .s-66-33-txt,
  .s-66-33 .s-66-33-txt {
    height: 40vw;
    padding-left: 0;
    display: flex;
    align-self: center;
    flex-direction: column; 
    justify-content: center; 
    overflow: hidden;
  }

  .s-66-33-txt h3,
  .s-50-50-txt h3 {
    font-size: 5vw;
  }

  .s-66-33-txt p,
  .s-50-50-txt p {
    font-size: 2.5vw;
  }

  .h-cus .s-66-33-reverse img {
    order: 0;
  }

  .s-50-50-txt .nofg-badge {
    display: flex;
    gap: 1vw;
  }

  .pyw h3 {
    margin-left: 17vw;
  }

  .pyw-txt {
    padding-left: 17vw ;
    padding-right: 17vw ;
  }

  .h-cus img,
  .pyw img {
    width: 100%;
    height: 50vw;
    object-fit: cover;  
  }

  .nofg .s-50-50 {
    align-items: center;
  }

  .nofg .s-50-50 img {
    width: 70%;
    height: 50vw;
    object-fit: cover; 
    object-position: 0% 100%;
  }

  .nofg .s-50-50-txt {
    height: 40vw;
    width: auto;
    display: flex;
    flex-direction: column; 
    justify-content: start; 
    align-items: left; 
    padding: 2vw 14vw 0 14vw;
  } 

  .nofg .s-50-50:nth-last-of-type(1),
  .nofg .s-50-50:nth-last-of-type(2),
  .nofg .s-50-50:nth-last-of-type(3) {
    padding-left: 0;
    padding-right: 0;
  }

  .nofg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
  }

  .pyw-img-1 {
    object-position: 0% 50%;
  }

  .pyw-img-2 {
    object-position: 0% 80%;
  }

  .tldr-box {
    flex-direction: column;
  }

  .tldr-sec h3 {
    font-size: 5vw;
    margin: 5vw 15vw 0 15vw;
  }

  .tldr-sec p {
    font-size: 2.5vw;
    margin: 2vw 15vw 5vw 15vw;
  }

  .tldr-sec svg:first-child {
    position: absolute;
    width: 8vw;
  }

  .tldr-sec svg:last-child {
    width: 5vw;
  }

  .tsm-sqr {
    width: 45vw;
  }

  .tsm-sqr p:first-of-type {
    font-size: 2.5vw;
    margin: 11vw 6vw 1vw 6vw;
  }

  .tsm-sqr p:nth-of-type(2) {
    font-size: 2.5vw;
    margin-bottom: 6vw;
    margin-left: 6vw;
  }

  .ly-row {
    flex-direction: column;
  }

  .faq-hr {
    margin: 3vw 0;
  }

  .faq-answer p,
  .faq-row p,
  .ly-sqr p {
    font-size: 2.5vw;
  }
  
  .faq-q {
    width: 90vw;
    padding: 4vw 2vw;
  }

  .footer {
    padding: 12vw 6vw 12vw 6vw
  }

  .footer-url p {
    font-size: 5vw;
  }

  .footer-url svg {
    height: 75%;
  }

  .footer-url {
    margin-bottom: 2.5vw;
  }

  .footer-l {
    margin-top: 1vw;
  }

  .footer-r p:nth-child(1) {
    font-size: 2.6vw;
  }

  .footer-r p:nth-child(2) {
    font-size: 5vw;
  }

  .footer-r p:nth-child(3) {
    font-size: 4.25vw;
    margin-top: 3.1vw;
  }

  .social-media,
  .ks-bl {
    width: 40vw;
  }

  .social-media img {
    width: 8vw;
  }
}