@font-face {
  font-family: "Telegraf";
  src: url("asset/Telegraf.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: "Telegraf", sans-serif;
  overflow: hidden;
}

header {
  position: fixed;
  top: 30px;
  left: 50px;
  z-index: 100;
}

header img {
  width: 220px;
}

.hero {
  width: 100%;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
    gap: 80px;
    padding: 0 5%;
}

.left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left video {
   width: 150%;
    max-width: 1300px;
    height: auto;
}

.right{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

}

.text-content{

    width:100%;

    max-width:550px;

    margin-top:420px;

}

.big {
  font-size:22px;
  line-height:1.7;
  color: #f5f5f5;
  margin-bottom: 15px;
}

.contact p {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.2;
  margin-bottom: 12px;
}

a {
  color: blue;
  text-decoration: none;
}

/* ==========================
   Tablet
========================== */
@media (max-width: 992px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
  }

  header {
    position: relative;
    top: 0;
    left: 0;
    padding: 30px;
    text-align: center;
  }

  header img {
    width: 220px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 30px 60px;
    height: auto;
    min-height: 100vh;
  }

  .left {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .left video {
    width: 100%;
    max-width: 650px;
    height: auto;
  }

  .right {
    width: 100%;
    max-width: 650px;
    text-align: center;
    padding-top: 0px;
  }

  

  .big {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ==========================
   Mobile
========================== */
@media (max-width: 768px) {

  *{
    box-sizing:border-box;
  }

  body{
    overflow-x:hidden;
  }

  header{
    position:relative;
    padding:25px 0;
    text-align:center;
  }

  header img{
    width:220px;
  }

  .hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    width:100%;
    height:auto;
    padding:20px;
    gap:30px;
  }

  .left,
  .right{
    width:100%;
    max-width:100%;
  }

  .left{
    display:flex;
    justify-content:center;
  }

  .left video{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    object-fit:contain;
  }

  .right{
    text-align:center;
    padding-top:0;
  }

  .big{
    font-size:18px;
    line-height:1.6;
  }

  .right p{
    font-size:15px;
    line-height:1.8;
  }

}