/* This stylesheet is meant for custom styles, on top of the Bone Template */
header.affix {
    height: inherit;
    background: #fff;
    left: 0;
    right: 0;
    padding-bottom: 15px;
}
.brand-logo img{
    width: 270px;
    margin-top: 20px;
    padding: 16px 0 0 0;
}

.affix .brand-logo img{
    margin-top: 0;
}
h1{
    text-transform: capitalize;
}
header.affix .menu {
    margin-top: 20px;
}
.d-none{
    display: none!important;
}

.mb-0{
    margin-bottom: 0!important;
}
.mt-0{
    margin-top: 0!important;
}
.mb-2{
    margin-bottom: 10px!important;
}
.mb-3{
    margin-bottom: 20px!important;
}
.contact-container .text-white{
    color: #fff!important;
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.9;
}
.social_media{
    margin-top: 50px!important;
}
.social_media li{
    display: inline-block!important;
    padding: 0 0 0 20px;
}
.cpy_rgt{
    font-size: 14px;
    margin-top: 20px;
    font-family: "Roboto Mono", "Helvetica Neue", sans-serif;
    color: #2E2E2E;
}
.fs18{
    font-size: 18px!important;
}

.menu_logo {
    position: absolute!important;
    display: block;
    top: 30px;
    left: 30px;
    width: 200px;
    z-index: 99999;
}

footer p a{
    color: #2E2E2E;
    font-weight: 300;
    text-decoration: none!important;
}
footer p a:hover{
    color: #000000;
    font-weight: 400;
}

section.service_wrp{
    padding: 0!important;
}
.service_intro{
    padding: 50px 0;
}
.title-block h1,.title-block h2,.title-block h3, .title-block h4, .title-block h5{
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .social_media {
        display: flex!important;
        justify-content: flex-start;
    }
}
@media (max-width: 500px) {
   .menu_logo{
       width: 150px;
       top: 40px;
   }
}
@media (max-width: 250px) {
   .menu_logo{
       width: 100px;
       top: 45px;
   }
}


/*cursor styles*/
.cursor_hide, .cursor_hide li {
    cursor: none;
}
.custom_cursor{
    display: none;
    opacity: 0;
    transition: 0.6s ease-in-out;
}
.home_slider_sec:hover .custom_cursor{
    display: block;
    opacity: 1;
    transition: 0.6s ease-in-out;
}

.custom_cursor .cursor {
    position: fixed;
    top: -1rem;
    left: -1rem;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
}

.custom_cursor .cursor.is-active div {
    transform: scale(1.1);
}
.custom_cursor .drag_text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #333333;
    color: white;
    padding: 20px;
    border-radius: 50px;
    text-transform: uppercase;
}
.custom_cursor .txt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.custom_cursor .link {
    position: absolute;
    top: 3rem;
    font-size: 0.85rem;
}
.custom_cursor .link--1 {
    left: 3rem;
}
.custom_cursor .link--2 {
    right: 3rem;
}