@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');



:root {
	--ff-main: "Inter Tight";
	--ff-header: "Inter Tight";
	--c-primary: 36 74 87;
	--c-primary: 243 108 35;
	--c-secondary: 56 102 124;
	--c-secondary-i: 255 255 255;
}

a {
	text-decoration: unset;
	color: inherit;
}

/*.container {
	display: flex;
	height: 100svh;
	align-items: center;
	justify-content: center;

}*/

/*.content {
	display: flex;
	flex-direction: column;
	gap: var(--gap-big);
	align-items: center;
}

:root {
	--fz-h1: calc(var(--gap) * 4);
}

.title {
	color: rgb(var(--c-primary));
	text-transform: uppercase;
}

.description {
    opacity: .65;
}

.contacts {
	display: flex;
	gap: var(--gap);
	flex-direction: column;
	align-items: center;
}*/

/*
:root {
	font-size: 30px;
}
body {
	font-size: 1rem;
}

.imagebox img {
    width: 100%;
    max-height: calc(100dvh - var(--gap) * 6.5);
    object-fit: cover;
}

.imagebox .logo {
    width: unset;
    position: absolute;
    left: var(--limiter-padding);
    top: var(--limiter-padding);
    max-width: calc(100% - var(--limiter-padding) * 2);
}

.imagebox {
    position: relative;
}

.container {
	display: flex;
	gap: var(--gap-big);
	align-items: center;
	justify-content: center;

    gap: var(--gap-small) var(--gap-big);
}

h1, p, a {
    font-size: 1rem;
    text-transform: uppercase;
}
:root {
    --ff-main: Arial;
    --ff-header: "Arial Black";
}

h1, p {
    font-family: var(--ff-header);
}

.container > div:nth-child(3) {
    text-align: right;
}

button, input[type=submit], .button, .btn {
    border-radius: 20px;
}

@media (max-width: 1200px) {
	.container {
		flex-direction: column;
	}
	.imagebox img {
	    max-height: calc(100dvh - var(--gap) * 10);
	}
}
@media (max-width: 560px) {
	:root {
		font-size: 20px;
	}
}
*/



.container {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100dvh;
}

.hero {
    position: relative;
}

img.hero__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
}

.hero__nav {
    position: relative;
    z-index: 1;
    top: 10%;
}

.hero__container {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

img.hero__logo {
    height: 64px;
}

.limit {
    width: 100%;
    margin: auto;
    max-width: 960px;
    padding-left: 16px;
    padding-right: 16px;
}

.hero__container::before {
    content: "";
}

a.hero__button {
    background-color: rgb(var(--c-primary));
    color: rgb(var(--c-primary-i));
    padding: .5em 1em;
    line-height: 1em;
    border-radius: 1em;
}


.contacts {
    background-color: rgb(var(--c-secondary));
    color: rgb(var(--c-secondary-i));
}


.contacts__links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contacts__links img {
    height: 30px;
}

h1 {
    font-size: 30px;
}

.contacts__links a {
    font-size: 20px;
}

a.hero__button {
    font-size: 20px;
}

img.hero__logo {
    height: 96px;
}

.limit {
    max-width: 1280px;
}

section.contacts {
    padding-top: 32px;
    padding-bottom: 32px;
}

.contacts__container {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}


@media (max-width: 960px) {

	.hero__container::before {
	    content: unset;
	}
	img.hero__logo {
	    height: 56px;
	}
}
@media (max-width: 640px) {
	.hero__container {
	    flex-direction: column;
	}

	.hero__nav {
	    /*top: 5%;*/
	    top: 3%;
	}

	.contacts__container {
	    flex-direction: column;
	}



	.container {
	    grid-template-rows: auto 1fr;
	}

	.hero {
		padding-bottom: 100%;
		height: unset;
		/*min-height: 640px;*/
		min-height: 540px;
	}

	.hero__nav {
	    position: absolute;
	    width: 100%;
	}
}