/* GENERAL */

:root {
    --bs-theme: #e1d1bf;
    --bs-gold: #cea062;
    --bs-theme-dark: #c4a480;
    --bs-black: #231f20;
    --bs-red: #c51617;
    --bs-dark: #222222;
    --bs-light-gray: #f2f2f2;
    --bs-gray: #7d7d7d;
    --bs-white: #ffffff;
    --bs-light: #ddd;
    --bs-theme-gradient: linear-gradient(90deg, rgba(166,120,68,0.5) 0%, rgba(254,207,141,0.5) 50%, rgba(166,120,68,0.5) 100%);
}


html {
  scroll-behavior: smooth;
  background: var(--bs-white);
}
body {
    background: var(--bs-white);
}
body {
    font-family: 'Poppins',-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    letter-spacing: .1px;
    color: var(--bs-black);
    font-weight: 200;
}

/* 5 col - lg */
@media (min-width: 992px) {
  .col-lg-x5 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lh-1 {
  line-height: 1.2 !important;
}

.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.fw-900 {font-weight: 900;}

a {
  color: var(--bs-black);
}
a:hover {
  color: var(--bs-theme-dark);
}

a, button, .btn, a img, .bs, .ts, .ease, 
.tab-clickable, .tab-clickable span {
    -webkit-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

strong, .strong, b {
    font-weight: 600;
}

hr {color: #bababa;}

/* TEXT COLORS */
.text-white {
    color: var(--bs-white);
}
.text-black {
    color: var(--bs-black);
}
.text-gray {
  color: var(--bs-gray);
}
.text-light-gray {
  color: var(--bs-gray-500);
}

/* BACKGROUNDS */
.bg-light, .bg-white {
  background-color: var(--bs-white) !important;
}
.bg-light-gray {
  background-color: var(--bs-light-gray) !important;
}
.bg-black {
  background-color: var(--bs-black) !important;
}
.bg-theme-gradient {
    background: var(--bs-theme-gradient) !important;
}
.bg-gold {
    background: var(--bs-gold) !important;
}
.bg-red {
    background: var(--bs-red) !important;
}

/* counted list */
ol.list-counted {
  counter-reset: counter;
  list-style: none;
  padding-left: 35px;
}
ol.list-counted li {
  margin: 0 0 0.8rem 0;
  counter-increment: counter;
  position: relative;
  font-weight: 500;
}
ol.list-counted li::before {
  content: counter(counter);
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  --size: 24px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: var(--bs-gold);
  border-radius: 50%;
  text-align: center;
}



/* BUTTONS */
.btn-theme-gradient {
    background: var(--bs-theme-gradient) !important;
}
.btn-theme-gradient:hover {
    background: var(--bs-black) !important;
    color: var(--bs-white);
}

.btn-black {
    background: var(--bs-black) !important;
    border: 1px solid var(--bs-black);
    color: var(--bs-white);
}
.btn-black:hover {
    background: var(--bs-gold) !important;
    border: 1px solid var(--bs-gold);
    color: var(--bs-white);
}

.btn-black-outline {
    background: transparent !important;
    border: 1px solid var(--bs-gray);
    color: var(--bs-black);
}
.btn-black-outline:hover {
    background: var(--bs-black) !important;
    border: 1px solid var(--bs-black);
    color: var(--bs-white);
}

.btn-white-outline {
    background: transparent !important;
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
}
.btn-white-outline:hover {
    background: var(--bs-white) !important;
    border: 1px solid var(--bs-white);
    color: var(--bs-black);
}

.btn-light-gray {
    background: var(--bs-light-gray) !important;
    border: 1px solid var(--bs-light-gray);
    color: var(--bs-black);
}
.btn-light-gray:hover {
    background: var(--bs-black) !important;
    border: 1px solid var(--bs-black);
    color: var(--bs-white);
}

.btn-file {
  background: transparent;
  color: #333;
  border: 1px solid #333;
  text-transform: none;
  text-align: left;
}
.btn-file:hover {
  background: transparent;
  color: #333;
  border: 1px solid #333;
  text-transform: none;
  text-align: left;
}

.btn-file .material-icons-outlined {
    transform: rotate(35deg);
    top: 0.15em !important;
}

/* FORM */
.form-control::placeholder {
    color: var(--bs-black) !important;
    opacity: 1;
}
.form-control {
  padding: .375rem 1rem;
  color: #000;
  border: 1px solid #333;
  border-radius: 3rem;
  font-weight: 300;
}
.form-control:focus::placeholder {
    opacity: 0.1;
}
.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #444;
    outline: 0;
    box-shadow: none;
}

.form-check-input,
.form-check-input:active,
.form-check-input:focus,
.form-check-input:active:focus {
    cursor: pointer;
    box-shadow: none;
    border-color: var(--bs-gray);
    position: relative;
    top: 0.02rem !important;
    left: -0.18rem !important;
}
.form-check-input:checked {
  background-color: var(--bs-black);
  border-color: var(--bs-black);
}

input[readonly], input[disabled] {
  color: #999 !important;
  background-color: rgba(0,0,0,0.02) !important;
}



/* Material Icon sizes */
.material-icons-round.md-13, .material-icons-outlined.md-13 { font-size: 13px;transform: translateY(2px); }
.material-icons-round.md-15, .material-icons-outlined.md-15 { font-size: 15px;transform: translateY(2px); }
.material-icons-round.md-16, .material-icons-outlined.md-16 { font-size: 16px;transform: translateY(3px); }
.material-icons-round.md-17, .material-icons-outlined.md-17 { font-size: 17px; }
.material-icons-round.md-18, .material-icons-outlined.md-18 { font-size: 18px; }
.material-icons-round.md-20, .material-icons-outlined.md-20 { font-size: 20px; }
.material-icons-round.md-24, .material-icons-outlined.md-24 { font-size: 24px; }
.material-icons-round.md-25, .material-icons-outlined.md-25 { font-size: 25px; }
.material-icons-round.md-26, .material-icons-outlined.md-26 { font-size: 26px; }
.material-icons-round.md-28, .material-icons-outlined.md-28 { font-size: 28px; }
.material-icons-round.md-29, .material-icons-outlined.md-29 { font-size: 29px; }
.material-icons-round.md-30, .material-icons-outlined.md-30 { font-size: 30px; }
.material-icons-round.md-31, .material-icons-outlined.md-31 { font-size: 31px; }
.material-icons-round.md-32, .material-icons-outlined.md-32 { font-size: 32px; }
.material-icons-round.md-33, .material-icons-outlined.md-33 { font-size: 33px; }
.material-icons-round.md-35, .material-icons-outlined.md-35 { font-size: 35px; }
.material-icons-round.md-36, .material-icons-outlined.md-36 { font-size: 36px; }
.material-icons-round.md-38, .material-icons-outlined.md-38 { font-size: 38px; }
.material-icons-round.md-40, .material-icons-outlined.md-40 { font-size: 40px; }
.material-icons-round.md-42, .material-icons-outlined.md-42 { font-size: 42px; }
.material-icons-round.md-44, .material-icons-outlined.md-44 { font-size: 44px; }
.material-icons-round.md-48, .material-icons-outlined.md-48 { font-size: 48px; }
.material-icons-round.md-50, .material-icons-outlined.md-50 { font-size: 50px; }
.btn .material-icons-round,
.btn .material-icons-outlined {
    vertical-align: text-bottom;
    position: relative;
    top: -.06em;
} 

.rd { border-radius: 3rem; }
.rd-4 { border-radius: .5rem; }
.rd-5 { border-radius: .75rem; }
.rd-6 { border-radius: 1rem; }



/* font sizes */
.fs-7 {
    font-size: .9em !important;
}
.fs-8 {
    font-size: .85em !important;
}
.fs-9 {
    font-size: .8em !important;
}
.fs-10 {
    font-size: .75em !important;
}
.fs-11 {
    font-size: .7em !important;
}
.fs-12 {
    font-size: .6em !important;
}
.fs-xl {
    font-size: 3em !important;
}
.fs-xxl {
    font-size: 4em !important;
}
.fs-xxxl {
    font-size: 5em !important;
}

.under-line::after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 2px solid #000;
  margin: 25px auto 0;
}

table tr > th {
  font-weight: 600;
}
table tr > td {
  font-weight: 200;
}

/* RESPONSIVE TABLE */
@media only screen and (max-width: 800px) {
	.responsive-table table, 
	.responsive-table thead, 
	.responsive-table tbody, 
	.responsive-table th, 
	.responsive-table td, 
	.responsive-table tr { 
		display: block; 
	}
	.responsive-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.responsive-table tr { border: 0px solid #ddd; margin-bottom: 15px;}
	.responsive-table td { 
		border: none;
		border-bottom: 1px solid #ddd; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align: left !important;
		font-size: 0.9rem;
	}
	.responsive-table tr td:last-child { 
    border-bottom: 2px solid #999; 
	}
	.responsive-table tr:last-child {
    margin-bottom: 0;
  }
	.responsive-table td:before { 
		position: absolute;
		top: 10px;
		left: 10px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align: left;
		font-weight: 500;
		font-size: 0.9rem;
	}
	.responsive-table td:before { content: attr(data-title); }
}

.bordered {
    border: 1px solid #ddd;
}

/* box shadows */
.bs {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);
}
.bs:hover,
.bs:focus,
.bs:active,
.bs.active,
.bsh:hover {
    /*box-shadow: 0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1);*/
}


/* widths */
.w-1 { width: 1%;}
.w-5 { width: 5%;}
.w-10 { width: 10%;}
.w-15 { width: 15%;}
.w-20 { width: 20%;}
.w-30 { width: 30%;}
.w-35 { width: 35%;}
.w-40 { width: 40%;}
.w-45 { width: 45%;}
.w-55 { width: 55%;}
.w-60 { width: 60%;}
.w-65 { width: 65%;}
.w-70 { width: 70%;}
.w-80 { width: 80%;}
.w-85 { width: 85%;}
.w-90 { width: 90%;}
.w-95 { width: 95%;}




@media (max-width: 1400px) { 
    
}


@media (max-width: 575.98px) { 
    .subscribe-form {
        padding-left: 0 !important;
        margin-top: 2rem;
    }
    .subscribe-desc br {
        display: none;
    }
    .social-section .row div:not(:first-child) img {
        margin-top: 4rem !important;
    }
}

