@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,500;0,600;0,800;0,900;1,900&family=Inter&family=Lobster&family=Nunito&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin:0;
    padding:0;
}

body{
	min-width: 360px;
    background-image: url('pattern_bg.png');
    }
section, footer {
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    align-content: center; 
}


footer {
    padding: 1% 1% 5% 1%;
}




#header-block{   
    height: auto;
}

/*.logo-block{
    
    width: 100%;
    object-fit: cover;
    margin-top: 0;
    
}*/


.logo-block{
    width: 100%;
    object-fit: cover;
    margin-top: 0;
    background: url('logo_bg.png') center bottom;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.logo-block .logo-img{
    width: auto;
    height: 100vh;
    margin-bottom: -21vh;
}

div {
	text-align: center;
}

img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

p, a{
    text-align: center; 
    margin: 0 auto;
    font-family: 'Fira sans', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color:white;
    -webkit-text-stroke: 3px #253366;
    text-shadow: 0px 3px 2px #253366;
    text-transform: uppercase;
}


.logo-img {
	width: 100%;
	height: auto;
}

#main-block{
    margin: 21vh 5% 1% 5%;
}

#download-text {
    background: rgb(249,242,64);
    background: linear-gradient(180deg, rgba(249,242,64,1) 0%, rgba(253,219,16,1) 100%);
    background-clip: text;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px #611700;
}
.hidden-text {
    visibility: hidden;
    position: absolute;
    left:0;
    width:0;
}
.contact {
    color:#7ce2ff;
    -webkit-text-stroke: 1px #12072d;
    text-shadow: none;
    text-transform: none;
    font-size: 35px;
}
.private-policy-link {
    color:#7ce2ff;
    -webkit-text-stroke: 1px #12072d;
    border-bottom: 3px solid #7ce2ff;
    text-decoration: none;
    text-transform: none;
    text-shadow: none;
    position: relative;
    font-size: 22px;
}
.company-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 25px;
    width: 50px;
    height: auto;
	padding-bottom: 1%;
}

#download-img {
	width: 300px;
}
.logo-img__mob{
    display: none;
}


@media screen and (min-width: 992px) {
	p, a{

		font-size: 4rem;

	}
	.contact {
    font-size: 70px;
	}
	.private-policy-link {
		font-size: 45px;
	}
	.company-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 50px;
    width: 100px;
    height: auto;
	padding-bottom: 1%;
	}
	#download-img {
	width: 400px;
	}
}


@media screen and (max-width: 992px) {
    .logo-img{
        display: none;
    }
    .logo-img__mob{
        display: block;
        width: 100%;
    }
    .logo-block{
        width: 100%;
        height: auto;
        background: transparent;
    }
    #main-block{
        margin-top: 1%;
    }
}