/* Universal Css */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
	padding: 0;
    font-family: 'Visby Regular';
	font-size: 14px;
    overflow-x: hidden;
	background-color: #ffffff;
    position: relative;
}
.wrapper {
    --color-bg: #111111;
    --color-bg-secondary: #1f1f1f;
    --color-bg-lightblue: #07142E;
    --color-yellow:#FFA800;
    --color-primary: #BB0C15;
    --color-secondary: #041030;
    --color-white:#ffffff;
    --color-black:#000000;
    --color-grey: #b4b4b4;
    --border-color-light: #A9A9A9;
    --border-color: #E7E7E7;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
button {
    cursor: pointer;
}
button:hover {
    outline: none;
}
button:focus {
    outline: none;
}
input:hover, select:hover, button:hover, a:hover, textarea:hover {
    box-shadow: none !important;
    outline: none !important;
}
input:focus, select:focus, button:focus, a:focus, textarea:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Universal Css Ends */

/* Custom Input Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #333333 !important;
}
/* Custom Input Css Ends */

/* Custom Scroll Css */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: #1f1f1f;
    border-radius: 0;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #BB0C15;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #BB0C15;
}
/* Custom Scroll Css Ends */

/* Font Family */
@font-face {
    font-family: 'Visby Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Regular'), url('../fonts/VisbyRegular.woff') format('woff');
}
@font-face {
    font-family: 'Visby Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Bold Italic'), url('../fonts/VisbyBold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Bold'), url('../fonts/VisbyBold.woff') format('woff');
}
@font-face {
    font-family: 'Visby Extrabold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Extrabold Italic'), url('../fonts/VisbyExtrabold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Extrabold';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Extrabold'), url('../fonts/VisbyExtrabold.woff') format('woff');
}
@font-face {
    font-family: 'Visby Heavy Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Heavy Italic'), url('../fonts/VisbyHeavy Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Heavy';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Heavy'), url('../fonts/VisbyHeavy.woff') format('woff');
}
@font-face {
    font-family: 'Visby Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Italic'), url('../fonts/VisbyItalic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Light Italic'), url('../fonts/VisbyLight Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Light';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Light'), url('../fonts/VisbyLight.woff') format('woff');
}
@font-face {
    font-family: 'Visby Medium Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Medium Italic'), url('../fonts/VisbyMedium Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Medium'), url('../fonts/VisbyMedium.woff') format('woff');
}
@font-face {
    font-family: 'Visby Semibold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Semibold Italic'), url('../fonts/VisbySemibold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Semibold';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Semibold'), url('../fonts/VisbySemibold.woff') format('woff');
}
@font-face {
    font-family: 'Visby Thin Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Thin Italic'), url('../fonts/VisbyThin Italic.woff') format('woff');
}
@font-face {
    font-family: 'Visby Thin';
    font-style: normal;
    font-weight: normal;
    src: local('Visby Thin'), url('../fonts/VisbyThin.woff') format('woff');
}
/* Font Family Ends */

.btn-primary {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 16px;
    padding: 0;
    font-family: 'Visby Regular';
    transition: ease-in 0.5s;
}
.btn-primary:hover, .btn-primary:focus {
    background: transparent;
    color: var(--color-secondary);
}
.btn-primary .button-icon {
    height: 15px;
}

h1 {
    font-family: 'Visby Bold';
    font-weight: 900;
    font-size: 40px;
}
h2 {
    font-family: 'Visby Bold';
    font-weight: 700;
    font-size: 36px;
}
h3 {
    font-family: 'Visby Bold';
    font-weight: 600;
    font-size: 30px;
}
h4 {
    font-family: 'Visby Bold';
    font-weight: 500;
    font-size: 26px;
}
h5 {
    font-family: 'Visby Bold';
    font-weight: 400;
    font-size: 20px;
}
h6 {
    font-family: 'Visby Bold';
    font-weight: 300;
    font-size: 18px;
}
p {
    font-family: 'Visby Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
/* Universal Css Ends */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.invalid-feedback {
    color: var(--color-primary);
    font-size: 12px;
    margin: 0;
    display: none;
}