* {
	outline: 0 !important;
	text-decoration: none !important;
}

body {
	font-family: "Nunito Sans", sans-serif;
	font-size: 18px;
	line-height: 32px;
	color: #0e1d4f;
	background: #fff;
}

html, body{
    height: 100%
}
header {
	padding: 15px 15px;
}
header img{
    max-width: 450px
}


h1 {
    font-weight: 600;
    font-size: 68px;
    letter-spacing: 0.1em;
    line-height: 80px;
    text-align: center;
    text-transform: uppercase;
    color: #0e1d4f;
    margin: 0;
}

p {
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #0e1d4f;
	margin: 0;
}
.wrapper{
    height: 100%;
}
.cFlex{
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between
}

.content {
  margin: 50px 0;
    margin-top: 0
}

footer {
	padding: 0 15px;
    font-size: 19px;
    line-height: 36px;
    text-align: center;
    color: #0e1d4f;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socials{
    margin: 0 auto 30px;
    width: 340px
}
.socials ul{
    margin: 0;
    padding: 0;
    list-style: none
}
.socials ul li{
    list-style: none;
    display: block;
    margin: 10px 0
}
.socials ul li a{
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #0e1d4f;
    color: #0e1d4f;
    transition: all 0.4s
}
.socials ul li a em{
    margin-right: 10px
}
.socials ul li a:hover{
    background: #0e1d4f;
    color: #fff
}
.text_call{
    display: inline-flex;
    font-weight: 500;
    color: #333
}
.text_call span{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0e1d4f;
    color: #fff;
    margin: 0 5px;
    font-size: 14px
}
.text_call a{
    color: #0e1d4f;
    font-weight: 700;
    position: relative
}
.text_call a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #0e1d4f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}
.text_call a:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

@media(max-width: 1050px) {

h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 15px;
}

}

@media(max-width: 767px) {

h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 10px;
}

p br {
	display: none;
}

p {
    font-size: 15px;
    line-height: 27px;
}

header img {
    height: 120px;
}

footer {
    padding: 0 15px;
    height: 70px;
}
    .content{
        margin: 30px 0
    }
    .text_call{
        margin-bottom: 20px
    }

}