*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#main-logo, #gioia-logo {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
}
#gioia-logo {
    top: unset;
    bottom: 45px;
}
#gioia-logo img, #gioia-logo-mobile img{
	width: 220px;
	height: 34px;
}
#main-logo img{
	width: 260px;
	height: 71px;
}
.daniels-content {
    display: flex;
}
.side-left {
    width: 500px;
    background: #004539;
}
.side-right {
    flex: 1;
}
.right-image{
	display: none;
}
#main-img{
	display: block;
}
.right-image img {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    display: block;
}
.side-left-content {
    height: 100%;
    padding: 35px;
}
.side-left-content .border-container{
	border-image: url(../images/border.svg);
	border-image-slice: 20;
	border-image-width: 27px;
	height: 100%;
	width: 100%;
	text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.side-left-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.side-left-content ul li a {
	font-family: the-seasons, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2em;
    width: 95.9%;
    text-decoration: none;
    color: #F4EEE1;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}
.side-left-content ul li a:after {
    content: url(../images/arrow.svg);
    width: 8px;
    height: 13px;
    line-height: 0;
    opacity: 0;
    position: absolute;
}
.side-left-content ul li:nth-child(1) a:after{
	right: 139px;
}
.side-left-content ul li:nth-child(2) a:after{
	right: 73px;
}
.side-left-content ul li:nth-child(3) a:after{
	right: 85px;
}
.side-left-content ul li:hover a{
	background: #2C5648;
}
.side-left-content ul li:hover a:after{
	opacity: 1;
}
.mobile-version{
	display: none;
}
@media (min-width: 768px) {
	.side-right {
		position: relative;
		height: 100dvh;
		background-color: #004539;
	}
	.right-image {
		display: block;
		position: absolute;
		width: 100%;
		z-index: 1;
		opacity: 0;
		transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
		visibility: hidden;
		pointer-events: none;
	}
	.right-image.current {
		z-index: 2;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}
@media(max-width: 767px){
	#ds-sports-mobile-image img {
	    object-position: top;
	}
	#gioia-logo-mobile {
	    text-align: center;
	    padding-top: 25px;
	}
	.desktop-version{
		display: none;
	}
	.mobile-version{
		background: #004539;
		padding: 0 20px 50px;
		display: block;   
	}
	.mobile-version h4{
		font-family: the-seasons, sans-serif;
		font-size: 23px;
		font-weight: 300;
		line-height: 1.2em;
		color: #F4EEE1;
		text-align: center;
		padding: 15px 0;
	}
	.mobile-version a{
		text-decoration: none;
	}
	#main-logo {
	    padding: 50px 0 25px;
	    text-align: center;
	    position: unset;
	}
	#main-logo img {
	    width: 150px;
	    height: 41px;
	}
	.mobile-image img {
	    width: 100%;
	    display: block;
	    max-height: 120px;
	    object-fit: cover;
	}
}
@media(min-height: 810px){
	.mobile-image img{
		max-height: 185px;
	}
}
@media(min-height: 900px){
	.mobile-image img{
		max-height: auto !important;
	}
}
@media(max-height: 700px){
	#main-logo img {
	    width: 150px;
	    height: 41px;
	}
	#main-logo {
	    top: 50px;
	}
	.side-left-content ul li a {
		height: 62px;
	}

}
@media(max-height: 550px){
	.side-left-content ul li a {
		height: 40px;
		font-size: 20px;
	}
	.side-left-content ul li:nth-child(2) a:after {
	    right: 88px;
	}
	.side-left-content ul li:nth-child(1) a:after {
	    right: 140px;
	}
	.side-left-content ul li:nth-child(3) a:after {
	    right: 98px;
	}
	#gioia-logo img {
	    width: 150px;
	    height: 28px;
	}
	#gioia-logo {
	    bottom: 30px;
	}
}