/**
 * Custom Style for Header Profile ACF block.
 */

 .h-bt {
	font-family: var(--heading-alt-font-family);
	font-size: .9rem;
	background: var(--white);
	border-radius: 5px;
	padding: .5rem 1rem;
	box-shadow: 0px 4px 4px rgba(0,0,0,.25);
	z-index: 999;
    position: absolute;
    transition: 200ms ease-in-out;
	color: var(--black);
}
.h-bt.b-web {
	bottom: 25%;
	left: -1%;
}
.h-bt.b-marketing { 
    top: 17%; 
    left: -3%; 
}
.h-bt.b-seo {
	top: 5%;
	right: 10%;
}
.h-bt.b-story {
	top: 30%;
	right: -10%;
}
.h-bt.b-ads {
	bottom: 35%;
	right: -6%;
}
a .h-bt:hover {
	transform: scale(.95);
	transition: 250ms ease-in-out;
}
.h-bt img {
	height: 30px;
	margin-right: .2rem;
}
/* .hp-full {
    display: none;
} */

/* Tablet View */
@media only screen and (min-width: 768px) and (max-width: 1023px){ 
    .h-bt.b-marketing {
        top: 18%;
        left: 0%;
    }
    .h-bt.b-seo {
        top: 13%;
        right: 10%;
    }
    .h-bt.b-story {
        top: 40%;
        right: -1%;
    }
    .h-bt.b-ads {
        bottom: 18%;
        right: -1%;
    }
    .h-bt {
        font-size: 12px;
    }
    .h-bt img {
        height: 23px;
    }
}

/* Mobile View */
@media only screen and (min-width: 320px) and (max-width: 767px){ 
    .h-bt.b-marketing {
        top: 19%;
        left: -3%;
    }
    .h-bt.b-story {
        top: 43%;
        right: -5%;
    }
    .h-bt.b-ads {
        bottom: 13%;
        right: -1%;
    }
    .h-bt.b-seo {
        top: 17%;
        right: 2%;
    }
    .h-bt {
        font-size: 10px;
        padding: 4px;
    }
    .h-bt img {
        height: 17px;
    }
}

