*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    line-height: 1.7;
    font-weight: 400;
}
body.overflow{
    overflow: hidden;
}
.container{
    max-width: 1080px;
    margin: 0 auto;
}
li{
    list-style: none;
}h1, h2, h3, h4, h5, h6{
    font-weight: 500;
    line-height: 1;
    color: #333;
}
a{
    text-decoration: none;
}
figure img{
    width: 100%;
}
img{
    max-width: 100%;
}

.heading h2{
    font-size: 30px;
}
.heading h3{
    font-size: 22px;
}
.heading h4{
    font-size: 18px;
}
.heading h5{
    font-size: 16px;
}

.btn{
    color: #FFFFFF;
    padding: 0px 30px;
    font-size: 22px;
    font-weight: 500;
    line-height: 44px;
    background-color: #7cc4e0;
    display: inline-block;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.align-center{
    align-items: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}

/* colors */
.light-blue{
    color: #7DCCEF;
}
.light-black{
    color: #333;
}
.mdisc-gray{
    color: #A19D9C;
}
.mdisc-white{
    color: #FFFFFF;
}