:root {
    --color-1: #1b4332;
    --color-2: #2d6a4f;
    --heading: #15202e;
    --main_text: #525252;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    outline: none;
}

body {
    font-family: "Noto Sans JP", sans-serif;
}

.containerr {
    max-width: 1400px;
    width: 94%;
    margin: 0 auto;
}

.row {
    display: flex;
}

button:hover {
    opacity: 0.8;
}

.h1_text {
    /* font-family: "Pacifico", cursive; */
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.bg_color1 {
    background: var(--color-1);
}
.bg_color2 {
    background: var(--color-2);
}

.bg_heading {
    background: var(--heading);
}

.text_color2 {
    color: #2d6a4f;
}

.heading {
    color: var(--heading);
}

.main_text {
    color: var(--main_text);
}

.carousel-wrapper {
    overflow: hidden;
    white-space: nowrap;
}
.carousel-track {
    display: inline-flex;
    will-change: transform;
}
.carousel-track img {
    height: 65px;
}

/* Laptop */
@media screen and (max-width: 1280px) {
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .containerr {
        width: 96%;
    }

    .row {
        flex-direction: column;
        /* row-gap: 20px; */
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .containerr {
        width: 92%;
    }
}

/* From Uiverse.io by Cevorob */
.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}
