* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}

.hero-section {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 30s ease infinite;
	height: 96vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
}

.iframe-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
}

.iframe-wrapper::before {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    background: #000;
    filter: blur(10px);
    opacity: .75;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0% 0% 0% 0% round 10px);
}

.scroll-hint {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color: #ffffff;
    font-weight: 300;
    font-size: 2rem;
    margin: auto;
    text-align: center;
    margin-top: 4rem;
}

.contact {
    background-color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form-blurry {
    filter: blur(5px);
}

.btn {
    background-color: #FF8F00;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: flex;
    transition: background 0.4s ease-in-out;
}

.btn:hover {
    background-color: #FFA024;
    cursor: pointer;
}

.btn-cta {
    margin: 2rem auto;
    font-family: 'Roboto';
    font-size: 1.25rem;
    border-color: none;
    justify-content: center;

}

.btn-cta a {
    color: #fff;
    text-decoration: none;
    display: flex;

}

.btn-cta .icon {
    margin-left: .5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.control {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    min-height: 40px;
    margin-bottom: 1rem;
}

.control .prefix {
    width: 20px;
    height: 20px;
    padding: 0 1rem;
}

.control textarea, 
.control input {
    border: none;
    width: 100%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #A0A0A0;
}

.control textarea {
    padding: 10px 1rem;
}

.control textarea:focus,
.control input:focus {
    outline: 0;
}

.form-response {
    opacity: 0;
    border-radius: 32px;
    margin: -32px;
    position: absolute;
    display: flex;
    width: 800px;
    max-width: 100%;
    height: 450px;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

footer {
    min-height: 10rem;
    background-color: #181818;
    border-top: 1px solid #FF8F00;
}

.footer-display {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-flow: column;
}

.footer-logo img {
    width: 100%;
    max-width: 158px;
}

.footer-logo spam {
    margin-top: 1rem;
    color: #EA7D34;
    font-family: "Roboto";
    font-size: 1.1rem;
}

.footer-contacts {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}

.footer-contacts img {
    width: 23px;
    height: 23px;
}

.footer-contacts a,
.footer-contacts spam {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    color: #F9F9F9;
    line-height: 16px;
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.footer-contacts spam {
    margin-top: 1.5rem;
}

.footer-contacts a {
    text-decoration: none;
}

.footer-legal {
    width: calc(100% - 1rem);
    text-align: center;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #F9F9F9;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 420px;
    }
}