:root{
    --white: #ffffff;
    --black: #000000;
    --primary-color: #232323;
    --secondary-color: #484848;
	--dark-gold:#b68d40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
    font-family: Segoe-Regular;
}

body{
    font-size: 1rem;
    font-family: 'Lato';
    scroll-behavior: smooth;
    max-width: 1920px;
    margin: auto;
    background: white !important;
	overflow-x: hidden;
}

@font-face {
    font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
    src: url('../font/Lato-Regular.ttf');
}

/*
.container, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
    max-width: 1470px;
}
*/


.container{
	max-width: 1470px;
}
.container-fluid{
    max-width: 1900px;
}

.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: 90px 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: 6px;
    height: 6px;
    /* 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);
}
