:root {
    --yellow: #FAD939;
    --blue: #0B1E31;
    --white: #ffffff;
  }
  
@font-face {
  font-family: Switzer-Regular;
  src: url(../fonts/Switzer-Regular.woff);
  font-weight: 400;
}

@font-face {
  font-family: Switzer-Extrabold;
  src: url(../fonts/Switzer-Extrabold.woff);
  font-weight: 800;
}

html, body{
    margin: 0;
    padding: 0;
    background-color: var(--blue);
    color: var(--white);
    font-family: 'Switzer-Regular', sans-serif;
    font-style: normal;
    font-weight: 400;
}

.index{
    overflow: hidden;
}

.container{
    height: calc(100vh - 208px);
    padding: 104px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

p{
    font-size: 16px;
    line-height: 180%;
}

.main{
    text-align: center;
    max-width: 720px;
}

.main-subpage{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 104px 20px;
    hyphens: auto;
}

.content{
    display: flex;
    flex-direction: column;
	width: 100%;
    max-width: 720px;
}   

.logo{
    width: 200px;
}

h1{
    font-size: 96px;
    margin: 0 0 8px 0;
    text-transform:uppercase;
    font-weight: 800;
    line-height: 100%;
    font-family: Switzer-Extrabold;
}

.h2{
    font-size: 56px;
    margin: 0 0 8px 0;
    text-transform:uppercase;
    font-weight: 800;
    line-height: 100%;
    font-family: Switzer-Extrabold;
}
		
h2{
	margin-bottom: 0 !important;
	margin-block-end: 0 !important;
	font-weight: 800;
    line-height: 100%;
    font-family: Switzer-Extrabold;
}
		
h3{
    font-size: 24px;
    margin: 0 !important;
    padding-top: 24px !important;
    text-transform:uppercase;
    font-weight: 800;
    line-height: 100%;
    font-family: Switzer-Extrabold;
}

a{
    color: var(--white);
}

.main{
    line-height: 160%;
}

.contact-icons{
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.contact-icons svg{
    padding: 11px;
    background-color: var(--yellow);
    border-radius: 100px;
}

.legal{
    display: flex;
    gap: 24px;
}

.legal a{
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
}

.back{
    color: var(--white);
    font-size: 14px;
	margin-top: 40px;
	text-align: center;
}


@media only screen and (max-width: 767px) {
    h1{
        font-size: 50px;
    }
    .h2{
        font-size: 28px;
    }
	h2{
		font-size: 20px;
	}
    h3{
        font-size: 16px;
    }

    .container{
        height: calc(94vh - 112px);
        padding: 56px 20px;
    }
	.main-subpage{
    	align-items: stretch;
	}
}