:root {
  /**
  @font family declaration
  */
  --af-ff-body: 'Gotham-Medium', sans-serif;
  --af-ff-heading: 'Gotham-Medium', sans-serif;
  --af-ff-gotham-medium: 'Gotham-Medium', sans-serif;
  --af-ff-gotham-light: 'Gotham-Light', sans-serif;
  --af-ff-gotham-extra-bold: 'Gotham-ExtraBold', sans-serif;
  /**
  @color declaration
  */
  --af-common-black: black;
  --af-common-white: white;
  --af-common-grey: #edebeb;
  --af-common-green-light: #f6f7f6;
  --af-common-brown: #C5A086;
  --af-common-brown-2: #735A57;
  --af-theme-primary: #602D03;
  --af-theme-secondary: #602D03;
  --af-theme-gray: #7b7b7b;
  --af-theme-secondary-2: #602D03;
  /**
  @font weight declaration
  */
  --af-fw-normal: normal;
  --af-fw-elight: 200;
  --af-fw-light: 300;
  --af-fw-regular: 400;
  --af-fw-medium: 500;
  --af-fw-sbold: 600;
  --af-fw-bold: 700;
  --af-fw-ebold: 800;
  --af-fw-black: 900;
  /**
  @font size declaration
  */
  --af-fs-body: 14px;
  --af-fs-p: 14px;
  --af-fs-h1: 40px;
  --af-fs-h2: 36px;
  --af-fs-h3: 24px;
  --af-fs-h4: 20px;
  --af-fs-h5: 16px;
  --af-fs-h6: 14px;
}

/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@font-face {
  font-family: "Gotham-Medium";
  src: url("/assets/fonts/Montserrat/Montserrat-Light.otf");
  font-display: swap;
}
@font-face {
  font-family: "Gotham-Light";
  src: url("/assets/fonts/Montserrat/Montserrat-Light.otf");
  font-display: swap;
}
@font-face {
  font-family: "Gotham-ExtraBold";
  src: url("/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--af-ff-body);
  font-size: var(--af-fz-body);
  font-weight: normal;
  color: var(--af-theme-black);
  line-height: 26px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 250ms ease;
}

a {
  text-decoration: none;
}

p {
  font-size: 15px;
  line-height: 1.3em;
  color: rgba(0, 0, 0, 0.7490196078);
  margin-bottom: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--af-ff-heading);
  color: var(--af-theme-primary);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ff-body {
  font-family: var(--af-ff-body) !important;
}

.ff-bold {
  font-family: var(--af-ff-bold) !important;
}

.ff-heading {
  font-family: var(--af-ff-heading) !important;
}

.ff-gotham-light {
  font-family: var(--af-ff-gotham-light) !important;
}

.ff-gotham-extra-bold {
  font-family: var(--af-ff-gotham-extra-bold) !important;
}

.fw-ebold {
  font-weight: var(--af-fw-ebold);
}

.text-primary {
  color: var(--af-theme-primary) !important;
}

.text-secondary {
  color: var(--af-theme-secondary) !important;
}

.text-gray {
  color: var(--af-theme-gray) !important;
}

.text-secondary-2 {
  color: var(--af-theme-secondary-2) !important;
}

.text-white {
  color: var(--af-common-white) !important;
}

.text-black {
  color: var(--af-common-black) !important;
}

.text-brown {
  color: var(--af-common-brown) !important;
}

.text-brown-2 {
  color: var(--af-common-brown-2) !important;
}

h1 {
  font-size: var(--af-fz-h1);
}

h2 {
  font-size: var(--af-fz-h2);
}

h3 {
  font-size: var(--af-fz-h3);
}

h4 {
  font-size: var(--af-fz-h4);
}

h5 {
  font-size: var(--af-fz-h5);
}

h6 {
  font-size: var(--af-fz-h6);
}

.fz-h1 {
  font-size: var(--af-fz-h1) !important;
}

.fz-h2 {
  font-size: var(--af-fz-h2) !important;
}

.fz-h3 {
  font-size: var(--af-fz-h3) !important;
}

.fz-h4 {
  font-size: var(--af-fz-h4) !important;
}

.fz-h5 {
  font-size: var(--af-fz-h5) !important;
}

.fz-h6 {
  font-size: var(--af-fz-h6) !important;
}

/*----------------------------------------
            Button
-----------------------------------------*/
.af-btn, .af-btn-white-outline, .af-btn-white, .af-btn-black-outline, .af-btn-black, .af-btn-secondary-outline, .af-btn-secondary, .af-btn-primary-outline, .af-btn-primary, .account_form button {
  display: inline-block;
  letter-spacing: normal;
  text-align: center;
  padding: 15px 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
  width: fit-content;
  font-size: 0.9em;
}
.af-btn-primary, .account_form button {
  background-color: var(--af-theme-primary);
  color: var(--af-common-white);
}
.af-btn-primary:hover, .account_form button:hover {
  color: var(--bd-common-black);
}
.af-btn-primary-outline {
  color: var(--af-theme-primary);
  border-color: var(--af-theme-primary);
  background-color: transparent;
  border: 1px solid var(--af-theme-primary);
}
.af-btn-primary-outline:hover {
  background-color: var(--af-theme-primary);
  color: white;
}
.af-btn-secondary {
  background-color: var(--af-theme-secondary);
  color: var(--af-common-white);
}
.af-btn-secondary:hover {
  color: var(--bd-common-black);
}
.af-btn-secondary-outline {
  color: var(--af-theme-secondary);
  border-color: var(--af-theme-secondary);
  background-color: transparent;
  border: 1px solid var(--af-theme-secondary);
}
.af-btn-secondary-outline:hover {
  background-color: var(--af-theme-secondary);
  color: white;
}
.af-btn-black {
  background-color: var(--af-common-black);
  color: var(--af-common-black);
}
.af-btn-black-outline {
  color: var(--af-common-black);
  border-color: var(--af-common-black);
  background-color: transparent;
  border: 1px solid var(--af-common-black);
}
.af-btn-white {
  background-color: var(--af-common-white);
  color: var(--af-common-white);
}
.af-btn-white-outline {
  color: var(--af-common-white);
  border-color: var(--af-common-white);
  background-color: transparent;
  border: 1px solid var(--af-common-white);
}

.button-no-style {
  padding: 0px;
  background-color: transparent;
  border: none;
  color: white;
  display: inline-flex;
}

button {
  border: none;
}

.account_form button {
  height: inherit;
}

/*----------------------------------------
            - Background color
-----------------------------------------*/
.af-bg-white {
  background: var(--af-common-white) !important;
}

.af-bg-black {
  background: var(--af-common-black) !important;
}

.af-bg-primary {
  background-color: var(--af-theme-primary) !important;
}

.af-bg-secondary {
  background-color: var(--af-theme-secondary) !important;
}

.af-bg-secondary-2 {
  background-color: var(--af-theme-secondary-2) !important;
}

.af-bg-grey {
  background-color: var(--af-common-grey) !important;
}

.af-bg-green-light {
  background-color: var(--af-common-green-light) !important;
}

.bg-style-1 {
  background-image: url("/assets/images/compressed/img-17.webp");
  background-repeat: no-repeat;
}
.bg-style-1--top {
  background-position: center 250%;
}
.bg-style-1--left {
  background-position: -175%;
}
.bg-style-1--right {
  background-position: 250%;
}

.bg-contain {
  background-size: cover;
}

.bg-rounded-1 {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}

/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/
.af-section__big-title {
  font-size: 60px;
  font-weight: 900;
}
.af-section__title {
  font-size: 54px;
  color: var(--af-common-white);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
}
.af-section__subtitle {
  font-weight: 300 !important;
  font-size: 26px;
  margin-bottom: 33px;
  font-family: var(--af-ff-gotham-extra-bold);
  font-weight: var(--af-fw-ebold);
  color: var(--af-theme-primary);
  text-transform: none;
  letter-spacing: normal;
}

/*----------------------------------------*/
/*               PRELOADER
/*----------------------------------------*/
#loading_aroma {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 999;
}
#loading_aroma.hide {
  display: none;
}
#loading_aroma img {
  width: 150px;
}

.section-container {
  padding: 70px 0;
}

.af-img-rounded {
  border-radius: 14px;
}

/*********************
        SPACING
**********************/
.pb-75 {
  margin-bottom: 75px;
}

.pr-28 {
  padding-right: 28px;
}

.pl-28 {
  padding-left: 28px;
}

@media (min-width: 768px) {
  .px-md-100 {
    padding-right: 100px;
    padding-left: 100px;
  }
  .px-md-120 {
    padding-right: 120px;
    padding-left: 120px;
  }
  .px-md-210 {
    padding-right: 210px;
    padding-left: 210px;
  }
}

.b-black-1-sld {
  border: 1px solid;
}
.br-12 {
  border-radius: 12px;
}
.br-7 {
  border-radius: 7px;
}
.br-8 {
  border-radius: 8px;
}

.form-control {
  padding: 15px 24px;
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.af-header__section {
  padding: 5px 0 !important;
}
.af-header__section .icon-header {
  font-size: 21px;
}
.af-header__section .icon-header.active, .af-header__section .icon-header:hover {
  font-weight: var(--af-fw-bold);
  color: var(--af-common-black);
}
.af-header__section .header_middle {
  padding-top: 5px;
}
.af-header__section .header_account_area {
  align-items: center;
}
.af-header__section .header_account_area .header_area_item {
  padding: 0 10px;
}
.af-header__section .header-form-i-search {
  border: none;
}
.af-header__section .header-form-i-search .btn-i-search {
  position: absolute;
  margin-top: 4px;
  margin-left: -39px;
  border: none;
  background-color: transparent;
}
.af-header__section .header-form-i-search input {
  border: none;
  background-color: rgba(167, 167, 167, 0.368627451);
  border-radius: 10px;
  padding: 6px 13px;
}
.af-header__section .cart_button {
  background: var(--af-theme-primary);
  border-color: var(--af-theme-primary);
  color: black;
}
.af-header__section .cart_button a:hover {
  background: var(--af-theme-primary);
  border-color: var(--af-theme-primary);
  color: #fff;
}
.af-header__delivry-offers {
  font-size: 12px;
  display: grid;
  align-content: center;
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}
.af-header__main_menu nav > ul {
  display: flex;
}
.af-header__main_menu nav > ul > li > a {
  white-space: nowrap;
  font-size: 16px;
  text-transform: none;
}
.af-header__main_menu nav > ul > li > a::after {
  content: "";
  position: absolute;
  width: 64%;
  transform: scaleX(0);
  height: 2px;
  bottom: 8px;
  left: 17px;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.af-header__main_menu nav > ul > li > a.active, .af-header__main_menu nav > ul > li > a:hover {
  font-weight: var(--af-fw-bold);
  color: var(--af-common-black);
}
.af-header__main_menu nav > ul > li > a.active:after, .af-header__main_menu nav > ul > li > a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header_top {
  padding-bottom: 0px;
  border: none;
}
.header_top .header-logo {
  width: 150px;
}

.header_middle {
  padding: 0px;
}

.main_header {
  padding: 0px !important;
}

.canvas_open .icon-menu {
  color: black;
}
.canvas_open a {
  border: none !important;
}
.canvas_open a:hover {
  color: var(--af-theme-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .canvas_open {
    right: 25px !important;
    top: 71px !important;
  }
}

.cart_info a {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  display: block;
  margin-bottom: 6px;
}

.banner-section {
  color: white;
  padding: 80px 0;
}
.banner-section .banner-title {
  font-size: 38px;
  font-weight: 800;
}
.banner-section .banner-subtitle {
  font-size: 16px;
}

/********************** 
        PRODUCT
***********************/
.product_thumb.product_thumb--shop a img {
  object-fit: cover;
}

.single_product .product_name {
  font-family: var(--af-ff-gotham-light);
  font-size: 14px;
  font-weight: 600;
}
.single_product:hover .add_to_cart {
  color: white;
  background-color: var(--af-theme-primary);
  opacity: 1;
  visibility: visible;
  width: 270px;
  height: 110%;
  left: -11px;
  top: 0px;
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .single_product:hover .add_to_cart {
    width: 372px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .single_product:hover .add_to_cart {
    height: 108px;
  }
}
.single_product:hover i {
  font-size: 28px;
}
.single_product:hover .action_links ul li a:hover {
  background: var(--af-theme-primary);
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.af-footer__section {
  padding: 60px 0;
  color: white;
}
.af-footer__section .footer-body .footer-action-item {
  font-weight: 200;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .af-footer__section {
    padding: 35px 54px;
  }
}
.af-footer__title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  font-family: "Gotham-ExtraBold";
}

#copyright-block span {
  font-size: 12px;
}

/*# sourceMappingURL=main.css.map */
