*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
}
.main{
    background-color: rgb(218,218,218);
    padding-bottom: 50px;
}

.menu h1 {
    flex: 1;
    font-size: 30px;
    margin-right: 20px;
}
nav{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.header img{
    width: 350px;
}
.menu{
    
    text-align: right;
    margin-top: 50px;
    display: flex;
}
.menu a{
    text-decoration: none;
    font-size: 20px;
    margin: 10px;
    color:black;
}
.menu a:hover {
    color: rgb(19,164,60);
    transition: 0.3s;
}

@media (max-width: 700px){
    nav{
        padding-left: 10px;
    }
    .header img{
        width: 150px;}
    .menu a{
        font-size: 10px;
        margin: 5px;
    }
    .menu{
        margin-top: 15.5px;
    }
    .header{
        height:8vh;
    }
}

@media (700px < width < 1000px){
    nav{
        padding-left: 10px;
    }
    .header img{
        width: 180px;}
    .menu a{
        font-size: 8px;
        margin: 5px;
    }
    .menu{
        margin-top: 15.5px;
    }
    .header{
        height:8vh;
    }
}

/* wechat hover */


.icon li img{
    visibility: hidden;
    width: 120px;
    position: absolute;
    transition: 0.3s ease-in-out;
    transform: scale(0);
}
.icon li:hover img{
    visibility: visible;
    width: 120px;
    transform: scale(1);
}

.icon li{
    display: inline-block;
}


/* page */

.page {
    text-align: center;
    margin: 40px;
    font-size: 25px;
}

@media (max-width: 700px){
    .page{
        font-size: 20px;
        margin-bottom: 5px;
        
    }
}


/* information */

.information {
   background-color: rgb(206, 206, 206);
   justify-content: center;
   height: 400px;
   align-items: center;
   display: flex;
}


.contact-info-col-2 h3{
    font-size: 15px;
    font-weight: 100;
    padding-top: 100px;
    padding-bottom: 50px;
    line-height: 25px;
    text-align: left;
    padding-left: 0px;
}
.contact-info-col-2 h2{
    font-size: 15px;
    font-weight: 100;
    text-align: left;
    line-height: 25px;
    padding-left: 0px;
    padding-bottom: 20px;
}


.contact-info-col-2{
    width: 50%;
    padding-left: 0px;
    position: relative;
    
}

.contact-info-col-0{
    width: 50%;
    text-align: center;
    position: relative;

}

.video {
    top:0;
    left: 0;
    width: 420px;
    height: 315px;

}


.contact-info-col-2 .fa{
    padding-right: 20px;
    font-size: 25px;
}

@media(max-width: 700px){
    .information{
        flex-direction: column;
        height: 800px;
        justify-content: center;
        
    }
    .contact-info-col-0{
        padding-left: 0px;
        width: 100%;
        margin-right: 200px;
        margin-left: 200px;
        
        

    }

    .video {
        top:0;
        left: 0;
        width: 350px;
        height: 250px;
    
    }
    .contact-info-col-2{
        padding: 0;
        
    }
}





/* footer */

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-image: linear-gradient(rgba(218,218,218,0.7),rgba(218,218,218,0.1));
    
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
}

.footer h2{
    margin-bottom: 25px;
    margin-top: 20px;
}
.icon .fa{
    color: rgb(19,164,60);
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 28px;
}
.fa-heart-o{
    color: #f44336;
}

.icon{
    margin-top:50px;
}
.footer p{
    line-height: 5px;
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

@media(max-width: 700px){
    .footer p{
        font-size: 10px;
    }
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:#000000;
    border:1px solid #000000;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;    
    border-radius: 10px;
}

.hero-btn:hover{
    border: 1px solid rgba(19,164,60,0.2);
    background: rgba(19,164,60,0.2);
    transition: 0.3s;
}