:root {
    --primary-color: #383C41;
    --secondary-color: #97A3AE;
    --color: #ffffff;
    --hover: #E6524A;
}
/* 
* {
    border: red 2px solid;
} */

body {
    overflow-x: hidden;
    max-width: 100vw;
}

.wrapper {
    color: var(--primary-color);
    font-family: 'Clash Display', sans-serif;
    flex-direction: column;
}

@media screen and (min-width:1024px) {
    .wrapper {
        flex-direction: row;
    }
}

/* LEFT */

.left {
    position: relative;
    width: 50vw;
}

.left .container {
    padding: 50px 100px 25px;
}

.left::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
	background-color: #fff;
}

.left::-webkit-scrollbar
{
	width: 8px;
	background-color: var(--hover);
    position: absolute;
    left: 0;
    direction: rtl;

}

.left::-webkit-scrollbar-thumb
{
	background-color: var(--hover);
}

@media screen and (min-width:1024px) {
    .left {
        height: 100vh;
        overflow-y: scroll;;
    }
}
@media screen and (max-width:1024px) {
    .left {
        width: 100vw;
    }
    .left .container {
        padding: 50px;
    }
}

.branding { margin-bottom: 70px; }

.left-content {
    display: flex;
    flex-direction: column;
}

/* .left-content-title { margin-bottom: 20px; } */

.left-sub-title {
    /* text-transform: uppercase; */
    margin-bottom: -3px;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 40px 0 10px;
}

.left-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--hover);
}

.left-content-description p {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Clash Display', sans-serif;
}

ul li, a {
    font-size: 16px;
}

strong {
    font-weight: 500;
}

ul {
    padding-left: 0;
    list-style-position: inside;
}

ul li {
    color: var(--hover);
    margin-bottom: 20px;
}
ul li span{
    color: var(--primary-color);;
}

.left-content-btn {
    margin: 25px 0;
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.left-content-btn a{
    display: block;
    width: fit-content;
}

/* LEFT BUTTON */

.btn-1, .btn-2 {
    border-radius: 5px;
    outline: none;
    padding: 10px 15px;
}

.btn-1 {
    background-color: var(--primary-color);
    color: var(--color);
    border: none;
    margin-right: 40px;
}

.btn-1:hover {
    background-color: var(--hover);
    transition-duration: 0.5s;
}

.btn-2 {
    background-color: var(--color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-2:hover {
    border: 1px solid var(--hover);
    color: var(--hover);
    transition-duration: 0.5s;
}

/* LEFT FOOTER */

/* .left-content-i { 
    position: absolute;
    bottom: 50px;
    align-items: center;
 } */

.left-content-i i {
    min-width: 40px;
    max-width: 40px;
    width: 100%;
    height: 100%;
    max-height: 40px;
    min-height: 40px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--color);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-content-i i:first-child{ margin-right: 20px; }

.left-content-i i:hover {
    background-color: var(--hover);
    transition-duration: 0.5s;
}

.icones { 
    list-style: none;
    padding-left: 0;
 }

.icones a { text-decoration: none; }

address { margin-bottom: 0!important; }
address:hover { 
    color: var(--hover);
    transition-duration: 0.5s;
}
address a { 
    text-decoration: none;
    color: var(--primary-color);
}
address a:hover { 
    text-decoration: none;
    color: var(--hover);
}

.image > img {
    position: absolute;
    bottom: 0;
    left: 0;
    user-select: none;
    width: 55%;
    z-index: -1;
}

/* RIGHT */

.right {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

address {
    margin-top: 40px;
}

.filligrane {
    position: sticky;
    bottom: 0;
    left: -20%;
    z-index: -1;
    width: 45vw;
}

@media screen and (max-width:768px) {
    .filligrane {
        width: 100vw;
    }
}
@media screen and (min-width:1024px) {
    .right {
        width: 50vw;
    }
}