<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');

:root {
  --main: #000;
  --green: #329933;
  --dgrey: #6E6E6E;
  --lgrey: #F7F7F7;
  --grey: #D2D2D2;
}

* {
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--grey);
}

::-webkit-scrollbar-thumb {
  background: var(--yell);
  border-radius: 5px;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color:var(--main);
    line-height: 130%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url(fundament.jpg) 100% 50% no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
 }
        h1 {
            color: #fff;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 400;
            border-bottom: 1px solid var(--lgrey);
            padding: 35px 35px 30px;
            text-transform: uppercase;
            line-height: 130%;
            font-size: 28px;
        }
		.con{
    border-radius: 25px;
    background: #0000006e;
    width: 75%;
}
        .contact {
            padding: 10px 0 45px;
        }
		.contact span{
    text-align: center;
    color: var(--lgrey);
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
    padding: 35px 0 25px;
}
		.contact p{}
		.cm{
    margin: 0 25px 0 5px;
}
		.contact a img{
    width: 35px;
    position: relative;
    top: 3px;
}
		.con p{
    color: var(--grey);
    padding: 0 35px;
    text-align: center;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        a {
            color: var(--lgrey);
            text-decoration: underline;
            margin-left: 5px;
        }
        a:hover {
            text-decoration: underline;
        }
		
@media screen and (max-width : 1366px){}
@media screen and (max-width : 1280px){}		
@media screen and (max-width : 1024px){body{    background: url(fundament.jpg) 35% 50% no-repeat;background-size:cover;}}	
@media screen and (max-width : 767px){
	.con{
    width: 85%;
}
	.con p{
    font-size: 18px;
    padding: 0 25px;
}
	h1{
    font-size: 20px;
    padding: 25px 20px 18px;
    margin-bottom: 20px;
}
	.contact span{
    padding: 20px 0 15px;
    font-size: 18px;
}
	.contact{
    padding: 10px 0 25px;
}
	.contact p{
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
}
	.cm{
    margin: 0;
}
	.a{}
	.a img{}
	.contact a img{
    margin-top: 20px;
}
}
@media screen and (max-width : 360px){}
@media screen and (max-width : 320px){}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 667px) 
and (orientation : landscape) {
	.contact a img{
    margin-top: 5px;
}
.contact span{
    padding: 15px 0 5px;
}
.cm{
    margin: 0 25px 0 5px;
}
.con p{
    font-size: 17px;
}
h1{
    font-size: 22px;
}
	
}
</pre></body></html>