@import "vendor/fonts.css";
@import "vendor/normalize.css";

* {
    font-family: "HeliosExtC", "Arial", sans-serif;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

a:not(.button):hover {
    opacity: 0.6;
}

img {
    pointer-events: none;
}

body {
    background-color: #0A1829;
}

.container {
    margin: 0 auto;
    max-width: 1920px;
    position: relative;
    padding: 0 40px;
}

.hero {
    background: url('/images/hero-bg.png') no-repeat center;
    background-size: cover;
    min-height: 100vh;
    color: #FFFFFF;
    padding-bottom: 248px;
}

.hero__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 71.82px;
    text-transform: uppercase;
    padding: 183px 0 52px;
    max-width: 850px;
    width: 100%;
}

.hero__text {
    font-size: 30px;
    font-weight: 400;
    line-height: 35.91px;
    max-width: 822px;
    width: 100%;
    padding-bottom: 26px;
}

.hero__link {
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Raleway';
    font-size: 18px;
    font-weight: 500;
    line-height: 19.8px;
    position: relative;
    padding-left: 36px;
    padding-bottom: 14px;
    width: fit-content;
}

.hero__link::before {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
}

.hero__link.phone::before {
    background: url('/images/phone-icon.svg') no-repeat center;
}

.hero__link.email::before {
    background: url('/images/email-icon.svg') no-repeat center;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-resolution: 192dpi) {
    .hero {
        background: url('/images/hero-bg@2x.png') no-repeat center;
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .hero__title {
        font-size: 30px;
        line-height: 41.81px;
    }

    .hero__text {
        font-size: 15px;
        line-height: 20.91px;
    }
}