@font-face {
    font-family: "Gotham";
    font-weight: 700;
    src: url("../font/Gotham-Bold.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 700;
    src: url("../font/Gotham-Bold.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 500;
    src: url("../font/Gotham-Medium.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 500;
    src: url("../font/Gotham-Medium.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 400;
    src: url("../font/Gotham-Book.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 400;
    src: url("../font/Gotham-Book.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 900;
    src: url("../font/Gotham-Black.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    font-weight: 900;
    src: url("../font/Gotham-Black.woff2") format("woff2");
    font-display: swap;
}


* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}
a {
    transition: .3s;
}
a:focus,
a:active {
    outline: none;
}

nav,
header,
footer {
    display: block;
}

html,
body {
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: #1E1E1E;
    font-family: "Gotham", sans-serif;
    scroll-behavior: smooth;
    background-color: #fff;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1160px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

.title {
    color: #07416B;
    font-family: Gotham;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 114.286% */
    text-align: center;
}

.indent {
    margin-top: 120px;
}

.btn-hov {
    transition: .3s;
    color: #FFF;
    text-align: center;
    text-shadow: 0px 10px 40px rgba(25, 104, 252, 0.20);
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 100% */
    text-transform: uppercase;
    border-radius: 25px;
    background: #07416B;
    box-shadow: 0px 10px 40px 0px rgba(7, 65, 107, 0.30);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #07416B;
}

.btn-hov:hover {
    background-color: transparent;
    color: #07416B;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }

    .title {
        font-size: 28px;
    }

    .indent {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: none;
    }

    .title {
        font-size: 24px;
    }
}