/* burger */
.burger {
    display: none;
}
label {
    cursor: pointer;
}
.burger-icon {
    width: 100%;
    scale: 1;
    border: 0;
    margin: 0;
}
.burger-icon,
.burger-icon::before,
.burger-icon::after {   
    display: block;
    border-radius: 2px;
    height: 2.5px;
    background: var(--text-color-primary);
}
.burger-icon::before,
.burger-icon::after {
    content: "";
    position: absolute;
    width: 100%;
}
.burger-icon::before {
    top: -6px;
    right: 0;
}
.burger-icon::after {
    top: 6.5px;
    left: 0;
}
.burger-icon::before,
.burger-icon::after {
    transition-duration: 0.15s;
    transition-timing-function: linear;
}
.burger input {
    position: fixed;
    scale: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}
.burger input:checked ~ .burger-icon {
    background-color: transparent;
}
.burger input:checked ~ .burger-icon::before,
.burger input:checked ~ .burger-icon::after {
    width: 32px;
}
.burger input:checked ~ .burger-icon::before {
    transform: rotate(-45deg);
    top: 0px;
}
.burger input:checked ~ .burger-icon::after {
    transform: rotate(45deg);
    top: 0px;
}

@media (max-width: 480px) {
    body{
        padding: 0 1rem;
    }
    /* banner */
    .status_logo{
        font-size: 1.25rem;
    }
    .status_text{
        font-size: 0.875rem;
    }
    .language_icon{
        height: 1.25rem;
        width: auto;
    }
    .language_text{
        display: none;
    }
    #banner{
        padding: 1.5rem 1rem;
    }
    header{
        padding: 1rem;
        height: fit-content;
    }
    /* hamburger menu */
    #logo_horizontal, #logo_horizontal img{
        display: none;
    }
    #logo{
        display: block;
    }
    #logo img{
        display: block;
        height: 2.25rem;
    }
    .burger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
    }
    .nav_bar .links, #contact-btn{
        display: none;
    }
    .ham_menu_links{
        list-style-type: none;
    }
    .ham_menu_links a{
        display: block;
        text-decoration: none;
        color: var(--color-text-secondary);
        padding: 0.625rem;
        font-size: 1rem;
    }
    .ham_menu_links a:hover{
        background-color: var(--tertiary-color);
        border-radius: 5px;
    }
    #contact-btn_hamburger{
        text-decoration: none;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        padding: 0.625rem 0;
        color: var(--text-color-secondary);
        font-size: 1.25rem;
        border-radius: 5px;
        border: none;
        font-weight: var(--font-weight-medium);
    }
    #contact-btn_hamburger:hover{
        background-color: var(--secondary-color);
    }
    body.open .ham_menu{
        max-height: 600px;
        left: 15px;
        right: 15px;
        top: calc(var(--calc-height) + 10px);
        background-color: var(--quaternary-color);
        border-radius: 15px;
        padding: 1rem;
        gap: 1.25rem;
        box-shadow: 0px 1px 2px 0px rgba(22, 22, 22, 0.10);
    }
    /* hero */
    #hero{
        margin-top: 50px;
        flex-direction: column;
        padding: 0 1rem;
    }
    .hero_left h1{
        font-size: 3rem;
        line-height: 45px;
    }
    .hero_left p{
        font-size: 1rem;
        line-height: 23px;
    }
    #hero_cta{
        width: 100%;
        text-align: center;
    }
    .hero_right img{
        width: auto;
    }
    /* info bar */
    #info_bar{
        flex-direction: column;
        gap: 2.5rem;
        padding: 2.25rem 1.5rem;
    }
    .info_item{
        padding: 0;
    }
    .info_texts{
        width: 100%;
    }
    .spinner, #services, #partners, footer{
        margin-top: 100px;
    }
    /* services */
    #services h1, .partners_header h1{
        font-size: 2rem;
    }
    #services h2, .partners_header h2{
        font-size: 1.125rem;
    }
    .services_list{
        gap: .625rem;
    }
    .service_card{
        width: auto;
        padding: 1rem;
    }
    /* partners */
    .partner_card{
        width: auto;
        padding: 1rem;
    }
    .partner_tag{
        width: min-content;
    }
    .partners_list{
        gap: 1.25rem;
    }
    /* footer */
    footer{
        padding: 1rem;
        border-radius: 15px 15px 0 0;
    }
    .footer_top_container{
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer_nav_list a, .footer_nav_list li{
        font-size: 1rem;
    }
    .footer_top_container iframe{
        width: auto;
    }
    .footer_bottom_container{
        flex-direction: column;
        font-size: 1rem;
        text-align: center;
        gap: 1rem;
    }
}
/* phone-small tablet */
@media (min-width: 481px) and (max-width: 768px) {
    body{
        padding: 0 1rem;
    }
    #banner, .nav_bar, main, .footer_content{
        max-width: 700px;
        width: 100%;
    }
     /* banner */
    .status_logo{
        font-size: 1.25rem;
    }
    .status_text{
        font-size: 0.875rem;
    }
    .language_icon{
        height: 1.25rem;
        width: auto;
    }
    .language_text{
        font-size: 0.875rem;
    }
    #banner{
        padding: 1.5rem 1rem;
    }
    header{
        padding: 1rem;
        height: fit-content;
    }
    /* hamburger menu */
    #logo_horizontal, #logo_horizontal img{
        display: none;
    }
    #logo{
        display: block;
    }
    #logo img{
        display: block;
        height: 2.25rem;
    }
    .burger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
    }
    .nav_bar .links, #contact-btn{
        display: none;
    }
    .ham_menu_links{
        list-style-type: none;
    }
    .ham_menu_links a{
        display: block;
        text-decoration: none;
        color: var(--color-text-secondary);
        padding: .625rem;
        font-size: 1rem;
    }
    .ham_menu_links a:hover{
        background-color: var(--tertiary-color);
        border-radius: 5px;
    }
    #contact-btn_hamburger{
        text-decoration: none;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        color: var(--text-color-secondary);
        font-size: 1.25rem;
        border-radius: 5px;
        border: none;
        font-weight: var(--font-weight-medium);
    }
    #contact-btn_hamburger:hover{
        background-color: var(--secondary-color);
    }
    body.open .ham_menu{
        max-height: 600px;
        max-width: 700px;
        left: 1rem;
        right: 1rem;
        top: calc(var(--calc-height) + 10px);
        background-color: var(--quaternary-color);
        border-radius: 15px;
        padding: 1rem;
        gap: 1.25rem;
        box-shadow: 0px 1px 2px 0px rgba(22, 22, 22, 0.10);
        box-sizing: border-box;
        @media (min-width: 735px) and (max-width: 768px) {
            max-width: 700px;
            width: 100%;
            left: auto;
            right: auto;
        }
    }
    /* hero */
    #hero{
        margin-top: 50px;
        flex-direction: column;
        padding: 0 1rem;
    }
    .hero_left h1{
        font-size: 3rem;
        line-height: 45px;
    }
    .hero_left p{
        font-size: 1rem;
        line-height: 23px;
    }
    #hero_cta{
        width: 100%;
        text-align: center;
    }
    .hero_right{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero_right img{
        width: 16rem;
    }
    /* info bar */
    #info_bar{
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2.25rem 1.5rem;
    }
    .info_item{
        padding: 0;
        flex-direction: column;
        text-align: center;
    }
    .info_texts{
        width: 100%;
    }
    .spinner, #services, #partners, footer{
        margin-top: 100px;
    }
    /* services */
    #services h1, .partners_header h1{
        font-size: 2rem;
    }
    #services h2, .partners_header h2{
        font-size: 1.125rem;
    }
    .services_list{
        gap: .625rem;
    }
    .service_card{
        width: auto;
        padding: 1rem;
    }
    /* partners */
    .partner_card{
        width: auto;
        padding: 1rem;
    }
    .partner_tag{
        width: fit-content;
    }
    .partners_list{
        gap: 20px;
    }
    /* footer */
    footer{
        padding: 2rem 1rem;
        border-radius: 15px 15px 0 0;
    }
    .footer_top_container{
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    .footer_nav_list a, .footer_nav_list li{
        font-size: 1rem;
    }
    .footer_top_container iframe{
        width: auto;
    }
    .footer_bottom_container{
        flex-direction: column;
        font-size: 1rem;
        text-align: center;
        gap: 1rem;
    }
}
@media (min-width: 769px) and (max-width: 1024px){
    #banner, .nav_bar, main, .footer_content{
        max-width: 700px;
        width: 100%;
    }
        /* banner */
    .status_logo{
        font-size: 1.125rem;
    }
    .status_text{
        font-size: .875rem;
    }
    .language_icon{
        height: 1.25rem;
        width: auto;
    }
    .language_text{
        font-size: .875rem;
    }
    #banner{
        padding: 1.5rem 1rem;
    }
    header{
        padding: 1rem;
        height: fit-content;
    }
    /* hamburger menu */
    #logo_horizontal, #logo_horizontal img{
        display: none;
    }
    #logo{
        display: block;
    }
    #logo img{
        display: block;
        height: 2.25rem;
    }
    .burger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
    }
    .nav_bar .links, #contact-btn{
        display: none;
    }
    .ham_menu_links{
        list-style-type: none;
    }
    .ham_menu_links a{
        display: block;
        text-decoration: none;
        color: var(--color-text-secondary);
        padding: 0.625rem;
        font-size: 1rem;
    }
    .ham_menu_links a:hover{
        background-color: var(--tertiary-color);
        border-radius: 5px;
    }
    #contact-btn_hamburger{
        text-decoration: none;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        padding: .625rem 0;
        color: var(--text-color-secondary);
        font-size: 1.125rem;
        border-radius: 5px;
        border: none;
        font-weight: var(--font-weight-medium);
    }
    #contact-btn_hamburger:hover{
        background-color: var(--secondary-color);
    }
    body.open .ham_menu{
        max-height: 600px;
        max-width: 700px;
        width: 100%;
        top: calc(var(--calc-height) + 10px);
        background-color: var(--quaternary-color);
        border-radius: 15px;
        padding: 1rem;
        gap: 1.25;
        box-shadow: 0px 1px 2px 0px rgba(22, 22, 22, 0.10);
        box-sizing: border-box;
    }
    /* hero */
    #hero{
        margin-top: 50px;
        flex-direction: column;
        padding: 0 1rem;
    }
    .hero_left h1{
        font-size: 3rem;
        line-height: 45px;
    }
    .hero_left p{
        font-size: 1rem;
        line-height: 23px;
    }
    #hero_cta{
        width: 100%;
        text-align: center;
    }
    .hero_right{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero_right img{
        width: 250px;
    }
    /* info bar */
    #info_bar{
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
        padding: 2.25rem 1rem;
    }
    .info_item{
        padding: 0;
        flex-direction: column;
        text-align: center;
    }
    .info_texts{
        width: 100%;
    }
    .spinner, #services, #partners, footer{
        margin-top: 100px;
    }
    /* services */
    #services h1, .partners_header h1{
        font-size: 2rem;
    }
    #services h2, .partners_header h2{
        font-size: 1.125rem;
    }
    .services_list{
        gap: .625rem;
    }
    .service_card{
        width: auto;
        padding: 1rem;
    }
    /* partners */
    .partner_card{
        width: auto;
        padding: 1rem;
    }
    .partner_tag{
        width: fit-content;
    }
    .partners_list{
        gap: 1.25rem;
    }
    /* footer */
    footer{
        padding: 30px 0;
    }
    .footer_top_container{
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer_nav_list a, .footer_nav_list li{
        font-size: 1rem;
    }
    .footer_top_container iframe{
        width: auto;
    }
    .footer_bottom_container{
        flex-direction: column;
        font-size: 1rem;
        text-align: center;
        gap: 1rem;
    }
}
@media (width > 1024px) and (width < 1250px) {
    body{
        padding: 0 1.25rem;
    }
    #hero{
        gap: 3.75rem;
    }
    .services_list{
        flex-wrap: wrap;
        align-items: stretch;
        flex-direction: row;
    }
    .service_card{
        width: 48%;
        min-height: 250px;
    }
    .partner_card{
        width: auto;
    }
    footer{
        padding: 2.25rem 1rem;
        border-radius: 15px 15px 0 0;
    }
    .footer_nav_list a, .footer_nav_list li{
        font-size: 1rem;
    }
    .footer_logo{
        height: 100px;
    }
    .footer_bottom_container{
        font-size: 1rem;
        gap: 1rem;
    }
}