*{
    padding:0;
    margin:0;
}
a{
    display: block;
    text-decoration: none;
    color:inherit;
}
body{
    font-family: 'Poppins', sans-serif;
}
li{
    list-style: none;
}
header{
    background: white;
    position: relative;
    min-width:1366px;
    margin:0 auto;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
    z-index: 99;
}
nav{
    height: 110px;
    box-sizing: border-box;
    width: 1366px;
    margin:0 auto;
}
nav>ul>li:last-of-type{
    position: relative;
    width:200px;
    height: 110px;
}
nav>ul>li>select{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 0;
    width:130px;
    height: 35px;
    background-color: inherit;
    font-size: 15px;
    padding:5px;
    border:2px solid black;
}
nav>ul>li>select>option{
    color:black;
}
.logo{
    float:left;
    position: relative;
}
.logo img{
    margin-top:15px;
    height: 80px;
}

nav>ul{
    float:right;
}
nav>ul>li{
    float:left;
}
nav>ul>li>a{
    color:black;
    width:200px;
    text-align: center;
    line-height: 110px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
nav>ul>li:nth-of-type(3)>a{
    width:130px;
}
nav>ul>li:nth-last-of-type(2)>a{
    margin-left:70px;
}
nav>ul>li:last-of-type>a,
nav>ul>li:nth-last-of-type(2)>a{
    width:100px;
}
.navMenus{
    position: absolute;
    top:110px;
    background-color: white;
    padding:15px 60px;
    box-sizing: border-box;
    border-top:3px solid skyblue;
    display: none;
}
.navMenus>li>a{
    line-height: 30px;
}
.navMenus>li>a:hover{
    color:dodgerblue;
}
.navMenus>li>a:hover::before{
    content:">";
    position: absolute;
    left:7px;
}
.sectionWrap{
    width:1366px;
    height: auto;
    margin:0px auto;
    overflow: hidden;
}

.sectionWrap h2{
    line-height:60px;
}
.sectionheader{
    width:100%;
    min-width:1366px;
    height: 350px;
    text-align: center;
    color:white;
    background-color:#1c8dac;
    letter-spacing: 0.2em;
    position: relative;
}
.sectionheader>h2{
    position: absolute;
    top:53%;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 35px;
    font-weight: 100;
    display: inline-block;
    
}
footer{
    width:100%;
    background-color: #f3f3f3;
    height: auto;
    font-weight: 400;
    line-height: 1.5;
}
.footerWrap{
    width:1366px;
    padding:40px 0;
    margin:0 auto;
    background-color: #f3f3f3;
    color:#555555;
    overflow: hidden;
    padding-bottom: 30px;
}
.footerWrap>h1{
    color:black;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    width:22%;
    float:left;
}
.footerWrap>p{
    float:left;
    width:22%;
}
.footerWrap>h1:first-of-type,
.footerWrap>p:first-of-type{
    width:35%;
}
.footerWrap>h1:last-of-type,
.footerWrap>p:last-of-type{
    float:left;
    width:20%;
}
.footerWrap>ul{
    float:left;
    width:22%;
}
.footerWrap>ul>li::before{
    content:">";
    float:left;
    width:15px;
    color:forestgreen;
    font-weight: bold;
    padding-left:8px;
}
.footerWrap>hr{
    float:left;
    width:100%;
    margin-top:30px;
    margin-bottom: 10px;    
}