.top-container {
	position: relative;
	display: block;
    /* overflow: hidden; */
}

.top-menu {
    position: absolute;
    display: block;
    width: 100%;
    height: 160px;
    text-align: center;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.top-menu .header-nav-group {
    width: 100% !important;
    right: 0px !important;
}

.top-content {
	position: absolute;
	display: block;
	width: 100%;
	left: 0px;
	bottom: 120px;
	text-align: center;
	z-index: 10;
}

.top-logo {
    position: relative;
	display: block;
	margin: 0px auto 55px;
	width: 203px;
    
    left: 100px;
    opacity: 0;

    -webkit-transition: left 0.8s, opacity 0.8s;
    -moz-transition: left 0.8s, opacity 0.8s;
    -o-transition: left 0.8s, opacity 0.8s;
    transition: left 0.8s, opacity 0.8s;
}

.top-logo.show {
    left: 0px;
    opacity: 1;

    -webkit-transition: left 0.8s, opacity 0.8s;
    -moz-transition: left 0.8s, opacity 0.8s;
    -o-transition: left 0.8s, opacity 0.8s;
    transition: left 0.8s, opacity 0.8s;
}

.top-title {
	position: relative;
	display: block;
	font-size: 80px;
	line-height: 71px;
	margin-bottom: 65px;
    letter-spacing: 3px;
	color: #fff;

    left: 100px;
    opacity: 0;
    
    -webkit-transition: left 0.8s, opacity 0.8s;
    -moz-transition: left 0.8s, opacity 0.8s;
    -o-transition: left 0.8s, opacity 0.8s;
    transition: left 0.8s, opacity 0.8s;
}

.top-title.show {
    left: 0px;
    opacity: 1;

    -webkit-transition: left 0.8s, opacity 0.8s;
    -moz-transition: left 0.8s, opacity 0.8s;
    -o-transition: left 0.8s, opacity 0.8s;
    transition: left 0.8s, opacity 0.8s;
}

.top-link {
	position: relative;
	display: block;
	width: calc(100% - 40px);
	max-width: 400px;
	margin: 0px auto;
	color: #fff;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 0px;
	border: 1px solid #fff;
	background: transparent;

    left: 100px;
    opacity: 0;

	-webkit-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	-moz-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	-o-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
}

.top-link.show {
    left: 0px;
    opacity: 1;

    -webkit-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	-moz-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	-o-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
}

.top-link:hover {
	background: #d5a85f;
	color: #000;
    border: 1px solid #d5a85f;
	
	-webkit-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	-moz-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	-o-transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
	transition: background 0.4s, left 0.8s, opacity 0.8s, color 0.4s, border 0.4s;
}

.top-link > * {
	font-size: 20px;
}

.top-link > span {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}

.top-link-img {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 20px;
    height: 100%;
    background: url('../images/lynford_barbershop_make_an_appointment_whatsapp_icon.svg') no-repeat;
    background-size: contain !important;
    background-position: 50%;
}

.top-link-img:before {
    content: "";
	position: absolute;
	display: block;
	width: 100%;
    height: 100%;
    background: url('../images/lynford_barbershop_make_an_appointment_whatsapp_black_icon.svg') no-repeat;
    background-size: contain !important;
    background-position: 50%;
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.top-link:hover .top-link-img:before {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

/* Desktops and laptops */
@media screen and (max-width : 1536px) {
    .top-content {
        bottom: 95px;
    }

	.top-logo {
        width: 162px;
        margin-bottom: 45px;
    }

    .top-title {
        font-size: 64px;
        line-height: 58px;
        margin: 0px auto 50px;
    }

    .top-link {
        max-width: 320px;
        line-height: 65px;
        height: 65px;
    }

    .top-link > * {
        font-size: 16px;
    }

    .top-link > span {
        margin-right: 15px;
    }

    .top-link > img {
        width: 16px;
    }
}

@media screen and (max-width : 1366px) {
	.top-content {
        bottom: 95px;
    }

	.top-logo {
        width: 150px;
        margin-bottom: 45px;
    }

    .top-title {
        font-size: 55px;
        line-height: 58px;
        margin: 0px auto 50px;
    }

    .top-link {
        max-width: 320px;
        line-height: 55px;
        height: 55px;
    }

    .top-link > * {
        font-size: 14px;
    }

    .top-link > span {
        margin-right: 15px;
    }

    .top-link > img {
        width: 14px;
    }
}

/* Tablet */
@media screen and (max-width: 1150px) {

}

@media screen and (max-width: 1024px) {
    .top-slide {
        aspect-ratio: 1024/768;
    }
    
    .top-slide > li > img {
        aspect-ratio: 1024/768;
        object-fit: cover;
        object-position: 50%;
    }
    
    .top-content {
        bottom: 60px;
    }

	.top-logo {
        width: 120px;
        margin-bottom: 35px;
    }

    .top-title {
        font-size: 45px;
        line-height: 50px;
        margin: 0px auto 40px;
        letter-spacing: 2px;
    }

    .top-link {
        max-width: 280px;
    }

    .top-link > * {
        font-size: 14px;
    }

    .top-link > span {
        margin-right: 15px;
    }

    .top-link > img {
        width: 14px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    
}

@media screen and (max-width : 500px) {
	.top-slide {
        aspect-ratio: 9/16;
    }
    
    .top-slide > li > img {
        aspect-ratio: 9/16;
        object-position: 50%;
    }
    
    .top-content {
        bottom: 50px;
    }

    .top-title {
        font-size: 38px;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .top-link {
        max-width: unset;
    }
}
