*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

::selection {
  background-color: #0c1025;
  color: white;
}

/* BODY SET */
body {
    height: 100%;
    width: 100%;
}

.colors {
  background-color: rgb(0, 2, 10);
  color: white;
}

.row div {
  margin: 5px 0px;
}

.row img {
  width: 100%;
  margin: 20px 0px 40px 0px;
}

.logos .row img {
  width: 50%;
}

@media screen and (max-width: 910px) {
  .logos .row img {
    width: 100%;
  }
}

img {
  filter: contrast(120%);
}

iframe {
  margin: 15px 0px;
}

/* BODY SET END */

/* LOADER */
.loader-wrapper{
  position: fixed;
  height: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(20px);
  z-index: 999999;
}
/* LOADER END */

/* NAVBAR */
.navbar-custom {
  background-color: transparent;
}

#navbar {
  transition: all 0.7s;
}

.navbar-brand img {
  border-radius: 40px;
}

.navbar-custom .navbar-nav .nav-link {
  font-size: 15pt;
  color: white;
  margin-right: 30pt;
}

.nav-link:active {
  color: aqua!important;
}

.nav-link:hover {
  transition: all 0.3s;
  color: rgb(45, 55, 190)!important;
}

@media(max-width: 1280px){
  .navbar-custom .navbar-nav .nav-link {
      font-size: 15pt;
  }
}

a.nav-link {
  position: relative;
}

a.nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: rgb(45, 55, 190);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

a.nav-link:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar-collapse {
  text-align: center;
}

.custom-toggler {
  border: none;
}

.custom-toggler:focus {
  outline: none;
}

#nav-icon {
  width: 50px;
  height: 40px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 7px;
  width: 100%;
  background-image: linear-gradient(-20deg, #b721ff 0%, #21d4fd 100%);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2) {
  top: 18px;
}

#nav-icon span:nth-child(3) {
  top: 36px;
}

#nav-icon.open span:nth-child(1) {
  background-image: linear-gradient(-20deg, #b721ff 0%, #21d4fd 100%);
  top: 18px;
  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -60px;
  top: -20px;
}

#nav-icon.open span:nth-child(3) {
  background-image: linear-gradient(-20deg, #b721ff 0%, #21d4fd 100%);
  top: 18px;
  -webkit-transform: rotate(-405deg);
  -moz-transform: rotate(-405deg);
  -o-transform: rotate(-405deg);
  transform: rotate(-405deg);
}

/* MAIN */
main {
    font-size: calc(0.75vh + 1rem);
    padding-top: 100px;
}
/* MAIN END */

/* FOOTER */
.footer {
    background-color: black;
    color: grey;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
}
/* FOOTER END */

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background: grey; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: white; 
}
/* SCROLLBAR END */

/* NAVIGATION */
.left {
  padding-left: 10px;
}

.top-set {
  padding-top: 5px;
}

button {
  background-color: transparent;
  border: none;
}

#top-button {
  display: none;
  position: fixed;
  right: 60px;
  bottom: 40px;
  z-index: 100;
  animation: ease-out 2s;
  opacity: 1;
}

#top-button:active {
  opacity: 1;
}

@media(max-width: 1280px){
  #top-button{
    right: 40px;
  }
}

#top-button:focus {
  outline: none;
}

/* NAVIGATION END */

.set-margin {
  margin: 3vw 10vw 5vw 5vw;
  background-color: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 60px #34d5eb;
  border: 4px solid black;
  border-radius: 20px;
  animation: gradient 10s 2s infinite ease-in-out;
}

@keyframes gradient {
  0% {
    box-shadow: 0px 0px 60px #34d5eb;
  }
  25% {
    box-shadow: 0px 0px 60px blue;
  }
  50% {
    box-shadow: 0px 0px 60px red;
  }
  75%{
    box-shadow: 0px 0px 60px white;
  }
  100% {
    box-shadow: 0px 0px 60px #34d5eb;
  }
}

@media(max-width: 1280px){
  .set-margin{
    margin: 0 5vw 10vw 5vw;
  }
}

.grid-color {
  border-radius: 20px;
  transition: all .6s;
  width: 85%;
  margin: 40px;
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .grid-color {
    margin-left: 10px;
  }
}

.add-padding {
  padding: 10px;
}

html.is-animating .grid-color {
  opacity: 0;
}

.grid-color:hover {
  box-shadow: 0px 0px 20px #34d5eb;
  transform: scale(1.04);
}

.text-style {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}

.main {
  padding: 20px 10px 10px 20px;
  font-size: 2rem;
}

main h2 {
  font-size: 2rem;
}

@media(max-width:1280px){
  main h2 {
    font-size: 1.5rem;
  }
}

.pos {
  padding-bottom: 10px;
}

.name-area {
  position: absolute;
  font-size: 1.5rem;
  text-align: center;
  align-items: center;
  bottom: 0;
  background: rgb(0, 0, 0); 
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px); 
  color: white;
  height: auto;
  width: 100%; 
  padding: 5px; 
}

.navigate-contact {
  color: black;
  border: black solid 3px;
  background-color: rgb(160, 150, 150);
  font-weight: bolder;
  border-radius: 20px;
  padding: 10px;
  text-decoration: none;
  transition: .4s;
}

.navigate-contact:hover {
  color: white;
  font-weight: bolder;
  background-color: rgba(0, 2, 10, 1);
  border: white solid 4px;
  text-decoration: none;
}

.logos
{
  text-align: center;
  margin-bottom: 20px;
}

.logo
{
  width: 50%;
  height: auto;
}

.place {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 90%;
  padding-top: 56.25%;
}

.iframe-size {
  position: absolute;
  padding-left: 5vw;
  padding-right: 5vw;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  right: 0;
  width: 100%;
  height: 90%;
}

@media screen and (max-width: 350px) {
    .main {
      font-size: 1.5rem;
    }

    .pos-content {
      font-size: 0.75rem;
    }
}