* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    scroll-padding-top: 100px;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: Arial,Helvetica,sans-serif;
}

a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    text-decoration: none;
}

li {
    list-style: none;
}
/*-------------------------header---------------------------------------------------------------------------*/
.header {
    min-width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255) 60%, rgba(255, 255, 255, 0.8));
    position: fixed;
    border-bottom: solid 1px rgba(0, 0, 0);
    z-index: 2;
}

.header > .container {
    display: flex;
    justify-content: space-around;
    height: 100px;
}

.header_logo {
    display: flex;
}

.header_logo a {
    transition: opacity 0.3s ease;
}

.header_logo a:hover {
    opacity: 0.4;
}

.header_logo img {
    height: 100px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.title {
    font-size: 26px;
    display: inline-block;
    text-align: center;
    padding: 20px 0;
    color: rgb(100, 100, 100);
    text-shadow: 0 0 3px rgba(255, 255, 255);
    white-space: nowrap;
    font-weight: bold;
}

.title span {
    font-size: 16px;
}

.header_nav {
    display: flex;
}

.header_ul {
    display: flex;
    align-items: center;
    flex: 1;
    transition: all 0.10s linear;
    padding-top: 20px;
}

.header_ul li {
    margin: 0 1vw;
}

.header_ul a {
    font-size: 24px;
    color: rgb(100, 100, 100);
    white-space: nowrap;
    position: relative;
    text-shadow: 0 0 3px rgba(255, 255, 255);
}

.header_ul li.current a,
.header_ul a:hover{
  color: rgb(5, 130, 160);
}

.header_ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background:#0481A2;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

.header_ul li.current a::after,
.header_ul a:hover::after {
    transform: scale(1, 1);
}
/*--------------------------burger--------------------------------------------------------------------------*/
.burger {
    display: none;
    position: relative;
    background:#EC7C7C;
    cursor: pointer;
    width: 50px;
    height:50px;
    margin: auto;
    padding: 15px;
    border-radius: 5px;
    z-index: 3;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: rotate(360deg);
}

.burger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    width: 45%;
}

.nav_active {
    transform: translateX(0%) !important;
}

@keyframes headerfade {

    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
  
.line1:nth-of-type(1) {
    top:13px;
}
  
.line2:nth-of-type(2) {
    top:19px;
}
  
.line3:nth-of-type(3) {
    top:25px;
}

.burger span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 600%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 0.6rem;
    text-transform: uppercase;
    font-size: 8px;
}

.burger.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.burger.active span:nth-of-type(2) {
    opacity: 0;
}
.burger.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.burger.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    top: 600%;
    left: 120%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 8px;
}
/*------------------------------------main-------------------------------------*/
.main {  
    padding-top: 100px;
    padding-bottom: 100px;
}

.section {
    text-align: center;
}

.section2 {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
}

.section2 p {
    font-size: 30px;
    color: rgb(100, 100, 100);
}

.section2 p span {
    color: rgb(0, 160, 0);
}

.erea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.erea1 p span {
    color: rgb(5, 130, 160);
}

.map img {
    width: 600px;
}

.speech {
    background-color: rgb(5, 130, 160);
    padding: 10px 0;
    font-size: 24px;
    color: rgb(255, 255, 255);
    font-weight: normal;
    text-align: center;
}
.box {
    padding: 0.5em 0.5em 0.5em 1em;
    text-align: left;
    display: inline-block;
}
.box p {
    color: rgb(100, 100, 100);
    font-weight: normal;
    font-size: 20px;
    text-indent: -1em;
}
.box3 {
    padding: 0.5em 0.5em 0.5em 2.2em;
    text-align: left;
    display: inline-block;
}
.box3 p {
    color: rgb(100, 100, 100);
    font-weight: normal;
    font-size: 20px;
    text-indent: -2.7em;
}
.a-text {
    margin-bottom: 10px;
}

.section1 {
    display: flex;
    flex-direction: row;
    text-align: center;
}
.section1 p {
    font-size: 26px;
    color: rgb(100, 100, 100);
}

.section3 {
    display: block;
    text-align: center;
}

.box2 {
    padding: 0.5em;
    margin: 5px 1px;
    border: solid 1px rgb(5, 130, 160);
    border-radius: 10px;
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgb(5, 130, 160, 0.1);
    transition: all .3s;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}
.box2 a {
    color: rgb(5, 130, 160);
}
.box2:hover {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgb(5, 130, 160, 0.1);
    border-color: transparent;
}

.box1 {
    padding: 0.5em 0em;
    margin: 1px;
    border: solid 2px rgb(5, 130, 160);
    border-radius: 10px;
    width: 100%;
}

.color {
    color: rgb(5, 130, 160);
}
.color_0 {
    color: #EC7C7C;
}
/*--------------------------------top-btn-----------------------------------------*/
#top-btn {
    position: fixed;
    bottom: 102px;
    right: 0;
    display: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
#top-btn img {
   width: 36px;
   height: 36px;
}
/*-----------------------------------footer---------------------------------------*/
#footer {
    min-width: 100%;
    background: rgba(0, 0, 0, 0.900);
    position: fixed;
    border-top: 1px solid rgb(255, 255, 255);
    bottom: 0;
    transition: .6s;
    transform: translateY(0px);
}

#footer.on {
    transition: .6s;
    transform: translateY(100px);
}

#footer > .container {
    display: flex;
    justify-content: space-around;
    height: 100px;
}

.footer_logo {
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.footer_logo:hover {
    opacity: 0.4;
}

.footer_logo img {
    height: 75px;
    object-fit: cover;
}

.footer_contact {
    color: rgb(255, 255, 255);
    display: flex;
    text-align: center;
    align-items: center;
}

.footer_contact_h2 {
    font-size: 14px;
    font-weight: normal;
}

.footer_nav {
    display: flex;
    white-space: nowrap;
}

.footer_ul {
    display: flex;
    align-items: center;
}

.footer_tel {
    display: none;
}

.footer_ul img {
    width: 40px;
}

.footer_ul li {
    margin: 0 2vw;
    transition: opacity 0.3s ease;
}

.footer_ul li:hover {
    opacity: 0.4;
}
/*----------------------------------@media------------------------------------------------------------------*/
@media (max-width:1280px) {
    /*.header_logo {
        padding: 0 10px;
    }*/
    .header > .container {
        justify-content: space-between;
    }
    .header_ul {
        position: absolute;
        right: 0;
        height: 100vh;
        background-color:rgba(0, 0, 0, 0.800);
        flex-direction: column;
        justify-content: space-evenly;
        width: 100%;
        transform: translateX(100%);
        padding-top: 0;
    }
    .header_ul li {
        opacity: 0;
    }
    .header_ul a {
        font-size: 22px;
        color: rgb(255, 255, 255);
        text-shadow: 0 0 10px rgb(255, 255, 255, 0.300);
    }
    .burger {
        display: block;
    }

    .imgs,
    .footer_contact {
        display: none;
    }
    #footer > .container {
        display: flex;
    }
    .footer_ul li {
        margin: 0 2vw;
    }
}

@media (max-width:1024px) {
    .main {
        padding-top: 100px;
    }
    .section1 {
        display: block;
    }
    .section1 p {
        font-size: 20px;
    }
    .section2 {
        display: block;
        flex-direction: row;
        text-align: center;
        border: 0px;
    }
    .section2 p {
        font-size:26px;
    }
    .box1 {
        margin: 1px 0;
    }

    #footer > .container {
        display: flex;
    }
    .footer_ul li {
        margin: 0 2vw;
    }
}
/*---------------------------------------------780-----------------------------------------------------------*/
@media (max-width:780px) {
    * {
        scroll-padding-top: 65px;
    }

    .header,
    .header > .container {
        height: 65px;
    }
    .header_logo img {
        height: 64px;
    }
    .title {
        font-size: 18px;
        padding: 13px 0;
    }
    .title span {
        font-size: 12px;
    }

    .main {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .box p {
        font-size: 14px;
    }
    .box3 p {
        font-size: 14px;
    }
    .box2 {
        font-size: 16px;
    }
    .map img {
        width: 75%;
    }
    .section1 {
        display: block;
    }
    .section1 p {
        font-size: 14px;
    }
    .section2 p {
        font-size: 18px;
    }
    .section3 p {
        font-size: 12px;
    }
    .speech {
        font-size: 16px;
        padding: 2px 0;
    }
    h4 {
        font-size: 16px;
    }
    #top-btn {
        bottom: 77px;
        margin-right: 5px;
    }
    #top-btn img {
        height: 34px;
        width: 34px;
    }

    .footer_logo img,
    .footer_contact {
        display: none;
    }
    #footer > .container {
        height: 65px;
        justify-content: center;
    }
    .footer_ul li {
        margin: 0 7vw;
    }
    .footer_tel {
        display: block;
    }
    #footer.on {
        transform: translateY(0px);
    }
}

@media (max-width:374px) {
    .title {
        font-size: 14px;
        padding: 20px 0;
    }
    .title span {
        font-size: 8px;
    }

    .main {
        padding-top: 65px;
    }
    .elia p {
        white-space: normal;
    }

    .footer_ul li {
        margin: 0 5vw;
    }
}

@media (max-width:278px) {
    .header_logo img,
    .title span {
        display: none;
    }

    .footer_ul li {
        margin: 0;
    }
}