:root {
    --3: #000;
    --4: #222;
    --5: #fff;
    --8: #a8a9ad;
    --10: #ff2424;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1599px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .container-fluid {
        max-width: 1290px;
    }
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.w-100 {
    width: 100% !important;
}

.text-center {
    text-align: center !important;
}

.text-md-start {
    text-align: center !important;
}

@media (min-width: 768px) {
    .text-md-start {
        text-align: left !important;
    }
}

header {
    position: relative;
    z-index: 100;
    background: #fff;
}

header.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 2px solid var(--10);
}

.header_containt {
    padding: 10px 20px;
}

.logo img,
.sidebar_logo img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
}

.sidebar_logo {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
}

.nav li a {
    display: flex;
    align-items: center;
    color: var(--3);
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.nav a.active {
    color: var(--10) !important;
}

.navbar_header {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.header_button {
    flex-shrink: 0;
}

.dropdown,
.dropdown_menu,
.bullate {
    display: none;
}

.bubbles {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 20px 30px;
    border: 2px solid var(--10);
    border-radius: 50px;
    background: var(--10);
}

.text {
    color: var(--5);
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.button_img {
    padding-left: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 50px;
    height: 50px;
    margin-top: 15px;
    border-radius: 10px;
    background: var(--10);
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background: var(--5);
}

@media screen and (max-width: 1399px) {
    .nav {
        gap: 25px;
    }

    .navbar_header {
        gap: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .navbar_header {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        padding: 30px 12px;
        background: #fff;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .navbar_header.active {
        left: 0;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .nav li a {
        font-size: 20px;
    }

    .sidebar_logo {
        display: flex;
        padding-bottom: 50px;
    }

    .hamburger {
        display: flex;
    }

    body.sidebar-open .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.sidebar-open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    body.sidebar-open .hamburger span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header_containt {
        padding: 10px 20px;
    }

    .header_button {
        margin-top: 60px;
    }

    .bubbles {
        padding: 20px;
    }
}

@media screen and (max-width: 425px) {
    .header_containt {
        padding: 10px 12px;
    }
}
