@font-face{
    font-family: "gothic";
    src: url("./fonts/gothic.ttf") format("truetype");
    font-weight: normal;
	font-style: normal;
}

@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-SemiBold";
    src: url("./fonts/Raleway-SemiBoldItalic.ttf") format("truetype");
    font-weight: normal;
	font-style: normal;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1{
    font-family:"Raleway-ExtraBold";
    font-weight: normal;
	font-style: normal;
}

h2{
    font-family: "gothic";
    font-weight: 900;
	font-style: normal;
}

.main-container{
    width: 1536px;
    height: 648px;
    background: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.content{
    display: flex;
    position: relative
}

.left-content{
    width: 831px;
    height: 648px;
    padding-left: 65px;
    position: relative
}

.right-content{
    width: 705px;
    height: 648px;
    position: relative;
}

.main-title{
    font-size: 70px;
    line-height: 69px;
    color: #fff;
    max-width: 580px;
    margin-top: 65px;
}

.main-description{
    font-size: 30px;
    line-height: 35px;
    color: #333333;
    max-width: 615px;
    position: absolute;
    left: 65px;
    top: 350px;
}

.circle{
    width: 298px;
    height: 298px;
    background: url(../assets/circle.png);
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 646px;
    top: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-text-circle{
    color: #606060;
    text-align: center;
    font-family:"Raleway-SemiBold";
    font-weight: normal;
	font-style: normal;
    font-size: 30px;
    max-width: 200px;
}

.right-image{
    width: auto;
    height: 648px;
    position: absolute;
    right: 0;
    z-index: -1;
}

.invisible{
    display: none;
}

.visible{
    display: block;
}

.failsafe{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 1536px;
    height: 648px;
    background: url('../assets/failsafe.jpg');
    background-size: cover;
    background-position: center;
}