* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #EEE6DB;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #182A41;
}
ul {
	padding: 0;
	list-style-type: none;
	margin: 0px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1{
    color: #ECE7DC;
    font-family: 'Cocogooseregular-Normal';
    font-size: 7.2rem;
    line-height: 80px;
    text-transform: uppercase;
}
h2{
    color: #FCFAF5;
    font-family: 'Cocogooseregular-Normal';
    font-size: 4rem;
    line-height: 48px;
    text-transform: uppercase;
}
h3{
    color: #FCFAF5;
    font-family: 'Cocogooseregular-Normal';
    font-size: 3.2rem;
    line-height: 48px;
    text-transform: uppercase;
}
h4{
    color: #BE9872;
    font-family: 'Hamburg-Regular';
    font-size: 2.4rem;
    line-height: 32px;
}
h5{
    color: #FCFAF5;
    font-family: 'Cocogooseregular-Normal';
    font-size: 1.8rem;
    line-height: 26px;
}
h6{
    color: #FCFAF5;
    font-family: 'Hamburg-Regular';
    font-size: 1.6rem;
    line-height: 26px;
}
p{
    color: #FCFAF5;
    font-family: 'Hamburg-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
li{
    color: #FCFAF5;
    font-family: 'Hamburg-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    position: relative;
    padding-left: 14px;
}
li::after {
    position: absolute;
    content: "";
    background-color: #FCFAF5;
    left: 0px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50px;
}
.common-btn {
    font-family: 'Hamburg-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    border: 1.5px solid #7794A0;
    border-radius: 5px;
    padding: 11px 40px;
    background: #7794A0;
    color: #ECE7DC;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.common-btn::after{
    position: absolute;
    content: "";
    background: #182A41;
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 100%;
}
.common-btn:hover::after {
    transform: scaleY(1);
    z-index: -1;
}
.common-btn:hover {
	color: #ECE7DC;
    padding-left: 45px;
    padding-right: 45px;
    border-color: #182A41;
}
.border-btn{
    background: transparent;
    border: 1.5px solid #182A41;
    color: #182A41;
}
.border-btn::after{
    background: #7794A0;
}
.border-btn:hover{
    border: 1px solid #7794A0;
}
.common-arrow {
    background: #7794A0;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 17px;
}
.common-arrow:hover{
    background: #182A41;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}