/* ************************************************************
:: Project: Hale Nature
:: Client: Hale Nature Private Limited
:: Developer: Apexx Private Limited
:: Developer URI: https://www.apexx.lk/
:: Version: 1.0.0
:: Created: 05 September 2024
:: Last modified: 05 September 2024
:: License: Proprietary
:: Copyright (c) 2024 Hale Nature and Apexx Private Limited. All rights reserved.
This software is a joint intellectual property of Hale Nature and Apexx Private Limited, and is licensed exclusively to "Hale Nature Private Limited" for use solely in connection with their website, https://www.halenature.lk.

Any use of this software that is not expressly authorized by this license is strictly prohibited and may result in copyright infringement.
The licensee agrees to indemnify and hold harmless Hale Nature and Apexx Private Limited from any and all claims, damages, liabilities, costs, andexpenses arising out of or in connection with any use of the software that is not in accordance with this license.
************************************************************
*
*
*
*
*
*/

@font-face {
    font-family: "Poppins-Black";
    src: url(../font/Poppins/Poppins-Medium.ttf);
}
@font-face {
    font-family: "Volkhov-Bold";
    src: url(../font/Volkhov/Volkhov-Bold.ttf);
}

/**** Variables ****/
:root {
    --f-family: "Poppins-Black", sans-serif;
    --sf-family: "Volkhov-Bold", sans-serif;
    --primary: #2c1708;
    --secondary: #fce3bf;
    --success: #a66f3e;
    --info: #f2a429;
    --warning: #72bf44;
    --danger: #fffbf2;
}

/**** Main Styles ****/
* {
    font-family: var(--f-family) !important;
}
.second_font {
    font-family: var(--sf-family) !important;
}
.head-main{
    box-shadow: 0px 4px 25px 0px #00000040;
}

.navbar-nav .nav-link:hover {
    color: red; 
}

.navbar-nav .nav-link.active {
    color: red;
}
 .foot-main {
    margin-top: 150px;
    box-shadow: 0px -4px 25px 0px #00000040;
}
.foot-admin{
    box-shadow: 0px 4px 25px 0px #00000040;
}
.foot-sub {
    top:100%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 25px 0px #00000040;
}

.scrollToTopBtn {
    bottom: 60px;
    left: 10px;
}

.zoom-text {
    display: inline-block;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    color: #2c1708;
  }
  
.zoom-text:hover {
    transform: scale(1.2); 
    color: #001079; 
  }

.bg-color{
    background-color: #FFEFEF;
}
.img-ani:hover{
    transform: scale(1.25);
    cursor: pointer;
  }