/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #333333;
  font-family: "Nunito", sans-serif;
  font-weight: normal;
}

a {
  color: #013879;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #013879;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 1rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  margin: 0 0 1.35rem 0;
  padding: 0;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-gray {
  color: #013879;
  background: #e3e4e6;
  border-color: #e3e4e6;
}

.btn-gray:focus,
.btn-gray:hover {
  color: #666666 !important;
  background: #e3e4e6;
  border-color: #e3e4e6;
}

.btn-pink {
  color: #ffffff;
  background: #ed6780;
  border-color: #ed6780;
}

.btn-pink:focus,
.btn-pink:hover {
  color: #ffffff;
  background: #ed6780;
  border-color: #ed6780;
}

.btn-warning {
  color: #fff;
  background: #c59f6e;
  border-color: #c59f6e;
}

.btn-warning:focus,
.btn-warning:hover {
  color: #fff;
  background: #a28156;
  border-color: #a28156;
}

.btn-carbon {
  color: #fff;
  background-color: #013879;
  border-color: #013879;
}

.btn-carbon:hover {
  color: #c1dcf1 !important;
  background-color: #013879;
  border-color: #013879;
}

.btn-check:focus + .btn-carbon,
.btn-carbon:focus {
  color: #fff;
  background-color: #013879;
  border-color: #013879;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-check:checked + .btn-carbon,
.btn-check:active + .btn-carbon,
.btn-carbon:active,
.btn-carbon.active,
.show > .btn-carbon.dropdown-toggle {
  color: #fff;
  background-color: #013879;
  border-color: #013879;
}

.btn-check:checked + .btn-carbon:focus,
.btn-check:active + .btn-carbon:focus,
.btn-carbon:active:focus,
.btn-carbon.active:focus,
.show > .btn-carbon.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-carbon:disabled,
.btn-carbon.disabled {
  color: #fff;
  background-color: #013879;
  border-color: #013879;
}

.btn-sm {
  border-radius: 1rem;
}

.btn {
  border-radius: 1.5rem;
}

.btn-lg {
  border-radius: 2rem;
}

.btn-white {
  background-color: #fff;
  border: 1px solid #ced4da;
}

.bg-carbon {
  background-color: #013879 !important;
}

.bg-carbon-sub {
  background-color: #495057 !important;
}

.bg-carbon-light {
  background: #ebf5f8 !important;
}

.bg-carbon-30 {
  background: #cee3fd !important;
}

.bg-title {
  background-position: center center;
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.bg-title::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

.text-carbon-sub {
  color: #495057;
}

.text-carbon {
  color: #013879;
}

.text-warning {
  color: #a28156 !important;
}

.rounded-pill-left {
  border-radius: 0;
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
}

.rounded-pill-right {
  border-radius: 0;
  border-top-right-radius: 50rem;
  border-bottom-right-radius: 50rem;
}

.rounded-10 {
  border-radius: 1rem !important;
}

.rounded-50 {
  border-radius: 50px !important;
}

.card-body {
  padding: 1.5rem;
}

.fs-small {
  font-size: 0.85rem;
}

.form-control {
  border-radius: 3rem;
}

.form-floating > .form-control {
  padding: 1rem 1.4rem;
}

.form-floating > label {
  padding: 1rem 1.5rem;
}

.fw-bold-1 {
  font-weight: 500;
}

.fw-bold-2 {
  font-weight: 600;
}

.fw-bold-3 {
  font-weight: 700;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c59f6e;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #495057;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#loading {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  background-color: #f1f1f1;
}

#loading .preloader-dot {
  width: 0;
  height: 0;
  border: 1px solid #013879;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  animation: preloader 3s ease infinite;
  -ms-animation: preloader 3s ease infinite;
  -moz-animation: preloader 3s ease infinite;
  -webkit-animation: preloader 3s ease infinite;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #d90000;
}

@-webkit-keyframes preloader {
  0% {
    border-width: 2px;
  }

  100% {
    border-width: 50px;
    opacity: 0;
  }
}

@-moz-keyframes preloader {
  0% {
    border-width: 2px;
  }

  100% {
    border-width: 50px;
    opacity: 0;
  }
}

@-ms-keyframes preloader {
  0% {
    border-width: 2px;
  }

  100% {
    border-width: 50px;
    opacity: 0;
  }
}

@-o-keyframes preloader {
  0% {
    border-width: 2px;
  }

  100% {
    border-width: 50px;
    opacity: 0;
  }
}

@keyframes preloader {
  0% {
    border-width: 2px;
  }

  100% {
    border-width: 50px;
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #ddd;
}

#header.header-transparent {
  background: transparent;
}

#header .logo {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
}

@media (max-width: 576px) {
  #header .logo img {
    max-height: 48px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.menu-box {
  background-color: #013879;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.navbar {
  padding: 0;
}

.navbar > ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar > ul > li {
  position: relative;
}

.navbar > ul > li > a,
.navbar > ul > li > a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px 15px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  border-right: 0.1rem solid #ddd;
  text-transform: uppercase;
}

.navbar > li:last-child > a {
  border-right: 0 solid #fff;
}

.navbar > ul > li > a i,
.navbar > ul > li > a:focus i {
  font-size: 1.25rem;
  line-height: 0;
}

.navbar > ul > li > a:hover,
.navbar > ul > li > .active,
.navbar > ul > li > .active:focus,
.navbar > ul > li:hover > a {
  color: #ffffff;
  position: relative;
}

.navbar > ul > li > .active::after,
.navbar > ul > li:hover > a::after {
  position: absolute;
  content: "";
  height: 5px;
  left: 10px;
  right: 10px;
  bottom: 0;
  background-color: rgba(var(--bs-white-rgb), 0.35);
}

.navbar .has-child .sub-menu {
  list-style: none;
  padding-left: 0;
  position: absolute;
  z-index: 2;
  background-color: #fff;
  min-width: 220px;
  padding: 10px 20px;
  border: 1px solid #ddd;
}

.navbar .has-child .sub-menu li .sub-link {
  color: #000;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.navbar .has-child .sub-menu li:last-child .sub-link {
  border-bottom: 0;
}

.navbar .has-child .sub-menu li .sub-link:hover {
  color: #013879;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  list-style: none;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  min-width: 280px;
}

.navbar .dropdown ul li {
  min-width: 280px;
  list-style: none;
}

.navbar .dropdown ul a {
  display: block;
  padding: 10px 20px;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: normal;
  border-bottom: 1px solid #f0f0f0;
}

.navbar .dropdown ul li:last-child a {
  border-bottom: 0;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #c59f6e;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  border-right: 0 !important;
}

.navbar-mobile .has-child .sub-menu {
  display: none;
}

.navbar-mobile > ul > li > .active::after,
.navbar-mobile > ul > li:hover > a::after {
  background-color: rgba(var(--bs-white-rgb), 0) !important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (max-width: 992px) {
  .menu-box {
    background-color: transparent;
  }

  .navbar > ul > li > a,
  .navbar > ul > li > a:focus {
    justify-content: center;
  }
}

.shopping-cart {
  position: relative;
}

.shopping-cart span {
  position: absolute;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #013879;
  font-size: 42px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.75);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 55px;
  left: 55px;
  padding: 1.5rem;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 1rem;
  background: #013879;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 1.35rem;
  color: #fff;
  justify-content: center;
  font-weight: 600;
  border-right: 0 solid #fff;
}

.navbar-mobile a .shopping-cart {
  display: block;
  margin-top: 1rem;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #c59f6e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 179px);
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  #hero {
    height: 360px;
  }
}

@media (max-width: 576px) {
  #hero {
    height: 180px;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  color: #013879;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators {
  margin-bottom: 1.5rem;
}

#hero .carousel-indicators [data-bs-target] {
  background-color: #013879;
}

#hero .carousel-indicators li {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #c59f6e;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #c59f6e;
}

/* Main Content
--------------------------------*/
.main-content img {
  border-radius: 1rem;
}

.main-content ul {
  list-style: none;
  padding-left: 0;
}

.main-content ul li {
  position: relative;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  padding-left: 1.75rem;
}

.main-content ul li:before {
  content: "\f26e";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  position: absolute;
  top: 0.25rem;
  left: -0.3rem;
  font-size: 1.75rem;
  line-height: 1;
}

/* News
--------------------------------*/
.new-icon {
  position: absolute;
  right: -5px;
  top: -5px;
}

.new-icon > img {
  width: 80px !important;
}
.lastest-news {
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  left: 50%;
}

.lastest-news img {
  height: 60px;
  width: auto;
}

.blog-right .blog-right-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.blog-right .blog-right-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-right .blog-right-item h6 a {
  color: #495057;
  font-weight: 500;
}

.blog-right .blog-right-item h6 a:hover {
  color: #c59f6e;
}

.news-list .news-item .card-title a {
  color: #333333;
}

.news-list .news-item .card-title a:hover {
  color: #c59f6e;
}

.page-item.active .page-link {
  background-color: #495057;
  border-color: #495057;
  color: #c59f6e;
}

.page-link,
.page-link:hover {
  color: #495057;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections feature
--------------------------------*/
#about-products .img-thumbnail {
  max-width: 500px;
  width: 100%;
}

#about-products .list-feature li {
  background: rgb(248, 189, 27);
  background: linear-gradient(
    90deg,
    rgba(248, 189, 27, 1) 0%,
    rgba(249, 214, 146, 1) 100%
  );
  border-top-left-radius: 900rem;
  border-bottom-right-radius: 900rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  color: #fff;
  padding: 0.25rem 1rem 0.25rem 3.75rem;
  height: 3rem;
  position: relative;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  #about-products .list-feature li {
    font-size: 0.95rem;
    line-height: 1.25;
  }
}

#about-products .list-feature li .icon-feature {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: -1.5rem;
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about-products .list-feature li .icon-feature img {
  width: auto;
  height: 100%;
}

/* Sections Buy Product
--------------------------------*/
#buy-product {
  position: relative;
}

.title-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #013879;
  color: #fff;
  border-radius: 3rem;
}

.title-button.title-button-absolute {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2.15rem;
  white-space: nowrap;
}

/* product list */
.product-list a:hover {
  color: #a28156;
}

/* Detail Product
--------------------------------*/
.nav-pills .nav-link {
  color: #495057;
  font-weight: 600;
  font-size: 15px;
  border-radius: 1.25rem;
  background: var(--bs-gray-200);
  text-transform: uppercase;
  font-weight: normal;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.nav-pills li:last-child .nav-link {
  margin-right: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #013879;
}

.tab-content .tab-content-icon {
  margin-bottom: 0.5rem;
  width: 48px;
}

@media (max-width: 576px) {
  .nav-pills {
    display: block;
    width: 100%;
  }

  .nav-pills .nav-link {
    margin-right: 0;
    display: block;
    width: 100%;
  }
}

.accordion-item:first-of-type {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: calc(1rem - 1px);
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(1rem - 1px);
  border-bottom-left-radius: calc(1rem - 1px);
}

.accordion-button {
  font-weight: 500;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #495057;
  background-color: #e9ecef;
  box-shadow: none;
}

.ft-link-box {
  color: #666;
  line-height: 1;
}

.ft-link-box .ft-link {
  display: inline-block;
}

.ft-link-box .img-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-bottom: 3px;
}

.ft-link-box .text-icon {
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
}

.ft-link-box .img-icon img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.ft-link-box .img-icon img.img-2 {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.ft-link-box:hover .img-icon img.img-2,
.ft-link-box:hover .img-icon img.img-1 {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.ft-link-box:hover .img-icon img.img-1 {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.ct-side {
  position: fixed;
  right: 15px;
  bottom: 70px;
  z-index: 11;
}

.ct-side a {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin-top: 10px;
}

.facebook-top.on {
  background: #013879;
}

.zalo-top.on {
  background: #013879;
}

.phone-top.on {
  background: #013879;
}

@media (max-width: 576px) {
  .ct-side {
    display: none;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.popup-fix {
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 -0.05rem 0.55rem rgb(0 0 0 / 15%);
  z-index: 10;
  display: none;
}

#footer {
  background: #c1dcf1;
  color: #eee;
}

#footer .footer-top {
  background-color: #013879;
  padding: 20px 0 30px 0;
  /* background-image: url("/giaodien/simple/img/ft.png"); */
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

#footer .widget-links h4 {
  border-bottom: 1px solid #fff;
  display: inline-block;
}

#footer .widget-links h6 {
  font-size: 1.25rem;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .widget-links ul li {
  margin-bottom: 0.75rem;
}

#footer .widget-links ul li a {
  color: #fff;
}

#footer .widget-links ul li a:hover {
  color: #c59f6e;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 14px;
  color: #ddd;
}

@media (max-width: 992px) {
  .menu-box {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    padding: 2.45rem 1.5rem !important;
  }

  #hero {
    height: 400px;
  }

  #header .logo {
    margin-right: 4rem;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 400px;
  }

  #header .logo {
    margin-right: 4rem;
  }
}

@media (max-width: 576px) {
  .menu-box {
    padding: 1.45rem 0rem !important;
  }

  #header .logo {
    margin-right: 4rem;
  }

  #hero {
    height: 250px;
  }

  #footer {
    padding: 0 0 70px 0;
  }

  #footer .footer-top {
    background-size: auto 180px;
    background-position: top center;
  }

  .widget-links {
    margin-bottom: 1.5rem;
  }

  .back-to-top {
    bottom: 93px;
  }

  .popup-fix {
    display: block;
  }
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1024px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1260px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.main-content img {
  max-width: 100% !important;
  height: auto !important;
}
