@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;600;700&family=Karla:wght@300;600;700;800&display=swap');

:root {
    --font1: 'Karla', sans-serif;
    --font2: 'Inconsolata', sans-serif;
    --blue1: #4DA4A8;
    --blue2: #175962;
    --yellow1: #FDBF00;
}

main {
    margin-top: 30px;
    margin-bottom: 60px;
}

section,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font1);
    background: #fff;
    color: #000;
}

body.white {
    opacity: 0.6;
}

html {
    font-family: var(--font1);
    line-height: 1.8;
}

strong {
    font-weight: 700;
}

p,
div {
    font-family: var(--font1);
    line-height: 1.8;
    font-weight: 400;
    font-size: 16px;
    color: #000
}

.color-defaut {
    color: #000 !important;
    text-shadow: none !important;
}

a {
    text-decoration: none;
    color: #333333;
    transition: 0.2s color;
}

a:hover {
    color: #4DA4A8
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    line-height: 1;

}

h1 {
    font-family: var(--font1);
    font-size: 60px;
    font-weight: 800;
    color: #333333;
    letter-spacing: -3px;
}

h2,
.h2 {
    font-family: var(--font1);
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1;
}

h3,
.h3 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -2px;
}

h4,
.h4 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -2px;
}

h5 {
    font-size: 1rem;
    font-weight: 800;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus,
.btn-primary.disabled,
.btn-primary:disabled {
    font-family: var(--font1);
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    text-transform: none;
    min-width: 200px;
    letter-spacing: 1px;
    background-color: var(--blue1);
    ;
    border-color: var(--blue1);
    ;
}

.btn-primary:hover {
    background-color: var(--blue1);
    ;
    border-color: var(--blue1);
    ;
}

.btn-primary.disabled,
.btn-primary:disabled {
    opacity: 0.4;
}

.btn-secondary {
    background-color: #0b4049;
    border-color: #0b4049;
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    text-transform: none;
    background-color: var(--blue1);
    border-color: var(--blue1);
    border: 0;
    border-radius: 0px;
}


.btn-group-sm>.btn,
.btn-sm,
.btn-sm:active,
.btn-sm:focus {
    padding: 0.25rem 0.5rem !important;
    font-size: .875rem !important;
    min-width: 180px;
}

.visible-only-admin {
    position: absolute;
    padding: 5px;
    border-radius: 6px;
    top: 10px;
    right: 20px;
    text-align: center;
    background-color: #008f25;
    font-size: 12px;
    color: white;
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 25px;
    width: auto;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 6px;
}

label.error {
    display: table;
    font-size: 12px;
    color: red;
    background-color: #fbd0d0;
    padding: 2px 9px;
    border: 1px solid red;
    border-radius: 7px;
    margin-top: 10px;
}

.vertical-horizontal-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

hr.short-1 {
    margin: auto;
    max-width: 3rem;
}

hr.short-2 {
    margin: auto;
    max-width: 5rem;
}

hr.short-3 {
    margin: auto;
    max-width: 8rem;
}


.nav-link {
    color: #333;
}

.nav-tabs .nav-link {
    color: #333;
}

.cursor-pointer {
    cursor: pointer;
}

.card.highlight {
    box-shadow: 0px 0px 20px rgb(49 49 49 / 15%);
}

.card.highlight .card-body {
    padding: 30px;
}

.mt-100 {
    margin-top: 100px;
}

.video-responsive {
    width: 100%;
    height: auto;
}