#call-to-action {
	position: fixed;
	bottom: 40px;
	right: 20px;

    @media screen and (max-width: 992px) {
        display: none;
    }
}

.cto,
.sociallinks {
	.cto-item {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        line-height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;

        svg {
        	width: 26px;
        	height: 26px;
        }

        &:hover {
        	background-color: #e67a00 !important;
        	color: #fff !important;

        	svg {
        		fill: #fff !important;
        	}
        }
	}
}

.sociallinks {
    display: flex;
    flex-direction: row;
    justify-content: center;

    .cto-item {
        margin-right: 14px;
    }
}