:root{
    --white: #ffffff;
    --black: #000000;
    --text: #D8D7D8;
    --pcolor: #777;
    /* --primary-color: #ff3f39; */
    --primary-color: #007F34;
    --secondary-color: #F39C12;
    --title-color: #1C171D;
    --bg-color: #f9f9f9;
    --bg-brown: rgb(184, 97, 54);
    --bg-black: #17171A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
    font-family: Lato-Regular;
}

body{
    font-size: 16px;
    font-family: Lato-Regular;
    scroll-behavior: smooth;
}

@font-face {
    font-family: Lato-Regular;
    src: url('../font/Lato-Regular.ttf');
}

@font-face {
    font-family: Lato-Light;
    src: url('../font/Lato-Light.ttf');
}

@font-face {
    font-family: Lato-Thin;
    src: url('../font/Lato-Thin.ttf');
}

@font-face {
    font-family: Lato-Bold;
    src: url('../font/Lato-Bold.ttf');
}

@font-face {
    font-family: Raleway-Regular;
    src: url('../font/Raleway-Regular.ttf');
}

@font-face {
    font-family: Raleway-Thin;
    src: url('../font/Raleway-Thin.ttf');
}

@font-face {
    font-family: Raleway-SemiBold;
    src: url('../font/Raleway-SemiBold.ttf');
}

@font-face {
    font-family: Raleway-Medium;
    src: url('../font/Raleway-Medium.ttf');
}

@font-face {
    font-family: Raleway-Bold;
    src: url('../font/Raleway-Bold.ttf');
}

@font-face {
    font-family: SaolDisplay-Regular;
    src: url('../font/SaolDisplay-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../font/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../font/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../font/Montserrat-Bold.ttf');
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wrap_padding{
    padding: 80px 0;
}

.mt-10{
    margin-top: 10rem;
}

.mb-10{
    margin-bottom: 10rem;
}

.form-control:focus,
.btn-close:focus{
    border-color: var(--primary-color);
    outline: 0;
    /* box-shadow: 0 0 0 0.25rem rgb(190 143 45 / 25%); */
    box-shadow: none;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 3px;
    display: none;
  }
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 10px;
}

/* scroll to top styling */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 10px;
    display: none;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-color);
    z-index: 99;
}
.back-to-top:hover{
    color: var(--primary-color);
    background: transparent;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus,.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
    /* box-shadow: 0 0 0 0.25rem rgb(85 45 132 / 25%); */
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

/* Text Selection Color */
::selection {
    color: #fff;
    background: var(--primary-color);
}

.bg02{
    background-color: var(--bg-color);
}

p{
    font-family: Montserrat-Regular !important;
}