
.Note_word {
    color: red;
    font-size: 15px;
}

.note_span {
    color: #0264b3;
    font-weight: 500;
    font-size: 15px;
}

.Note_word_head {
    color: #ffeb00;
    margin-top: 5px;
}

.note_span_head {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.main_div {
    background: #0264b3;
    margin-top: 65px;
}

.hero {
    position: relative;
    min-height: 50vh;
    width: 100%;
    background: url(../assets/bg-dot.webp), url(../assets/bg-dot.webp), url(../assets/bg-round.webp);
    background-position: 10px 10px, bottom 100px right 10px, left 46% top 0%, left 44% bottom -7px;
    background-repeat: no-repeat;
}

.hero .row {
    display: flex;
    align-items: center;
    min-height: 50vh;
    height: 100%;
    max-height: 85vh;
    width: 100%;
    padding: 0 60px;
    gap: 30px;
    justify-content: space-between;
}

.container {
    max-width: 1300px;
    width: 100%;
}

.div1 {
    width: 60%;
    padding: 25px;
}

.hero .row h2 {
    font-size: 23px;
    font-weight: bold;
}

.hero .row h2, .hero .row p {
    color: #fff;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li.arrow {
    color: white;
    position: relative;
    padding-left: 20px;
}

li.arrow::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: white;
    font-size: 12px;
    line-height: 2;
}

.buttons {
    display: flex;
    margin-top: 25px;
    gap: 10px;
}

.btn {
    padding: 4px 25px;
    background: #fff;
    border-radius: 50px;
    border: none;
    color: var(--blue);
    font-size: large;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:last-child {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.btn:last-child:hover {
    background-color: #fff;
    color: #2196F3;
}

.div2 {
    width: 40%;
    text-align: center;
}

.img_center {
    text-align: center;
}

.hero_img {
    width: 200px;
    position: relative;
}

/* Reponsive */
@media (width < 860px) {
    #menu_toggle {
        display: block;
    }

    .hero .row {
        max-height: 160vh;
    }

    .nav {
        padding: 0 20px;
        background-color: #fff;
    }

    .menu_items {
        position: fixed;
        top: 0;
        width: 260px;
        background-color: #fff;
        height: 100%;
        left: -100%;
        padding: 50px 30px 30px;
        flex-direction: column;
        transition: all 0.5s ease;
    }

    .showMenu .menu_items {
        left: 0;
    }

    a {
        color: #333;
    }

    #menu_toggle {
        width: 20px;
        cursor: pointer;
    }

    .menu_items #menu_toggle {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero .row {
        flex-direction: column;
        padding: 0 20px;
        justify-content: center;
    }

    .hero .row .column {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hero .row h2 {
        font-size: 27px;
    }

    .hero .row p {
        font-size: 22px;
    }

    .hero_img {
        width: 30%;
    }
}

@media (width < 600px) {
    .hero {
        padding-bottom: 30px;
    }

    .hero .row h2 {
        font-size: 22px;
    }

    .hero .row p {
        font-size: 16px;
    }

    .buttons {
        justify-content: center;
    }

    .btn {
        padding: 3px 16px;
    }

    .hero_img {
        width: 175px;
    }
}
