/* ===================================
    Crafto - Branding agency
====================================== */
/* font */
@import url('../../css2-3');
@import url('../../css2-4');
/* variable */
:root {     
    --base-color: #e99022; 
    --medium-gray: #7b7a7a;
    --dark-gray: #1d1d1d;  
    --charcoal-blue: #232323;
    --alt-font: 'Space Grotesk', sans-serif;
    --primary-font: 'Inter', sans-serif;
}
body {
    line-height: 30px;
}
a:hover {
    color: var(--dark-gray);
}
h1, .h1 {
    line-height: 4rem;
}
h3, .h3 { 
    line-height: 2.813rem;
}
h4 {
    line-height: 2.6rem;
}
/* -----------------------------------
   NAVBAR BASIC TEXT SETTINGS
----------------------------------- */
.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
}

/* -----------------------------------
   REDUCE NAVBAR HEIGHT
----------------------------------- */
.navbar {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* Reduce nav-link height */
.navbar .nav-link {
    padding: 6px 14px !important;
    line-height: 1.1 !important;
}

/* Reduce brand/logo height */
.navbar-brand img {
    max-height: 36px !important;
}

/* -----------------------------------
   NAV LINK HOVER + UNDERLINE
----------------------------------- */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
    color: inherit;
}

.navbar-nav .nav-link:hover {
    color: #1ea3b1 !important;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #e97522, #1ea3b1);
    transition: width 0.28s ease, left 0.28s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 55%;
}

/* -----------------------------------
   DROPDOWN MENU STYLING
----------------------------------- */
.dropdown-menu {
    padding: 4px 0 !important;
    margin-top: 5px !important;
    border-radius: 8px;
    background-color: #fff;
    border: 0;
    min-width: 210px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    box-shadow: 0 6px 18px rgba(21, 32, 45, 0.08);
}

.dropdown:hover > .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown item spacing (reduced height) */
.dropdown-item {
    padding: 6px 14px !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-gray) !important;
    transition: background-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #eef9fb !important;
    color: #1ea3b1 !important;
    padding-left: 18px !important;
}

/* Reduce first & last item padding */
.dropdown-menu > li:first-child > .dropdown-item {
    padding-top: 6px !important;
}
.dropdown-menu > li:last-child > .dropdown-item {
    padding-bottom: 6px !important;
}

/* -----------------------------------
   CARET / ARROW FIX (alignment)
----------------------------------- */
.nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    font-size: 11px;
    transition: transform 0.22s ease;
    transform: translateY(1px);  /* fixed alignment */
}

.dropdown.show > .nav-link.dropdown-toggle::after,
.dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: translateY(1px) rotate(180deg);
}

/* -----------------------------------
   MOBILE DROPDOWN FIX
----------------------------------- */
@media (max-width: 991.98px) {

    .navbar {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .navbar-nav .dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}


/* footer */
footer ul li {
    margin-bottom: 0;
    line-height: 28px;
}
footer a:hover {
    color: var(--white);
}
footer .footer-logo img {
    max-height: 100%;
}
/* z-index */
.z-index-99 {
    z-index: 99; 
}
@media (min-width: 992px) {
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
        padding: 20px 30px;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        width: 285px;
    }
}
@media (max-width: 1199px) {
    .left-minus-45 {
        left: -78%;
    }
    .lg-ms-70px {
        margin-left: 70px;
    }
    .lg-bg-transparent {
        background-color: transparent;
    }
    .one-half-screen {
        height: auto !important;
    }
}
@media (max-width: 991px) {
    [data-mobile-nav-style=modern] .navbar-modern-inner .navbar-nav .nav-item .dropdown-menu a i {
        font-size: 19px;
        vertical-align: middle;
        color: var(--white);
    }
    .md-top-auto {
        top: auto;
    }
}

/* .video-relative{
    position: relative;
}

.background-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.absolute{
    position: absolute;
}

.line-height{
    line-height: 1.5rem;
}
   */   
   
   .vh-50{
       height: 80vh;
   }
    @media only screen and (max-width:1024px){
       .vh-50{
           margin-top:20px;
       height: 40vh;
   }
   }
   
   @media only screen and (max-width:768px){
       .vh-50{
           margin-top:20px;
       height: 30vh;
   }
   }
   
    @media only screen and (max-width:425px){
       .vh-50{
           margin-top:60px;
       height: 20vh;
   }
   }
    @media only screen and (max-width:375px){
       .vh-50{
           margin-top:50px;
       height: 15vh;
   }
   }
     @media only screen and (max-width:320px){
       .vh-50{
           margin-top:60px;
       height: 13vh;
   }
   }
   
   
   .bg-image{
       background-image:url('/images/blog/reachoutmarketingbgbr7reas1.jpg');
       background-position:center;
       background-size:cover;
   }
   @media only screen and (max-width:768px){
   .tab-view{
       font-size:15px ! important;
       padding:5px ! important;
   }
   }
   
   .img-width{
       max-width:600px;
   }
   
   .img-fluid-blog{
       width:100%;
       height:auto;
       max-width:200px;
   }
   
   
   .text-justify{
       text-align:justify !important;
   }
   
   
   .mt-80px{
      margin-top:80px; 
   }
   
    @media only screen and (max-width:375px){
   .img-for-all{
       width:100%;
       height:auto;
       max-width:50px;
   }
   }
   
   @media only screen and (max-width:320px){
   .img-for-all{
       width:100%;
       height:auto;
       max-width:50px;
   }
   }
   
   @media only screen and (max-width:460px){
       .mobile-view-mb{
           margin-top:10px;
       }
       
   }
   
   @media only screen and (max-width:460px){
       .display-none-md{
           display:none;
       }
   }
   
   .highlight-word-blue{
       color:#1ea3b1;
   }
   
    .highlight-word-orange{
       color:#e97522;
   }
   
   .highlight-word-darkgrey{
       color:#1d1d1d;
   }
   
   .text-gradient{
    background-image: linear-gradient(to left, #e97522 0%, #1ea3b1 100%); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    
    
    
    
    