﻿@charset "UTF-8";

.btn {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.btn {
    padding: 6px 12px;
    background: #30c39e;
}

    .btn:hover {
        background: #2baf8d;
    }

    .btn:active {
        background: #269a7d;
    }

html {
    font-size: 100%;
}

/*--------↓↓↓↓↓mobile-menu↓↓↓↓↓----------*/
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-y: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 30px;
    color: #ba0000;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    line-height: 40px;
    letter-spacing: 3px;
}

    .overlay a:hover,
    .overlay a:focus {
        color: #f1f1f1;
    }

.overlay .closebtn {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 60px;
}

.m-menu {
    display: none;
}

.menu-han {
    position: relative;
    display: block;
    height: 29px;
    width: 32px;
    cursor: pointer;
    margin: 0 0 0 20px;
}

    .menu-han::before,
    .menu-han::after {
        content: "";
    }

    .menu-han::before,
    .menu-han::after,
    .menu-han span {
        height: 3px;
        width: 32px;
        background-color: #222324;
        position: absolute;
    }

    .menu-han span {
        bottom: 13.5px;
    }

    .menu-han::after {
        bottom: 0px;
    }

    .menu-han::before {
        top: 0px;
    }

p.menu-text {
    padding: 30px 0;
    font-size: 13px;
}

/*--------↑↑↑↑↑mobile-menu↑↑↑↑↑----------*/
/*--------↓↓↓↓↓menu↓↓↓↓↓----------*/
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.menu-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    height: 85px;
    padding: 0px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul.button-list li {
    padding: 0 0 0 40px;
    color: #6D6D6D;
}

ul.button-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

h1.logo {
    width: 100%;
    max-width: 355px;
}

ul.button-list li a {
    text-decoration: none;
    color: #6D6D6D;
}

/*--------↑↑↑↑↑menu↑↑↑↑↑----------*/
/*--------------------------1200px-------------------------*/
@media screen and (max-width: 1024px) {
    .menu {
        display: none;
    }

    .m-menu {
        display: inline;
    }
}

