@font-face {
    src: url('../fonts/Manrope-Regular.ttf');
    font-family: 'Manrope-Regular';
}
@font-face {
    src: url('../fonts/Manrope-Bold.ttf');
    font-family: 'Manrope-Bold';
}
@font-face {
    src: url('../fonts/Manrope-SemiBold.ttf');
    font-family: 'Manrope-SemiBold';
}
@font-face {
    src: url('../fonts/Manrope-Medium.ttf');
    font-family: 'Manrope-Medium';
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Manrope-Regular';
    transition: all 300ms ease-out;
}
*:hover {
    transition: all 0.3s ease-in;
}
*:focus{
    outline: none;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: var(--brandBlue);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    --black: #000;
    --red: #FF3636;
    --brandBlue: #103D61;
    --boldBlue: #042a49;
    --gray: rgba(40, 40, 40, 0.60);
    --white: #FFF;
}
:root {
    --twelve: 12px;
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --titleFont: 40px;
}
.wrapper {
    /* max-width: 1800px; */
    width: 100%;
    height: 100%;
    padding: 0 40px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.full_wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.d-none{
    display: none;
}
body{
    color: var(--brandBlue);
    background-color: #E8EDF1;
}
html{
    overflow-x: hidden;
}
b, strong, h1, h2, h3, h4, h5, h6{
    font-family: 'Manrope-Bold';
}









