/*#region ----------------- X) General */
/* cyrillic-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  src: url(https://www.bayrock.co/files/website/fonts/Lato-Regular.woff);
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  src: url(https://www.bayrock.co/files/website/fonts/Lato-Bold.woff);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: Lato !important;
  font-weight: 300;
  direction: ltr;
  margin: 0;
  background-color: #fff;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-family: Raleway;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 400;
}

h5 {
  font-size: 1.25rem;
  font-weight: 400;
}

h6 {
  font-size: 1rem;
  font-weight: 400;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-size: 1rem;
  font-weight: 300;
}

input,
textarea,
strong,
span,
p {
  font-family: Roboto;
}

b,
strong {
  font-weight: bolder;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #7e7d82;
  color: white;
}

::selection {
  background-color: #7e7d82;
  color: white;
}

.fixedposition {
  overflow: hidden;
  padding-right: 17px;
}

.fi {
  display: inline-block !important;
  line-height: 0 !important;
}

/*#endregion -------------- X) General */
/*#region ----------------- Animation */
.smooth-anim-3s {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@-webkit-keyframes scaleIn {
  from {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes scaleOut {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
}

@keyframes scaleOut {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes swipeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes swipeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes swipeupsmall {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes swipeupsmall {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes swipeRightsmall {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swipeRightsmall {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes swipeLeftsmall {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swipeLeftsmall {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes rotatebg {
  from {
    -webkit-transform: translate(50%, -50%) rotate(0);
    transform: translate(50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(50%, -50%) rotate(360deg);
    transform: translate(50%, -50%) rotate(360deg);
  }
}

@keyframes rotatebg {
  from {
    -webkit-transform: translate(50%, -50%) rotate(0);
    transform: translate(50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(50%, -50%) rotate(360deg);
    transform: translate(50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(126, 125, 130, 0.1), 0 0 0 0 rgba(126, 125, 130, 0.1);
    box-shadow: 0 0 0 0 rgba(126, 125, 130, 0.1), 0 0 0 0 rgba(126, 125, 130, 0.1);
  }
  40% {
    -webkit-box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 0 rgba(126, 125, 130, 0.1);
    box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 0 rgba(126, 125, 130, 0.1);
  }
  80% {
    -webkit-box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
    box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
    box-shadow: 0 0 0 0 rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(126, 125, 130, 0.1), 0 0 0 0 rgba(126, 125, 130, 0.1);
    box-shadow: 0 0 0 0 rgba(126, 125, 130, 0.1), 0 0 0 0 rgba(126, 125, 130, 0.1);
  }
  40% {
    -webkit-box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 0 rgba(126, 125, 130, 0.1);
    box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 0 rgba(126, 125, 130, 0.1);
  }
  80% {
    -webkit-box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
    box-shadow: 0 0 0 10px rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
    box-shadow: 0 0 0 0 rgba(126, 125, 130, 0), 0 0 0 10px rgba(126, 125, 130, 0);
  }
}

@-webkit-keyframes dropanim {
  from {
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  to {
    opacity: 0;
    width: 120px;
    height: 120px;
  }
}

@keyframes dropanim {
  from {
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  to {
    opacity: 0;
    width: 120px;
    height: 120px;
  }
}

/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  font-size: 16px;
  padding: 0.7rem 1.2rem;
  border-radius: 0;
  border: 1px solid transparent;
  min-width: 100px;
  font-family: Roboto !important;
}

.btn:hover, .btn:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(44, 53, 68, 0.3) !important;
  box-shadow: 0 0 0 0.25rem rgba(44, 53, 68, 0.3) !important;
}

.btn .fi {
  position: relative;
  top: 2px;
}

.icon-right .fi {
  margin-left: 10px;
}

.icon-left .fi {
  margin-right: 10px;
}

.btn-primary {
  background-color: #2c3544;
}

.btn-primary:hover, .btn-primary:focus {
  border-color: transparent;
  background-color: #1c222b;
}

.btn-primary-outline {
  background-color: transparent;
  border-color: #2c3544;
  color: #2c3544;
}

.btn-side-collapse {
  width: 100%;
  text-align: left;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #00c4b6;
  background-color: #f8fafb;
  border: none;
  padding: 0.5rem 0 0.5rem 0.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-side-collapse::before {
  content: "\f373";
  font-family: "uicons-regular-rounded";
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 3px;
  color: #00c4b6;
}

.btn-side-collapse.collapsed {
  color: #182b49;
}

.btn-side-collapse.collapsed::before {
  content: "\f3b8";
  color: #616d7d;
}

.btn-side-collapse:hover {
  color: #00c4b6;
}

.btn-collapse {
  border: none;
  background-color: #f8fafb;
  width: 100%;
  height: 50px;
  text-align: left;
  padding: 0 10px;
  position: relative;
}

.btn-collapse .title {
  font-size: 14px;
  font-weight: 600;
  color: #182b49;
}

.btn-collapse .title .fi {
  position: relative;
  top: 4px;
  margin-left: 5px;
  color: #00c4b6;
  font-size: 20px;
  line-height: 0;
}

.btn-collapse .icon {
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #a0a7b1;
}

.btn-collapse:hover {
  color: #7e7d82;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn-collapse.collapsed .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/*#region ----------------- Buttons */
/*#region ----------------- Navbar */
#header .top-header {
  position: relative;
  background-color: white;
}

#header .top-header::before {
  }

#header .top-header .nav-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 600px 1fr;
  grid-template-columns: 1fr 600px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

#header .bottom-header {
  background-color: #2c3544;
}

#header .bottom-header .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#header .nav-logo a {
  width: 140px;
  display: block;
}

#header .nav-logo a img {
  width: 100%;
}

#header .social-box {
  text-align: right;
}

#header .social-box a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 48px;
  grid-template-columns: auto 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .social-box .text h4 {
  font-size: 13px;
  font-weight: 400;
  color: #616d7d;
  margin-bottom: 3px;
}

#header .social-box .text h6 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  color: #182b49;
}

#header .social-box .text h6:hover {
  color: #00c4b6;
}

#header .social-box .icon {
  font-size: 24px;
  color: #616d7d;
}

#header .nav-links {
  height: 100%;
}

#header .nav-links .mobile-menu {
  display: none;
  height: 100%;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#header .nav-links .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
}

#header .nav-links .menu-item {
  height: 100%;
  position: relative;
}

#header .nav-links .menu-item:hover .sub-menu-list {
  display: block;
}

#header .nav-links .menu-item.active .link {
  background-color: #00c4b6;
  color: white;
  padding: 20px 30px;
}

#header .nav-links .menu-item.active .link .fi {
  color: white;
  margin-right: 10px;
}

#header .nav-links .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 20px 20px 30px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#header .nav-links .link .fi {
  margin-right: 5px;
  font-size: 16px;
  color: #182b49;
}

#header .nav-links .link:hover {
  color: #00c4b6;
}

#header .nav-links .link:hover .fi {
  color: #2c3544;
}

#header .nav-links .sub-menu-list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  -webkit-box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  border-radius: 0;
  z-index: 100;
}

#header .nav-links .sub-menu-item {
  min-width: 250px;
  position: relative;
}

#header .nav-links .sub-menu-item a {
  display: block;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #182b49;
  position: relative;
}

#header .nav-links .sub-menu-item a .fi {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #a0a7b1;
}

#header .nav-links .sub-menu-item a:hover {
  color: #00c4b6;
}

#header .nav-links .sub-menu-item a:hover .fi {
  color: #2c3544;
}

#header .nav-links .sub-menu-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 90%;
  top: 0;
  min-width: 250px;
  background-color: white;
  -webkit-box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#header .nav-links .sub-menu-item:hover ul {
  visibility: visible;
  opacity: 1;
  right: 100%;
}

#header .nav-socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header .nav-socials ul li {
  margin-left: 10px;
}

#header .nav-socials ul li a {
  width: 28px;
  display: block;
}

#header .nav-socials ul li svg {
  fill: white;
  width: 100%;
}

#header .nav-socials ul li:hover svg {
  fill: #00c4b6;
}

#header .mobile-links {
  display: none;
}

#desktop-search-content .search-inputgroup {
  position: relative;
}

#desktop-search-content .search-inputgroup input {
  width: 100%;
  height: 44px;
  border: 1px solid #d1d1d3;
  border-radius: 0;
  padding: 2px 70px 2px 20px;
  background-color: white;
  color: #182b49;
}

#desktop-search-content .btn-clear {
  position: absolute;
  right: 44px;
  top: 0;
  width: 30px;
  height: 44px;
  font-size: 18px;
  color: #616d7d;
  background-color: transparent;
  border: none;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#desktop-search-content .btn-clear.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#desktop-search-content .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background-color: #2c3544;
  border: none;
  font-size: 20px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#desktop-search-content .btn-searchback {
  position: absolute;
  right: 5px;
  top: 4px;
  width: 40px;
  height: 40px;
  background-color: #616d7d;
  border: none;
  font-size: 20px;
  color: white;
  border-radius: 0;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#desktop-search-content .btn-mobile-search {
  width: 40px;
  height: 40px;
  background-color: #efefef;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  margin-left: auto;
  color: #182b49;
}

#desktop-search-content .search-content {
  position: relative;
}

#desktop-search-content .result {
  padding: 5px;
  display: none;
  background-color: white;
  -webkit-box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  border-radius: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
}

#desktop-search-content .result.active {
  display: block;
}

#desktop-search-content .result ul {
  max-height: 380px;
  overflow-y: auto;
}

#desktop-search-content .result ul li a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35px auto;
  grid-template-columns: 35px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  color: #182b49;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
}

#desktop-search-content .result ul li .fi {
  color: #a0a7b1;
  font-size: 16px;
  line-height: 0;
  opacity: 0.5;
}

#desktop-search-content .result ul li:hover a {
  color: #00c4b6;
}

#desktop-search-content .result ul li:hover .fi {
  color: #2c3544;
  opacity: 1;
}

.btn-mobile-menu {
  background-color: #00c4b6;
  color: white;
  width: 42px;
  height: 42px;
  font-size: 25px;
  padding: 0;
  border: none;
  margin-left: 25px;
}

.btn-mobile-menu .fi {
  position: relative;
  top: 6px;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  left: -300px;
  height: 100vh;
  width: 300px;
  z-index: 2002;
  background: #fff;
  -webkit-box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

#sidebar-menu.active {
  left: 0;
  opacity: 1;
}

#sidebar-menu .sidebar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  margin-bottom: 1.5rem;
}

#sidebar-menu .sidebar-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2c3544;
  z-index: -1;
}

#sidebar-menu .sidebar-header .sidebar-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu {
  width: 45px;
  height: 45px;
  color: #a0a7b1;
  background-color: transparent;
  border: none;
  padding: 0;
}

#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu .fi {
  font-size: 24px;
  position: relative;
  top: 4px;
}

#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu:hover {
  color: white;
}

#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
}

#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 100px;
}

#sidebar-menu .sidebar-header .sidebar-logo a span {
  font-size: 16px;
  font-weight: 500;
  color: #182b49;
}

#sidebar-menu .category-list {
  display: none;
}

#sidebar-menu .category-list .item a {
  padding: 10px 10px 10px 24px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #182b49;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: Roboto !important;
}

#sidebar-menu .category-list .item a .fi {
  position: absolute;
  right: 20px;
  color: #7e7d82;
}

#sidebar-menu .category-list .item a:hover {
  color: #00c4b6;
  padding-right: 30px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#sidebar-menu .collapse-item {
  position: relative;
}

#sidebar-menu .collapse-item .btn {
  width: 100%;
  padding: 12px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  background-color: white;
  border: none;
  color: #2c3544;
}

#sidebar-menu .collapse-item .btn:hover, #sidebar-menu .collapse-item .btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#sidebar-menu .collapse-item .btn .icon {
  position: absolute;
  right: 21px;
  top: 14px;
  color: #2c3544;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#sidebar-menu .collapse-item .btn .icon .fi {
  font-size: 16px;
}

#sidebar-menu .collapse-item .btn.collapsed {
  color: #182b49;
}

#sidebar-menu .collapse-item .btn.collapsed .icon {
  right: 20px;
  top: 14px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  color: #616d7d;
}

#sidebar-menu .collapse-item .card {
  padding: 15px 15px 15px 24px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #d1d1d3;
  background-color: rgba(44, 53, 68, 0.1);
}

#sidebar-menu .collapse-item .card ul li:hover .name {
  color: #00c4b6;
}

#sidebar-menu .collapse-item .card ul li:hover .fi {
  color: #00c4b6;
}

#sidebar-menu .collapse-item .card ul li a {
  display: block;
  padding: 6px 0;
}

#sidebar-menu .collapse-item .card ul li .name {
  font-size: 16px;
  font-weight: 400;
  color: #182b49;
  font-family: Roboto !important;
}

#sidebar-menu .collapse-item .card ul li .desc {
  margin-right: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #a0a7b1;
}

#sidebar-menu .collapse-item .card ul li .fi {
  font-size: 18px;
  position: relative;
  top: 5px;
  margin-left: 10px;
}

.overlay-back {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2001;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.overlay-back.active {
  display: block;
  opacity: 1;
}

@media (max-width: 1400px) {
  #header .top-header .nav-inner {
    -ms-grid-columns: 1fr 500px 1fr;
    grid-template-columns: 1fr 500px 1fr;
  }
}

@media (max-width: 1199px) {
  #header .top-header .nav-inner {
    -ms-grid-columns: 1fr 400px 1fr;
    grid-template-columns: 1fr 400px 1fr;
  }
}

@media (max-width: 992px) {
  #header .top-header::before {
    width: 20px;
  }
  #header .top-header .nav-inner {
    -ms-grid-columns: 1fr 400px 40px;
    grid-template-columns: 1fr 400px 40px;
  }
  #header .nav-logo {
    padding-left: 25px;
  }
  #header .nav-logo a {
    width: 120px;
  }
  #header .social-box a {
    text-align: right;
  }
  #header .social-box .text {
    display: none;
  }
  #header .social-box .icon {
    width: 40px;
    height: 40px;
    background-color: #efefef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #182b49;
  }
  #header .nav-links {
    padding-left: 25px;
  }
  #header .nav-links .link {
    padding: 15px 15px 15px 20px;
  }
  #header .nav-links .menu-item.active .link {
    padding: 15px 20px;
  }
  #header .nav-socials ul li a {
    width: 22px;
  }
  #header .nav-socials ul li svg {
    width: 100%;
  }
  #desktop-search-content {
    padding-right: 12px;
  }
  #sidebar-menu .category-list {
    display: block;
  }
}

@media (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  #header .top-header::before {
    height: 48px;
  }
  #header .top-header .nav-inner {
    -ms-grid-columns: 1fr 60px 40px;
    grid-template-columns: 1fr 60px 40px;
    padding: 10px 0;
  }
  #header .nav-links {
    display: none;
  }
  #header .mobile-links {
    display: block;
  }
  #desktop-search-content {
    padding-left: 10px;
  }
  #desktop-search-content .search-content {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: calc(100% - 8px);
    height: 48px;
    z-index: 100;
    display: none;
  }
  #desktop-search-content .search-content.active {
    display: block;
  }
  #desktop-search-content .btn-search {
    right: 50px;
    top: 3px;
    background-color: transparent;
    color: #2c3544;
  }
  #desktop-search-content .btn-clear {
    right: 92px;
    top: 4px;
  }
  #desktop-search-content .btn-searchback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #desktop-search-content .search-inputgroup input {
    height: 48px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #efefef;
    padding-right: 130px;
  }
  #desktop-search-content .btn-mobile-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 575px) {
  #sidebar-menu .sidebar-sign {
    display: block;
  }
}

@media (max-width: 300px) {
  #sidebar-menu {
    width: 100%;
    right: -300px;
  }
}

/*#region ----------------- Navbar */
/*#region ----------------- Carousel */
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-family: "uicons-regular-rounded" !important;
}

.swiper .swiper-button-next::after {
  content: "\f120";
}

.swiper .swiper-button-prev::after {
  content: "\f11f";
}

.swiper-index-wrapper .swiper-slide .item a {
  display: block;
}

.swiper-index-wrapper .swiper-slide .item img {
  width: 100%;
}

.swiper-index-wrapper .swiper-button-next,
.swiper-index-wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border: 1px solid white;
}

.swiper-index-wrapper .swiper-button-next::after,
.swiper-index-wrapper .swiper-button-prev::after {
  font-size: 28px;
  color: white;
}

.swiper-index-wrapper .swiper-button-next {
  bottom: 30px;
  left: 170px;
  top: unset;
}

.swiper-index-wrapper .swiper-button-prev {
  bottom: 30px;
  left: 120px;
  top: unset;
}

.swiper-index-wrapper .swiper-pagination-bullets {
  width: auto !important;
  bottom: 38px !important;
  right: 120px;
  left: unset !important;
}

.swiper-index-wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid white;
  opacity: 1;
}

.swiper-index-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}

.swiper-products .swiper-wrapper {
  padding-top: 20px;
  padding-bottom: 4rem;
}

.swiper-products .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #a0a7b1;
  opacity: 1;
}

.swiper-products .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #a0a7b1;
}

.swiper-blogs .swiper-wrapper {
  padding-top: 20px;
  padding-bottom: 2rem;
}

.swiper-blogs .swiper-pagination-bullets {
  bottom: 0 !important;
}

.swiper-blogs .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #a0a7b1;
  opacity: 1;
}

.swiper-blogs .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #a0a7b1;
}

.swiper-mini-products .swiper-wrapper {
  padding-bottom: 2.2rem;
}

.swiper-mini-products .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #a0a7b1;
  opacity: 1;
}

.swiper-mini-products .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #a0a7b1;
}

.swiper-details-preview .swiper-pagination-bullets {
  bottom: 0 !important;
}

.swiper-details-thumb .swiper-wrapper {
  padding-bottom: 2px;
}

@media (max-width: 1199px) {
  .swiper-index-wrapper .swiper-pagination-bullets {
    right: 80px;
  }
  .swiper-index-wrapper .swiper-button-prev {
    left: 80px;
  }
  .swiper-index-wrapper .swiper-button-next {
    left: 130px;
  }
}

@media (max-width: 992px) {
  .swiper-index-wrapper .swiper-pagination-bullets {
    right: 60px;
    bottom: 28px !important;
  }
  .swiper-index-wrapper .swiper-button-prev {
    left: 60px;
    bottom: 20px;
  }
  .swiper-index-wrapper .swiper-button-next {
    left: 100px;
    bottom: 20px;
  }
  .swiper-index-wrapper .swiper-button-next,
  .swiper-index-wrapper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .swiper-index-wrapper .swiper-button-next::after,
  .swiper-index-wrapper .swiper-button-prev::after {
    font-size: 24px;
  }
  .swiper-index-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .swiper-index-wrapper {
    margin-top: 109px;
  }
  .swiper-index-wrapper .swiper-pagination-bullets {
    right: 30px;
    bottom: 24px !important;
  }
  .swiper-index-wrapper .swiper-button-prev {
    left: 30px;
  }
  .swiper-index-wrapper .swiper-button-next {
    left: 70px;
  }
  .swiper-details-preview .swiper-wrapper {
    padding-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .swiper-index-wrapper .swiper-pagination-bullets {
    right: 10px;
    bottom: 10px !important;
  }
  .swiper-index-wrapper .swiper-button-prev {
    left: 10px;
  }
  .swiper-index-wrapper .swiper-button-next {
    left: 40px;
  }
  .swiper-index-wrapper .swiper-button-next,
  .swiper-index-wrapper .swiper-button-prev {
    width: 20px;
    height: 20px;
  }
  .swiper-index-wrapper .swiper-button-next::after,
  .swiper-index-wrapper .swiper-button-prev::after {
    font-size: 16px;
  }
}

/*#region ----------------- Carousel */
/*#region ----------------- Category */
.category-index-section {
  margin: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.category-index-section::before {
  content: "";
  position: absolute;
  top: 25%;
  left: -20px;
  width: 110px;
  height: 104px;
  /*
  background-image: url(../images/shapes/shape-1.svg);
  */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.2;
  z-index: -1;
}

.category-index-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -20px;
  width: 110px;
  height: 94px;
  /*
  background-image: url(../images/shapes/shape-2.svg);
  */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.2;
  z-index: -1;
}

.category-index-section .section-inner {
  width: 900px;
  margin: 0 auto;
}

.card-category {
  margin-bottom: 1.5rem;
}

.card-category .card-inner {
  display: block;
  text-align: center;
}

.card-category .thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border: 1px solid #d1d1d3;
  padding: 15px;
  background-color: white;
}

.card-category .thumb img {
  width: 100%;
}

.card-category h2 {
  font-size: 14px;
  font-weight: 600;
  color: #182b49;
  margin-bottom: 0;
  margin-top: 1rem;
}

.card-category:hover .thumb {
  border-color: #00c4b6;
}

.card-category:hover h2 {
  color: #00c4b6;
}

.other-category-perfume {
  margin: 60px 0;
}

.card-category-image {
  margin: 15px 0;
}

.card-category-image .card-inner {
  display: block;
  position: relative;
}

.card-category-image .image-content img {
  width: 100%;
}

.card-category-image .text-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 10;
}

.card-category-image .text-info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: -1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-category-image .text-info h2 {
  color: white;
}

.card-category-image .text-info p {
  color: white;
}

.card-category-image .text-info p .fi {
  margin-left: 5px;
  position: relative;
  top: 3px;
}

.card-category-image:hover .text-info::before {
  height: 100%;
}

.card-category-image:hover .text-info p .fi {
  left: 5px;
}

@media (max-width: 1199px) {
  .card-category-image .text-info h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .category-index-section {
    margin: 60px 0;
  }
  .category-index-section .section-inner {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .card-category .thumb {
    width: 90px;
    height: 90px;
  }
}

/*#region ----------------- Category */
/*#region ----------------- Cards Styles */
.card-product .card-inner {
  border: 1px solid #d1d1d3;
  display: block;
  padding: 5px;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card-product .image-content img {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-product .info {
  text-align: center;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.card-product .info .name {
  font-size: 16px;
  color: #182b49;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-product .info .smell {
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-product .new-product {
  position: absolute;
  top: -14px;
  left: 30px;
  background-color: #00c4b6;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 8px;
  color: white;
}

.card-product .new-product::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #00756d transparent;
}

.card-product:hover .image-content img {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.card-product:hover .info .name {
  color: #00c4b6;
}

.card-property {
  padding: 0 20px;
}

.card-property .card-inner {
  text-align: center;
}

.card-property .icon {
  width: 70px;
  margin: 0 auto 1rem auto;
}

.card-property .icon svg {
  fill: #00c4b6;
  width: 100%;
}

.card-property .info h3 {
  font-size: 16px;
  color: white;
}

.card-property .info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.card-blog {
  padding: 10px;
}

.card-blog .card-inner {
  display: block;
  width: 100%;
  height: 100%;
}

.card-blog .image-content {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  margin: 0;
}

.card-blog .image-content .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.card-blog .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.card-blog .info {
  margin-top: 1rem;
}

.card-blog .info .date {
  font-size: 13px;
  color: #616d7d;
  margin-bottom: 10px;
}

.card-blog .info .title {
  font-size: 18px;
  line-height: 28px;
  color: #182b49;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.card-blog .info p {
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.card-blog .info .read-more h6 {
  color: #00c4b6;
  font-weight: 600;
  font-size: 14px;
}

.card-blog .info .read-more .fi {
  margin-left: 5px;
  position: relative;
  top: 3px;
}

.card-blog.type-2 {
  margin-bottom: 2rem;
}

.card-blog.type-2 .image-content {
  height: 350px;
}

.card-blog.type-2 .info .date {
  font-size: 14px;
}

.card-blog.type-2 .info .title {
  font-size: 22px;
  line-height: 32px;
}

.card-blog.type-2 .info p {
  font-size: 16px;
}

.card-blog.type-3 {
  margin-bottom: 0;
}

.card-blog.type-3 .image-content {
  height: 400px;
}

.card-blog.type-3 .info .date {
  font-size: 14px;
}

.card-blog.type-3 .info .title {
  font-size: 22px;
  line-height: 32px;
  -webkit-line-clamp: unset;
  overflow: unset;
  -webkit-box-orient: unset;
  display: block;
}

.card-blog.type-3 .info p {
  font-size: 16px;
  -webkit-line-clamp: unset;
  overflow: unset;
  -webkit-box-orient: unset;
  display: block;
}

.card-mini-blog {
  margin-bottom: 10px;
}

.card-mini-blog .card-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px auto;
  grid-template-columns: 100px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid transparent;
  padding: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-mini-blog .image-content {
  width: 100%;
  height: 70px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  margin: 0;
}

.card-mini-blog .image-content .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.card-mini-blog .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.card-mini-blog .info {
  padding-left: 15px;
}

.card-mini-blog .info .name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
  color: #182b49;
}

.card-mini-blog:hover .card-inner {
  border-color: #d1d1d3;
}

.card-mini-products .card-inner {
  display: block;
  padding: 3px;
}

.card-mini-products .image-content {
  border: 1px solid #d1d1d3;
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-mini-products .image-content img {
  width: 100%;
}

.card-mini-products .image-content::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  color: white;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-color: rgba(44, 53, 68, 0.7);
}

.card-mini-products .info {
  text-align: center;
  margin-top: 1rem;
}

.card-mini-products .info h2 {
  font-family: Roboto !important;
  font-size: 15px;
  font-weight: 500;
  color: #182b49;
}

.card-mini-products:hover .image-content::before {
  content: "View Details";
  height: 100%;
}

.card-address {
  margin-bottom: 16px;
}

.card-address .card-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px auto;
  grid-template-columns: 50px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  -webkit-box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  box-shadow: 0 5px 30px rgba(10, 12, 15, 0.15);
  padding: 30px;
  border-radius: 0;
  min-height: 120px;
}

.card-address .icon {
  width: 50px;
  height: 50px;
  background-color: #2c3544;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-address .info {
  padding-left: 20px;
}

.card-address .info h6 {
  font-size: 16px;
  font-weight: 500;
  color: #182b49;
  margin-bottom: 0;
}

.card-address:hover .icon {
  background-color: #00c4b6;
}

@media (max-width: 1400px) {
  .card-mini-blog .card-inner {
    -ms-grid-columns: 90px auto;
    grid-template-columns: 90px auto;
  }
  .card-mini-blog .info .name {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 1199px) {
  .card-blog .image-content {
    height: 190px;
  }
  .card-blog.type-2 .image-content {
    height: 300px;
  }
  .card-blog.type-3 .image-content {
    height: 320px;
  }
}

@media (max-width: 992px) {
  .card-property {
    margin: 20px 0;
  }
  .card-blog .image-content {
    height: 230px;
  }
  .card-blog.type-2 .info .date {
    font-size: 13px;
  }
  .card-blog.type-2 .info .title {
    font-size: 18px;
    line-height: 27px;
  }
  .card-blog.type-2 .info p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .card-property .icon {
    width: 60px;
  }
  .card-property .info h3 {
    font-size: 14px;
  }
  .card-property .info p {
    font-size: 12px;
  }
  .card-blog .image-content {
    height: 200px;
  }
  .card-blog .info .date {
    font-size: 12px;
  }
  .card-blog .info .title {
    font-size: 16px;
    line-height: 25px;
  }
  .card-blog .info p {
    font-size: 13px;
    line-height: 20px;
  }
  .card-blog .info .read-more h6 {
    font-size: 13px;
  }
  .card-blog.type-2 {
    margin-bottom: 1.5rem;
  }
  .card-blog.type-3 .image-content {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .card-product .info .name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .card-product .info .smell {
    font-size: 12px;
  }
  .card-property .icon {
    width: 50px;
  }
  .card-property .info h3 {
    font-size: 13px;
  }
  .card-property .info p {
    font-size: 11px;
  }
  .card-blog .image-content {
    height: 170px;
  }
  .card-blog .info .title {
    font-size: 14px;
    line-height: 23px;
  }
  .card-blog .info p {
    font-size: 12px;
    line-height: 18px;
  }
  .card-blog .info .read-more h6 {
    font-size: 12px;
  }
  .card-blog.type-2 {
    margin-bottom: 1rem;
  }
  .card-blog.type-3 .image-content {
    height: 250px;
  }
}

@media (max-width: 450px) {
  .card-property .icon {
    width: 40px;
  }
  .card-property .info h3 {
    font-size: 12px;
  }
  .card-property .info p {
    display: none;
  }
}

@media (max-width: 350px) {
  .card-product .info .name {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .card-product .info .smell {
    font-size: 10px;
  }
}

/*#region ----------------- Cards Styles */
/*#region ----------------- Page Title */
.page-title {
  text-align: center;
  padding-bottom: 50px;
}

.page-title .title-inner {
  width: 70%;
  margin: 0 auto;
}

.page-title h1 {
  font-size: 2rem;
  color: #182b49;
  line-height: 42px;
  position: relative;
  display: block;
  text-transform: uppercase;
}

.page-title h1::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -15px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  width: 90px;
  height: 6px;
  background-color: #00c4b6;
}

.page-title p {
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
}

.page-title.text-left {
  text-align: left;
}

.page-title.text-left .title-inner {
  margin: 0 auto 0 0;
}

.page-title.text-left h1::before {
  -webkit-transform: unset;
  transform: unset;
  right: unset;
  left: 0;
}

@media (max-width: 992px) {
  .page-title .title-inner {
    width: 80%;
  }
  .page-title h1 {
    font-size: 1.3rem;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .page-title .title-inner {
    width: 90%;
  }
  .page-title h1 {
    font-size: 1.1rem;
    line-height: 32px;
  }
  .page-title p {
    font-size: 13px;
  }
}

/*#region ----------------- Page Title */
/*#region ----------------- Banner */
.banner-section {
  margin: 40px 0;
}

.banner-section .banner-item {
  margin: 12px 0;
}

.banner-section .banner-item a {
  display: block;
}

.banner-section .banner-item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 450px) {
  .banner-section .banner-item {
    margin: 5px 0;
  }
}

/*#region ----------------- Banner */
/*#region ----------------- About Us */
.about-us-index {
  margin: 100px 0;
}

.about-us-index .image-content .img-inner {
  width: 450px;
  margin: 0 auto;
  position: relative;
}

.about-us-index .image-content .img-inner::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #2c3544;
}

.about-us-index .image-content img {
  width: 100%;
}

.about-us-index .text-content p {
  margin-bottom: 6px;
  text-align: justify;
}

.about-us-index .text-content .buttons-group {
  margin-top: 1.5rem;
}

.about-us-index .text-content .buttons-group .btn {
  margin: 10px 15px 0 0;
}

.property-section {
  background-color: #2c3544;
  padding: 3rem 0;
}

.why-choose-us {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 300px 1fr;
  grid-template-columns: 1fr 300px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.why-choose-us .desc {
  padding-right: 40px;
}

.why-choose-us .desc p {
  text-align: justify;
}

.why-choose-us .image-content .img-inner img {
  width: 100%;
}

.why-choose-us .list-of-choose {
  padding-left: 40px;
}

.why-choose-us .list-of-choose ul li {
  font-size: 16px;
  font-weight: 400;
  color: #182b49;
  margin-bottom: 10px;
}

.why-choose-us .list-of-choose ul .fi {
  margin-right: 10px;
  color: #00c4b6;
  position: relative;
  top: 3px;
}

@media (max-width: 1400px) {
  .about-us-index .image-content .img-inner {
    width: 400px;
  }
}

@media (max-width: 1199px) {
  .about-us-index {
    margin: 90px 0;
  }
  .about-us-index .image-content .img-inner {
    width: 350px;
  }
  .about-us-index .page-title {
    padding-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .about-us-index {
    margin: 70px 0;
  }
  .about-us-index .image-content {
    margin-top: 3.5rem;
  }
  .why-choose-us {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-template-areas: "desc desc" "imageContent listChoose";
  }
  .why-choose-us .desc {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: desc;
    padding-right: 0;
  }
  .why-choose-us .image-content {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: imageContent;
  }
  .why-choose-us .list-of-choose {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: listChoose;
  }
}

@media (max-width: 575px) {
  .about-us-index {
    margin: 50px 0;
  }
  .about-us-index .image-content .img-inner {
    width: 85%;
  }
  .about-us-index .image-content .img-inner::before {
    left: -10px;
    top: -10px;
  }
  .property-section {
    padding: 2rem 0;
  }
  .why-choose-us {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-template-areas: "desc" "imageContent" "listChoose";
  }
  .why-choose-us .list-of-choose {
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 450px) {
  .about-us-index .text-content .buttons-group .btn {
    width: 100%;
  }
}

/*#region ----------------- About Us */
/*#region ----------------- Blogs */
.blogs-section {
  margin: 100px 0;
}

.blogs-section .side-title {
  font-size: 24px;
  font-weight: 700;
}

.blogs-section .side-inner {
  margin-top: 20px;
}

.blogs-section .side-blog {
  padding-right: 20px;
}

.blogs-section .products {
  margin-top: 40px;
}

.blogs-section .main-blog {
  padding-left: 50px;
  border-left: 1px solid #d1d1d3;
}

@media (max-width: 1400px) {
  .blogs-section .main-blog {
    padding-left: 30px;
  }
  .blogs-section .side-blog {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .blogs-section {
    margin: 80px 0;
  }
  .blogs-section .main-blog {
    padding-left: 0;
    border-left: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .blogs-section .main-blog .card-blog {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
  .blogs-section .main-blog .card-blog .image-content {
    height: 250px;
  }
  .blogs-section .side-blog {
    padding-right: 0;
  }
  .blogs-section .side-title {
    font-size: 20px;
  }
  .blogs-section .products .side-title {
    text-align: center;
  }
  .blogs-section .products .side-inner {
    width: 450px;
    margin: 2rem auto 0 auto;
  }
  .blogs-section .mypagination {
    border-bottom: 1px solid #d1d1d3;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .blogs-section {
    margin: 70px 0;
  }
  .blogs-section .main-blog {
    display: block;
  }
  .blogs-section .main-blog .card-blog {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }
  .blogs-section .main-blog .card-blog .image-content {
    height: 220px;
  }
  .blogs-section .side-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .blogs-section {
    margin: 60px 0;
  }
  .blogs-section .main-blog .card-blog .image-content {
    height: 180px;
  }
  .blogs-section .products .side-title {
    text-align: left;
  }
  .blogs-section .products .side-inner {
    width: 100%;
    margin: 1rem auto 0 auto;
  }
}

/*#region ----------------- Blogs */
/*#region ----------------- Footer */
#footer {
  background-color: #efefef;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 50px;
  top: -30px;
  width: 120px;
  height: 144px;
  /*
  background-image: url(../images/shapes/shape-3.svg);
  */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.15;
  z-index: 1;
}

#footer::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 0;
  width: 110px;
  height: 94px;
  /*
  background-image: url(../images/shapes/shape-2.svg);
  */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.15;
  z-index: 1;
}

#footer .logo {
  position: relative;
  z-index: 10;
}

#footer .logo .img-inner {
  width: 200px;
  margin: 0 auto;
  background-color: #2c3544;
  padding: 20px 40px;
  position: relative;
}

#footer .logo .img-inner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #3a495c;
  background: -webkit-gradient(linear, left top, right top, from(#3a495c), color-stop(33%, #3a495c), color-stop(33%, #7e7d82), color-stop(66%, #7e7d82), color-stop(66%, #00c4b6), to(#00c4b6));
  background: linear-gradient(90deg, #3a495c 0%, #3a495c 33%, #7e7d82 33%, #7e7d82 66%, #00c4b6 66%, #00c4b6 100%);
}

#footer .logo .desc {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}

#footer .logo .desc p {
  margin: 2rem 0;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  color: #182b49;
}

#footer .section-inner {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #a0a7b1;
  width: 90%;
  margin: 0 auto;
  z-index: 10;
}

#footer .links {
  margin-bottom: 2rem;
}

#footer .links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#footer .links ul li a {
  display: block;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #182b49;
}

#footer .links ul li a:hover {
  color: #00c4b6;
}

#footer .social-icons {
  margin-bottom: 2rem;
}

#footer .social-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#footer .social-icons ul li {
  margin-left: 10px;
}

#footer .social-icons ul li a {
  width: 28px;
  display: block;
}

#footer .social-icons ul li svg {
  fill: #616d7d;
  width: 100%;
}

#footer .social-icons ul li:hover svg {
  fill: #00c4b6;
}

#footer .copyright {
  background-color: #7e7d82;
  padding: 10px;
  text-align: center;
}

#footer .copyright p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  color: white;
}

@media (max-width: 992px) {
  #footer::before {
    width: 90px;
    height: 108px;
  }
  #footer::after {
    width: 90px;
    height: 78px;
  }
}

@media (max-width: 575px) {
  #footer::before {
    width: 60px;
    height: 72px;
    left: 10px;
  }
  #footer::after {
    width: 60px;
    height: 52px;
  }
  #footer .logo .img-inner {
    width: 160px;
    padding: 20px 35px;
  }
  #footer .logo .desc {
    width: 80%;
  }
  #footer .logo .desc p {
    font-size: 13px;
  }
  #footer .links ul li a {
    font-size: 14px;
  }
}

/*#region ----------------- Footer */
/*#region ----------------- Page Header */
.page-header .header-inner {
  background-image: url(../images/page-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 5rem 0;
}

.page-header .header-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.page-header .text-content {
  text-align: center;
  position: relative;
  z-index: 20;
  width: 850px;
  margin: 0 auto;
}

.page-header .text-content h1 {
  color: white;
  margin-bottom: 20px;
}

.page-header .mybreadcrumb ol {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

.page-header .mybreadcrumb .breadcrumb-item.active {
  color: #00c4b6;
}

.page-header .mybreadcrumb .breadcrumb-item a {
  color: white;
}

@media (max-width: 992px) {
  .page-header .header-inner {
    padding: 4rem 0;
  }
  .page-header .text-content {
    width: 90%;
  }
  .page-header .text-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    margin-top: 108px;
  }
  .page-header .header-inner {
    padding: 3rem 0;
  }
  .page-header .text-content h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 575px) {
  .page-header .text-content h1 {
    font-size: 1.2rem;
  }
}

/*#region ----------------- Page Header */
/*#region ----------------- Pagination */
.mypagination {
  margin: 3rem 0;
}

.mypagination .page-link {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3px;
  border-color: #d1d1d3;
  color: #616d7d;
  font-weight: 600;
  border-radius: 0 !important;
}

.mypagination .page-item.active .page-link {
  background-color: #2c3544;
  color: white;
}

@media (max-width: 768px) {
  .mypagination {
    margin: 2rem 0;
  }
}

/*#region ----------------- Pagination */
/*#region ----------------- Comments */
.comments-section {
  border-radius: 0;
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid #d1d1d3;
  background-color: white;
}

.comments-section .comments-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.comments-section .comments-title h4 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #182b49;
}

.comments-section .comments-title span {
  font-size: 14px;
  color: #a0a7b1;
  margin-right: 5px;
}

.comments-section .comments-title .fi {
  margin-right: 15px;
  position: relative;
  top: 4px;
  font-size: 22px;
  color: #616d7d;
}

.comments-section .comments-title .btn-primary {
  padding: 0.6rem 1.2rem;
}

.comments-section .comments-title .btn-primary .fi {
  color: white;
}

.comments-section .comments {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comments-section .comments .comment .comment-wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #d1d1d3;
}

.comments-section .comments .comment .comment-wrap .comment-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments-section .comments .comment .comment-wrap .comment-info .commenter-thumb {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #d1d1d3;
}

.comments-section .comments .comment .comment-wrap .comment-info .commenter-info {
  padding-left: 20px;
}

.comments-section .comments .comment .comment-wrap .comment-info .commenter-info span {
  display: block;
}

.comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.commenter-name {
  font-size: 15px;
  font-weight: 500;
  color: #182b49;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.date {
  font-size: 13px;
  color: #616d7d;
}

.comments-section .comments .comment .comment-wrap .comment-info .reply {
  margin-left: auto;
}

.comments-section .comments .comment .comment-wrap .comment-info .reply .reply-button {
  font-size: 13px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  text-transform: uppercase;
  color: white;
  background: #00c4b6;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 3px 10px;
}

.comments-section .comments .comment .comment-wrap .comment-info .reply .reply-button:hover {
  color: #00c4b6;
  border-color: #00c4b6;
  background-color: white;
}

.comments-section .comments .comment .comment-wrap .comment-info .reply .modal-body .comment-respond:before {
  height: 0;
  width: 0;
}

.comments-section .comments .comment .comment-wrap .comment-body {
  padding-top: 15px;
  color: #182b49;
}

.comments-section .comments .comment .comment-wrap .comment-body p {
  text-align: justify;
}

.comments-section .comments .comment .child-comment {
  margin: 30px 0 10px 40px;
}

.comments-section .comments .comment:last-child .comment-wrap {
  border-bottom: 0;
  padding-bottom: 0;
}

.comments-section .comments .comment:last-child .child-comment .comment:last-child .comment-wrap {
  border-bottom: 1px solid #d1d1d3;
  padding-bottom: 30px;
}

.comments-section .comments .comment + .comment {
  margin-top: 30px;
}

.comments-section .view-all {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  -webkit-text-decoration: underline dashed #00c4b6;
  text-decoration: underline dashed #00c4b6;
}

.comments-section .view-all a {
  color: #00c4b6;
}

.comment-respond .form-check {
  margin: 1rem 0;
}

.comment-respond .buttons-group {
  text-align: left;
}

.rating-emoji-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  height: auto;
  padding-bottom: 20px;
  width: 270px;
  margin: 0 auto;
  position: relative;
  background-color: white;
  border-radius: 20px;
}

.rating-emoji-content > input {
  display: none;
}

.rating-emoji-content > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 20px 5px 0 5px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rating-emoji-content > input:checked ~ label,
.rating-emoji-content > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating-emoji-content > input:not(:checked) ~ label:hover,
.rating-emoji-content > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating-1 {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper .emoji {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.emoji-wrapper .emoji > img {
  margin: 15px 0;
  width: 70px;
  height: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.rating-input-5:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.rating-input-4:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
}

.rating-input-3:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
}

.rating-input-2:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-400px);
  transform: translateY(-400px);
}

.rating-input-1:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-500px);
  transform: translateY(-500px);
}

@-webkit-keyframes opacityDiv {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes opacityDiv {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes opacityDivUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes opacityDivUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@media (max-width: 768px) {
  .comments-section .comments-title h4 {
    font-size: 17px;
  }
  .comments-section .comments-title .btn-primary {
    padding: 0.5rem 1.1rem;
    font-size: 14px;
  }
  .comments-section .comments .comment .comment-wrap {
    padding-bottom: 0.7rem;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.commenter-name {
    font-size: 15px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.date {
    font-size: 12px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-thumb {
    width: 48px;
    height: 48px;
  }
  .comments-section .comments .comment .comment-wrap .comment-body p {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 557px) {
  .comments-section .comments-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .comments-section .comments-title h4 {
    font-size: 16px;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .comments-section .comments-title .btn-primary {
    font-size: 13px;
    margin-left: auto;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info {
    padding-right: 10px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.commenter-name {
    font-size: 13px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-info span.date {
    font-size: 11px;
  }
  .comments-section .comments .comment .comment-wrap .comment-info .commenter-thumb {
    width: 42px;
    height: 42px;
  }
  .comments-section .comments .comment .comment-wrap .comment-body p {
    font-size: 13px;
    line-height: normal;
  }
  .comments-section .comments .comment .child-comment {
    margin: 20px 0 5px 20px;
  }
}

/*#endregion -------------- Comments */
/*#region ----------------- Products List */
.products-swiper-section {
  margin: 100px 0 60px 0;
}

.products-swiper-section .section-inner {
  position: relative;
}

.products-swiper-section.margin-bottom {
  margin-bottom: 100px;
}

#products-section {
  margin-top: 2rem;
}

#products-section .list-container {
  margin-bottom: 4rem;
}

#products-section .list-container .myrow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px auto;
  grid-template-columns: 300px auto;
}

#products-section .list-container .myrow .products-main {
  padding-left: 25px;
}

#products-section .list-container .myrow .products-main .main-inner {
  margin-top: 1rem;
}

#products-section .sort-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#products-section .sort-content .sort-title {
  font-size: 14px;
  font-weight: 500;
  color: #616d7d;
  margin-bottom: 0;
}

#products-section .sort-content .sort-title .fi {
  font-size: 20px;
  position: relative;
  top: 5px;
  margin-right: 10px;
  line-height: 0;
  color: #7e7d82;
}

#products-section .sort-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 20px;
}

#products-section .sort-content ul li {
  margin-left: 10px;
}

#products-section .sort-content ul li a {
  border-radius: 0;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
  padding: 5px 8px;
  text-transform: capitalize;
}

#products-section .sort-content ul li.active a {
  background-color: #00c4b6;
  color: white;
}

#products-section .sort-content .btn-sort,
#products-section .sort-content .btn-advanced-search {
  display: none;
  margin-right: 10px;
  background-color: white;
  border: 1px solid #7e7d82;
  border-radius: 0;
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #7e7d82;
  cursor: pointer;
}

#products-section .sort-content .btn-sort .fi,
#products-section .sort-content .btn-advanced-search .fi {
  margin-right: 8px;
  font-size: 20px;
  line-height: 0;
  position: relative;
  top: 3px;
}

#products-section .products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2rem;
  border-left: 1px solid #d1d1d3;
  border-top: 1px solid #d1d1d3;
}

#products-section .products-list .card-product {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
  padding-left: 0;
  margin-bottom: 0;
}

#products-section .products-list .card-product .card-inner {
  border: none;
  border-right: 1px solid #d1d1d3;
  border-bottom: 1px solid #d1d1d3;
}

.close-side-bar {
  text-align: right;
  padding-right: 20px;
  padding-top: 20px;
  background-color: #f8fafb;
  display: none;
}

.close-side-bar .btn-close-side-product {
  width: 38px;
  height: 38px;
  background-color: rgba(44, 53, 68, 0.1);
  color: #2c3544;
  border: none;
  margin-left: auto;
}

.side-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1020;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.side-overlay.active {
  display: block;
  opacity: 1;
}

.side-box {
  background-color: #f8fafb;
  padding: 20px 15px 10px;
  border-radius: 0;
  margin-bottom: 15px;
}

.side-box .box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.side-box .box-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #182b49;
  margin-bottom: 0;
}

.side-box .box-header .btn-clean-filter {
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #00c4b6;
  border: none;
}

.side-box.side-collapse {
  padding: 20px 15px;
}

.side-box.side-collapse .btn-collapse {
  padding: 0;
  height: 30px;
}

.side-box.side-collapse .btn-collapse .title {
  font-size: 18px;
  font-weight: 600;
  color: #182b49;
  font-family: Raleway !important;
}

.side-box.side-collapse .btn-collapse .icon {
  right: 0;
  top: 0;
}

.side-box .box-body {
  margin-top: 25px;
}

.side-box .box-body .title {
  font-size: 14px;
  font-weight: 500;
  color: #182b49;
  margin: 15px 0;
}

.side-box .box-body .filter-choosen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.side-box .box-body .filter-choosen li {
  font-size: 13px;
  font-weight: 400;
  color: #616d7d;
  background-color: white;
  border: 1px solid #d1d1d3;
  padding: 5px 10px 5px 6px;
  margin: 0 8px 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.side-box .box-body .filter-choosen li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  color: #2c3544;
  margin-left: 10px;
}

.side-box .box-body .filter-choosen li a .mdi {
  font-size: 16px;
  position: relative;
  top: 1px;
}

.side-box .box-body .filter-choosen li a:hover {
  color: #e62400;
}

.side-box .list-of-checkbox {
  margin-top: 1rem;
  max-height: 230px;
  overflow-y: auto;
  scrollbar-color: #2c3544 rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}

.side-box .list-of-checkbox::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.1);
}

.side-box .list-of-checkbox::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #2c3544;
}

.side-box .list-of-checkbox .form-check {
  margin-bottom: 10px;
  padding-left: 1.8rem;
  position: relative;
}

.side-box .list-of-checkbox .form-check .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-left: -1.8rem;
  margin-top: 0.1em;
  border-radius: 0;
}

.side-box .list-of-checkbox .form-check .form-check-input:hover, .side-box .list-of-checkbox .form-check .form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.side-box .list-of-checkbox .form-check .form-check-input:checked {
  background-color: #00c4b6;
  border-color: #00c4b6;
}

.side-box .list-of-checkbox .form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
  cursor: pointer;
}

.side-box .list-links {
  margin-top: 1rem;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-color: #fff;
  scrollbar-width: thin;
}

.side-box .list-links::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.side-box .list-links::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: silver;
}

.side-box .list-links li a {
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
  display: block;
  padding: 5px 10px;
}

.side-box .apply-filter {
  margin-top: 1rem;
}

.side-box .apply-filter .btn {
  width: 100%;
  padding: 0.5rem 1rem;
}

.side-box .sub-list-items ul li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #616d7d;
  padding: 0.4rem 0.4rem 0.4rem 2rem;
}

.side-box .sub-list-items ul li.active a {
  color: #00c4b6;
  padding-left: 2.3rem;
}

.side-box .sub-list-items ul li:hover > a {
  color: #00c4b6;
}

.main-title {
  color: #182b49;
  font-size: 22px;
  font-weight: 800;
  margin-top: 50px;
}

.sort-radio-group .form-check {
  margin-bottom: 10px;
}

.sort-radio-group .form-check .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #616d7d;
  cursor: pointer;
}

@media (max-width: 1400px) {
  #products-section .products-list .card-product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    width: 33.33%;
  }
}

@media (max-width: 992px) {
  #products-section {
    margin-top: 1rem;
  }
  #products-section .container {
    padding: 0;
  }
  #products-section .sort-content ul,
  #products-section .sort-content .sort-title {
    display: none;
  }
  #products-section .sort-content .btn-sort,
  #products-section .sort-content .btn-advanced-search {
    display: block;
  }
  #products-section .list-container .myrow {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  #products-section .list-container .myrow .products-side {
    position: fixed;
    left: -300px;
    top: 0;
    z-index: 1030;
    background-color: #efefef;
    height: 100%;
    width: 300px;
    overflow-y: auto;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #products-section .list-container .myrow .products-side.active {
    left: 0;
  }
  #products-section .list-container .myrow .products-main {
    padding: 0;
  }
  #products-section .products-list {
    margin-top: 1.3rem;
  }
  .side-box {
    margin-bottom: 2px;
  }
  .close-side-bar {
    display: block;
  }
  .products-swiper-section {
    margin-top: 90px;
  }
}

@media (max-width: 768px) {
  #products-section {
    margin-top: 7.5rem;
  }
  #products-section .products-list .card-product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
  #products-section .products-list .card-product .info .name {
    font-size: 14px;
  }
  #products-section .products-list .card-product .info .smell {
    font-size: 12px;
  }
  .products-swiper-section {
    margin-top: 70px;
  }
}

@media (max-width: 575px) {
  #products-section .products-list .card-product .info .name {
    font-size: 12px;
  }
  #products-section .products-list .card-product .info .smell {
    font-size: 10px;
  }
  .main-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 370px) {
  #products-section .sort-content .btn-sort,
  #products-section .sort-content .btn-advanced-search {
    padding: 5px;
    font-size: 13px;
    white-space: nowrap;
  }
  #products-section .sort-content .btn-sort .fi,
  #products-section .sort-content .btn-advanced-search .fi {
    font-size: 16px;
  }
}

/*#endregion -------------- Products List */
/*#region ----------------- Products */
#product-details {
  padding: 0 0 40px 0;
}

#product-details .details-layout {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 1fr;
  grid-template-columns: 400px 1fr;
}

#product-details .product-images {
  margin: 50px 0 30px 0;
  position: relative;
}

#product-details .product-images .image-preview {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

#product-details .product-images .image-preview .thumb {
  border: 1px solid #d1d1d3;
  width: 100%;
  position: relative;
}

#product-details .product-images .image-preview .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#product-details .product-images .image-preview .swiper-pagination {
  display: none;
}

#product-details .product-images .image-preview .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2c3544;
}

#product-details .product-images .image-thumb {
  margin-top: 1rem;
}

#product-details .product-images .image-thumb .thumb-inner {
  overflow: hidden;
  margin-right: 12px;
}

#product-details .product-images .image-thumb .thumb {
  width: 100%;
  position: relative;
  border: 1px solid #d1d1d3;
}

#product-details .product-images .image-thumb .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#product-details .product-images .image-thumb .swiper-pagination {
  display: none;
}

#product-details .product-info {
  margin: 50px 0 30px 0;
  padding: 0 0 0 30px;
}

#product-details .product-info .info-inner {
  margin-top: 1rem;
}

#product-details .product-info .info-inner .product-name {
  font-size: 28px;
  font-weight: 600;
  color: #182b49;
  margin-bottom: 1rem;
  line-height: 26px;
  text-transform: uppercase;
}

#product-details .product-info .review-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#product-details .product-info .review-info .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 5px 20px 5px 0;
}

#product-details .product-info .review-info .star-rating .star-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#product-details .product-info .review-info .star-rating .star-list li .fi {
  font-size: 18px;
  color: #ffd800;
  margin: 0 2px;
}

#product-details .product-info .review-info .star-rating span {
  font-size: 13px;
  font-weight: 400;
  margin-left: 5px;
  color: #a0a7b1;
}

#product-details .product-info .review-info .btn-review {
  font-size: 13px;
  font-weight: 400;
  color: #00c4b6;
}

#product-details .product-info .review-info .btn-review .fi {
  font-size: 16px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

#product-details .product-info .review-info .btn-review:hover {
  color: #7e7d82;
}

#product-details .product-info .review-info .review-comment,
#product-details .product-info .review-info .review-send-comment {
  margin: 5px 20px 5px 0;
}

#product-details .product-info .property {
  margin-top: 1.5rem;
}

#product-details .product-info .property .property-title {
  font-size: 18px;
  font-weight: 600;
  color: #182b49;
  margin-bottom: 10px;
}

#product-details .product-info .property ul li {
  font-size: 16px;
  font-weight: 500;
  color: #182b49;
  margin-bottom: 6px;
}

#product-details .product-info .property ul li span {
  color: #616d7d;
  margin-right: 10px;
}

#product-details .product-info .property ul li:last-child {
  margin-bottom: 0;
}

#product-details .product-info .description {
  margin-top: 1.5rem;
}

#product-details .product-info .description .description-title {
  font-size: 18px;
  font-weight: 600;
  color: #182b49;
  margin-bottom: 5px;
}

#product-details .product-info .description p {
  font-size: 15px;
  font-weight: 400;
  color: #616d7d;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-tabs-section {
  background-color: #f8fafb;
  padding: 50px 0;
}

.product-tabs-section .nav-tabs .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #616d7d;
  padding: 1.2rem 2.5rem;
  min-width: 190px;
  border: none;
  border-radius: 0;
  border-top: 5px solid transparent;
}

.product-tabs-section .nav-tabs .nav-link.active {
  font-weight: 700;
  color: white;
  border-color: #00c4b6;
  background-color: #2c3544;
}

.product-tabs-section .nav-tabs .nav-link .fi {
  margin-right: 8px;
  font-size: 20px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.product-tabs-section .tab-content {
  margin-top: 2rem;
}

.product-tabs-section .property ul li {
  padding: 10px 15px;
  border-radius: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px auto;
  grid-template-columns: 240px auto;
  background-color: white;
}

.product-tabs-section .property ul li:nth-child(odd) {
  background-color: #efefef;
}

.product-tabs-section .property ul li .name,
.product-tabs-section .property ul li .desc {
  font-size: 16px;
  font-weight: 400;
}

.product-tabs-section .property ul li .name {
  color: #616d7d;
}

.product-tabs-section .property ul li .desc {
  color: #182b49;
}

@media (max-width: 1199px) {
  #product-details .details-layout {
    -ms-grid-columns: 350px auto;
    grid-template-columns: 350px auto;
  }
}

@media (max-width: 768px) {
  #product-details {
    margin-top: 150px;
  }
  #product-details .details-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  #product-details .product-images {
    width: 400px;
    margin: 0 auto;
  }
  #product-details .product-images .image-preview .swiper-pagination {
    display: block;
  }
  #product-details .product-images .image-thumb {
    display: none;
    visibility: none;
  }
  #product-details .product-info {
    padding-left: 0;
    margin-bottom: 0;
  }
  #product-details .product-info .info-inner .product-name {
    font-size: 24px;
  }
  #product-details .product-info .review-info .star-rating .star-list li .fi {
    font-size: 14px;
  }
  #product-details .product-info .property .property-title {
    font-size: 16px;
  }
  #product-details .product-info .property ul li {
    font-size: 14px;
  }
  #product-details .product-info .description .description-title {
    font-size: 16px;
  }
  #product-details .product-info .description p {
    font-size: 14px;
  }
  .product-tabs-section .nav-tabs .nav-link {
    padding: 1rem 2rem;
    min-width: 160px;
  }
  .product-tabs-section .property ul li {
    -ms-grid-columns: 200px auto;
    grid-template-columns: 200px auto;
  }
  .product-tabs-section .property ul li .name,
  .product-tabs-section .property ul li .desc {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  #product-details .product-images {
    width: 90%;
  }
  #product-details .product-info .info-inner .product-name {
    font-size: 20px;
  }
  .product-tabs-section .nav-tabs .nav-link {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0.7rem 1.2rem;
    font-size: 14px;
  }
  .product-tabs-section .nav-tabs .nav-link .fi {
    font-size: 16px;
  }
  .product-tabs-section .property ul li {
    -ms-grid-columns: 120px auto;
    grid-template-columns: 120px auto;
  }
  .product-tabs-section .property ul li .name,
  .product-tabs-section .property ul li .desc {
    font-size: 12px;
  }
}

/*#region ----------------- Products */
/*#region ----------------- Modal */
.modal-content {
  border: none;
  border-radius: 0;
}

.modal-title {
  font-size: 16px;
  font-weight: 600;
}

.modal-title .fi {
  margin-right: 15px;
  position: relative;
  top: 5px;
  font-size: 20px;
  color: #a0a7b1;
}

.modal-body .message {
  font-size: 16px;
  line-height: 26px;
  text-align: right;
  margin-bottom: 1rem;
  color: #182b49;
}

.modal-body .img-inner img {
  width: 100%;
  border-radius: 5px;
}

.modal-footer.no-padding {
  border-top: 0;
  padding: 1.5rem 0 0 0;
}

.btn-close-2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 500;
  border: none;
}

.btn-close-2 .fi {
  position: relative;
  top: 4px;
}

.modal-video-preview video,
.modal-video-preview iframe {
  width: 100%;
}

/*#endregion -------------- Modal */
/*#region ----------------- Forms */
.inputgroup {
  position: relative;
  margin-bottom: 1.8rem;
}

.inputgroup label {
  font-size: 13px;
  font-weight: 400;
  color: #182b49;
  display: block;
  margin-bottom: 7px;
}

.inputgroup .input {
  width: 100%;
  height: 48px;
  border: 1px solid #d1d1d3;
  border-radius: 0;
  padding: 5px 15px 5px 48px;
  font-size: 14px;
  font-weight: 400;
  color: #182b49;
  text-align: left;
}

.inputgroup .input:hover {
  border-color: #a0a7b1;
}

.inputgroup .input:focus {
  border-color: #2c3544;
}

.inputgroup .input:focus ~ .icon {
  color: #2c3544;
}

.inputgroup .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #a0a7b1;
}

.inputgroup .icon i {
  font-size: 22px;
}

.inputgroup .alert {
  position: absolute;
  bottom: -22px;
  right: 0;
  font-size: 11px;
  font-weight: 400;
  padding: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.inputgroup .alert.error {
  color: #e62400;
}

.inputgroup .alert.success {
  color: #00b854;
}

.inputgroup .alert.active {
  visibility: visible;
}

.inputgroup.center .input {
  text-align: center;
  padding: 3px 15px 3px 15px;
}

.inputgroup.big-font .input {
  font-size: 18px;
}

.inputgroup.simple {
  margin-bottom: 1.2rem;
}

.inputgroup.simple .icon {
  top: 0;
}

.inputgroup.simple .icon i {
  top: 0;
}

.inputgroup.nopadding .input {
  padding: 3px 15px 3px 15px;
}

.textarea-group .textarea {
  width: 100%;
  border: 1px solid #d1d1d3;
  border-radius: 0;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #182b49;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.textarea-group .textarea:hover {
  border-color: #a0a7b1;
}

.textarea-group .textarea:focus {
  border-color: #2c3544;
}

@media (max-width: 768px) {
  .form-check.margin-top {
    margin: 10px 0 35px 0;
  }
  .file-upload-content {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .file-upload-content .help-tips {
    margin-top: 10px;
  }
}

/*#endregion -------------- Forms */
/*#region ----------------- About Us */
.master-page-section {
  margin: 80px 0;
}

.master-page-section .description {
  margin-bottom: 4rem;
}

.master-page-section .description p {
  text-align: justify;
  font-size: 17px;
  color: #182b49;
}

.master-page-section .description.text-center p {
  text-align: center;
}

.address-section-inner {
  width: 900px;
  margin: 0 auto;
}

.contact-form {
  margin-top: 4rem;
}

.contact-form .buttons-group {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .master-page-section {
    margin-top: 70px;
  }
  .address-section-inner {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .master-page-section {
    margin-top: 60px;
  }
}

@media (max-width: 575px) {
  .master-page-section {
    margin-top: 50px;
  }
}

/*#region ----------------- About Us */
/*#region ----------------- X - Catch Error */
.bred {
  border: 1px dashed red;
}

.bgreen {
  border: 1px dashed green;
}

.bblue {
  border: 1px dashed blue;
}

/*#endregion -------------- X - Catch Error */
