@font-face{
    font-family:"Raleway-ExtraBold";
    src: url("./fonts/Raleway-ExtraBold.ttf") format("truetype");
    font-weight: normal;
	font-style: normal;
}

@font-face{
    font-family:"Raleway-Medium";
    src: url("./fonts/Raleway-Medium.ttf") format("truetype");
    font-weight: normal;
	font-style: normal;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1{
    font-family:"Raleway-ExtraBold";
    font-weight: 900;
	font-style: normal;
}

h2{
    font-family:"Raleway-Medium";
    font-weight: 700;
	font-style: normal;
}

p{
    font-family: "Raleway-Medium";
    font-weight: 700;
	font-style: normal;
}

.invisible{
    display: none;
}

.visible{
    display: block;
}

.main-container{
    width: 1536px;
    height: 648px;
    position: relative;
    overflow: hidden;
}

.content{
    display: flex;
    position: relative
}

.left-content{
    width: 750px;
    height: 648px;
    padding-left: 75px;
    position: relative
}

.right-content{
    width: 786px;
    height: 648px;
    position: relative;
    padding-left: 50px;
    padding-top: 120px;
}

.main-title{
    text-align: center;
    font-size: 98px;
    line-height: 89px;
    color: #333333;
    margin-top: 235px;
    width: 575px;
    height: 90px;
    overflow: hidden;
}

.second-title{
    text-align: center;
    font-size: 60px;
    line-height: 60px;
    color: #FF671D;
    margin-top: 30px;
    width: 575px;
}


.logos-container {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 680px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    max-width: 240px;
    max-height: 55px;
}

.main-description {
    display: flex;
    align-items: center;
    height: 520px;
}

.first-description{
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    text-align: left;
    width: 715px;
}

.ellipsis *{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ellipsis li:before {
    content:"• ";
}

.back-video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1536px;
    height: 648px;
}  

.invisible{
    display: none;
}

.visible{
    display: block;
}

.failsafe{
    width: 1536px;
    height: 648px;
    background: url('../assets/failsafe.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.animation-in{
    -webkit-animation: puff-in-center 1s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
    animation: puff-in-center 1s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

 @-webkit-keyframes puff-in-center {
    0% {
      -webkit-transform: scale(2);
              transform: scale(2);
      -webkit-filter: blur(4px);
              filter: blur(4px);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes puff-in-center {
    0% {
      -webkit-transform: scale(2);
              transform: scale(2);
      -webkit-filter: blur(4px);
              filter: blur(4px);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  