

@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

body{
  background-color: black;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  max-width: 1442px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: white;
  font-family: 'Poiret One', sans-serif;
  flex-direction: row;
}

.content {
  flex: 1;
  display: flex;
  text-align: center;
  justify-content: center;

}

.contact {
  flex: 1;
  display: flex;
  text-align: center;
  justify-content: center;

}

.flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3em;
  width: 100%;
}

.logo {
  margin-top: 30px;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}

.svg{
  width: 80%;
}


h1{
  font-size: 1em;
  font-weight: 200;

}

h3{
  font-weight: 300;
  font-size: 20px;

}




/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  /* CSS */
  h1{
    font-size: 2em;
   }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  h1{
    font-size: 1.8em;
   }
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
 h1{
  font-size: 1.6em;
 }
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  */h1{
    font-size: 1.5em;
  }
  .container {
    flex-direction: column;
  }
  .content{
    flex: none;
    width: 100%;
  }
   
  /* CSS */
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /* CSS */h1{
  font-size: 1.5em;
}

.container {
  flex-direction: column;
}
.content{
  flex: none;
  width: 100%;
}
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  /* CSS */h1{
  font-size: 1em;
}
.container {
  flex-direction: column;
}
.content{
  flex: none;
  width: 100%;
}

  
}

/* animation class and keyframes */

.overflow-hidden {
  overflow: hidden;
 }
 
 .drop-in-1 {
  animation: drop-in 1s ease 200ms backwards;
 }
 
 .drop-in-2 {
  animation: drop-in 1400ms ease 500ms backwards;
 }

 .drop-in-3 {
  animation: drop-in 1800ms ease 500ms backwards;
 }
 .drop-in-4 {
  animation: drop-in 2200ms ease 500ms backwards;
 }
 .drop-in-5 {
  animation: drop-in 2600ms ease 500ms backwards;
 }
 .drop-in-6 {
  animation: drop-in 3000ms ease 500ms backwards;
 }
 
 @keyframes drop-in {
  from {
   opacity: 0;
   transform: translateY(-100px);
  }
  to {
   opacity: 1;
   transform: translate(0px);
  }
 }
 
/***************************************************

  Animation LOGO

 **************************************************/


 @-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.8s linear 0.8s both;
          animation: animate-svg-fill-1 0.8s linear 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.8s linear 0.9s both;
          animation: animate-svg-fill-2 0.8s linear 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.8s linear 1s both;
          animation: animate-svg-fill-3 0.8s linear 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.8s linear 1.1s both;
          animation: animate-svg-fill-4 0.8s linear 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.8s linear 1.2000000000000002s both;
          animation: animate-svg-fill-5 0.8s linear 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.8s linear 1.3s both;
          animation: animate-svg-fill-6 0.8s linear 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.8s linear 1.4000000000000001s both;
          animation: animate-svg-fill-7 0.8s linear 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.8s linear 1.5s both;
          animation: animate-svg-fill-8 0.8s linear 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.8s linear 1.6s both;
          animation: animate-svg-fill-9 0.8s linear 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.8s linear 1.7000000000000002s both;
          animation: animate-svg-fill-10 0.8s linear 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.8s linear 1.8s both;
          animation: animate-svg-fill-11 0.8s linear 1.8s both;
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.8s linear 1.9000000000000001s both;
          animation: animate-svg-fill-12 0.8s linear 1.9000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.8s linear 2s both;
          animation: animate-svg-fill-13 0.8s linear 2s both;
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.8s linear 2.1s both;
          animation: animate-svg-fill-14 0.8s linear 2.1s both;
}
