/*
 * Site colors
 * color - dark blue: #2E75BA [49, 117, 186]
 * color - light blue: #86C3F9 [134, 195, 249]
*/

html {
	scroll-behavior: smooth;
}

body {
    color: #424146;
    background-color: #FFFFFF;
    font-family: sans-serif;
    font-size: 1vw;
    line-height: 2.0;
    text-align: left;
}

.container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-menu-btn {
    display: none;
}

.menu-close-btn {
    display: none;
}

.button-menu {
    display: inline-block;
    text-decoration: none;
    color: #424146;
    font-weight: 500;
    white-space: nowrap;
    font-size: 1vw;
    padding: 1.5vh 2vw;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: transparent;
    border-radius: 0px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.button-menu:hover {
    background-color: #2E75BA;
    color: #FFFFFF;
    box-shadow: 0 14px 28px rgba(46, 117, 186, 0.25), 0 10px 10px rgba(46, 117, 186, 0.22);
    transform: translateY(-3px);
}

.button {
    display: inline-block;
    text-decoration: none;
    color: #424146;
    font-weight: 500;
    white-space: nowrap;
    font-size: 1vw;
    padding: 1.5vh 2vw;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
}

.button:hover {
    border: 1px solid rgba(134, 195, 249, 0.3);
    background-color: rgba(134, 195, 249, 0.3);
    color: #424146;
}

@media screen and (max-width: 1440px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 14px;
        line-height: 1.5;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    .button, .button-menu {
        font-size: 14px;
        padding: 12px 25px;
        white-space: normal;
        text-align: center;
    }
    
    .mobile-image-box {
        display: inline-block;
        position: relative;
        padding: 0;
        line-height: 0;
        width: 98%;
    }

    .mobile-image-box::before {
        content: '';
        position: absolute;
        top: 2%;
        left: 2%;
        width: 100%;
        height: 101%;
        border: 0.3vh solid #86C3F9;
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    h2 {
        font-size: 22px !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 12px;
    }
    
    h2 {
        font-size: 20px !important;
    }
}