/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;


}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0 auto;
    min-height: 100vh;
    line-height: 1.5;
    font-family: "Gilroy", "Arial", sans-serif;

}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1100ff;
    text-decoration: none;
    font-size: 15px;
    margin-top: 5px;
}

.video-icon {
    width: 18px;
    height: 18px;
    fill: #2c5282;
}

.video-icon polygon {
    fill: #fff;
}

.video-link:hover {
    color: #000;
}