/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a,
li {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Roboto", sans-serif;
}

/* MAIN */

@media (max-width: 992px) {
  main {
    margin-top: 40px;
  }
}

/* SECTION */
section {
  padding: 70px 0;
}

@media (max-width: 992px) {
  section {
    padding: 35px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 35px 0;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  height: 40px;
  background-color: #d34a4d;
  width: 100%;
  color: white;
}

#topbar i {
  font-style: normal;
  color: #262e3c;
}

#topbar a,
#topbar span {
  color: white;
  padding-left: 5px;
}

#topbar a:hover {
  color: #262e3c;
}

#topbar .social-media ul {
  list-style: none;
  margin: 0;
  padding: 8px;
  background-color: #262e3c;
}

#topbar .social-media ul li {
  float: left;
  margin: 0 8px;
}

#topbar .social-media .social-icon i {
  color: #d34a4d;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: white;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 24px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
  z-index: 1;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar .home-nav-link {
  display: none;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  color: #999;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: var(--bs-nav-link-hover-color);
}

.navbar .nav-link i {
  font-size: 20px;
  margin-left: 0 !important;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #999;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.navbar-mobile .home-nav-link {
  display: block;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #999;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--bs-nav-link-hover-color);
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/

#calculator {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

#calculator-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
}

.calculator-container {
  max-width: 470px;
  align-content: center;
  margin: auto;
  text-align: center;
  padding: 0;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  #calculator-container {
    box-shadow: none;
    padding: 20px 1em 0px 1em;
    margin: auto;
  }

  .carousel-container {
    display: none;
  }

  .calculator-container {
    margin: auto;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #calculator-container {
    box-shadow: none;
  }

  .carousel-container {
    display: none;
  }

  #calculator-skeleton {
    transform: scale(0.9);
  }
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/

#hero {
  padding: 0;
  position: relative;
}

#hero .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.red-text {
  color: #e51e0f;
}

#hero .carousel .caption-header {
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Open Sans", Arial, sans-serif;
}

#hero .carousel .carousel-caption {
  position: absolute;
  color: #e51e0f;
  top: 10px;
  left: 10px;
  padding: 0.5rem;
  text-align: left;
  background-color: #fff;
  opacity: 0.75;
  border-radius: 10px;
  padding: 15px;
  height: fit-content;
}

#hero .carousel .carousel-caption h4 {
  font-weight: 700 !important;
}

#hero .carousel .carousel-caption.show {
  opacity: 1;
  transform: translateY(0%);
}

#hero .carousel .carousel-caption.drop-down {
  opacity: 0;
  transform: translateY(100%);
}

#hero .carousel .carousel-item.zoom-in {
  transition: transform 0.5s ease-in-out;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  #hero {
    padding: 0;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #hero {
    padding: 0;
  }

  #hero .carousel {
    display: none;
  }

  #main {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
  # Intro Section
  --------------------------------------------------------------*/

#intro {
  background: #ededed;
  padding-top: 70px;
}

#intro h2 {
  color: #202020;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 45px;
}

#intro p {
  color: #828282;
  font-size: 20px;
  font-weight: 400;
  padding: 0 10px;
  text-align: justify;
}

/*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/

#about-us h2 {
  color: #202020;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 45px;
}

#about-us p {
  color: #828282;
  font-size: 20px;
  font-weight: 400;
  padding: 0 10px;
  text-align: justify;
}

/*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/

#features .title {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
  margin-top: 10px;
  line-height: 65px;
}

#features .box:hover .icon {
  color: #e51e0f;
  transition: all 0.4s ease-in-out;
}

#features .box:hover {
  cursor: pointer;
}

#features .icon {
  font-size: 40px;
  color: #7f7f7f;
  float: left;
  margin-right: 20px;
}

#features .box .content {
  margin-left: 76px;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  #features .box .title .icon {
    text-align: center;
    width: 100%;
  }

  #features .box .title {
    text-align: center;
    width: 100%;
    line-height: 40px;
  }

  #features .box .content {
    margin: 0 20px;
    text-align: center;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #features .box .title .icon {
    text-align: center;
    width: 100%;
  }

  #features .box {
    text-align: center;
    width: 100%;
  }

  #features .icon {
    font-size: 60px;
  }

  #features .box .content {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
  # Steps Section
  --------------------------------------------------------------*/

#steps {
  background: #ededed;
}

#steps h2 {
  color: #202020;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 45px;
}

#steps h3 {
  font-size: 18px;
  font-weight: 600;
  color: #202020;
  margin-top: 30px;
  margin-bottom: 20px;
}

#steps p {
  font-size: 15px;
  line-height: 26px;
  color: #666666;
}

#steps i {
  font-size: 24px;
  color: #e51e0f;
  margin-left: -45px;
  margin-right: 10px;
}

/*--------------------------------------------------------------
  # Ria Section
  --------------------------------------------------------------*/
#ria .banner {
  background: url("../img/rates-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#ria .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  margin-bottom: 45px;
  font-family: "Open Sans", Arial, sans-serif;
}

#ria .container {
  margin-top: 70px;
}

#ria .container .row h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  color: #202020;
  margin-bottom: 40px;
}

#ria .container .row .description p {
  color: #828282;
  font-size: 20px;
  padding: 0 10px;
}

#ria .container .row .description h3 {
  padding: 30px 0;
  font-size: 30px;
}

/*--------------------------------------------------------------
  # Rate Section
  --------------------------------------------------------------*/

#rate .banner {
  background: url("../img/rates-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#rate .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  margin-bottom: 45px;
  font-family: "Open Sans", Arial, sans-serif;
}

#rate .container {
  margin-top: 70px;
}

#rate .container .row .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  color: #202020;
  display: inline-block;
  margin-bottom: 40px;
}

#rate .container .row .title .icon {
  color: #7f7f7f;
  float: left;
  font-size: 40px;
  margin-right: 20px;
}

#rate .container .row .title .icon:hover {
  color: #e51e0f;
  transition: all 0.4s ease-in-out;
}

#rate .container .row p {
  font-size: 15px;
  color: #666666;
}

/*--------------------------------------------------------------
  # Reviews Section
  --------------------------------------------------------------*/

#reviews {
  padding-bottom: 0;
}

#reviews .banner {
  background: url("../img/find-us-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#reviews .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  margin-bottom: 45px;
  font-family: "Open Sans", Arial, sans-serif;
}

#reviews .container {
  margin-top: 70px;
  margin-bottom: 70px;
}

#reviews .container .row .title-text {
  text-align: center;
  font-weight: 700;
}

#reviews .container .row .subtitle-text {
  text-align: center;
  color: #8f8f8f;
  font-weight: 700;
}

#reviews .container .row .title {
  position: relative;
}

#reviews .container .row .title i {
  font-size: 120px;
  padding-top: 20px;
  padding-bottom: 40px;
  color: #e51e0f;
}

#reviews .container .row .title span {
  position: absolute;
  top: 48%;
  left: 50%;
  color: white;
  font-weight: 700;
  font-size: 25px;
  transform: translate(-50%, -50%);
}

#reviews .container .row .title i:hover,
#reviews .container .row .title span:hover {
  text-shadow: 0 0 20px #993f38;
  transition: all 0.4s ease;
}

#reviews .container .row .content {
  width: 100%;
}

#reviews .container .row .content .row {
  padding: 14px 0;
}

#reviews .container .row .content .row .star-label {
  max-width: 70px;
}

#reviews .container .row .content .row .progress {
  padding-left: 0;
  padding-right: 0;
  height: 24px;
}

#reviews .container .row .content .row .star-count {
  padding-left: 15px !important;
  padding-right: 0;
  max-width: 45px;
}

#reviews .container .row .content .row span {
  font-weight: 700;
}

#reviews .container .row .content .progress .progress-bar {
  background-color: #e51e0f;
}

#reviews .customer-reviews .card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#reviews .customer-reviews .card .star-rating {
  margin-bottom: 10px;
}

#reviews .customer-reviews .card .star-rating i {
  margin-right: 2px;
}

#reviews .open-modal-container h4 {
  margin: 50px 200px;
}

#reviews .open-modal-container #thank-you-message {
  display: none;
}

#reviews .open-modal-container .btn-primary {
  background: #f8434a;
  color: white;
  border: none;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
}

#reviews .review-form-container {
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#reviews .review-form-container .btn-close {
  position: absolute;
  top: 0;
  right: 0;
}

#reviews .review-form-container h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 45px;
  color: #202020;
  margin-top: 35px;
  margin-bottom: 0px;
}

#reviews .review-form-container .edit:hover {
  text-decoration: underline;
}

#reviews .review-form-container .star-widget input {
  display: none;
}

#reviews .review-form-container .star-widget label {
  font-size: 40px;
  color: #e2e2e2;
  padding: 10px;
  float: right;
  transition: all 0.2s ease;
}

#reviews .review-form-container input:not(:checked) ~ label:hover,
#reviews .review-form-container input:not(:checked) ~ label:hover ~ label {
  color: #e51e0f;
}

#reviews .review-form-container input:checked ~ label {
  color: #e51e0f;
}

#reviews .review-form-container input#rate-5:checked ~ label {
  color: #e51e0f;
  text-shadow: 0 0 20px #993f38;
}

#reviews .review-form-container .review-details .review {
  height: 100px;
  width: 100%;
  overflow: hidden;
}

#reviews .review-form-container .review-details textarea {
  height: 100px;
  width: 100%;
  outline: none;
  padding: 10px;
  font-size: 17px;
}

#reviews .review-form-container .review-details .btn-primary {
  background: #f8434a;
  color: white;
  border: none;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
}

#reviews .customer-reviews a {
  font-weight: 700;
  color: rgb(229, 30, 15);
  float: right;
  user-select: none;
}

#reviews .customer-reviews a:hover {
  cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #reviews .container .row .title {
    text-align: center;
  }

  #reviews .container .row .title .icon {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  #reviews .container .row .content {
    margin-bottom: 30px;
  }

  #reviews .container .row .content .row {
    padding: 14px;
  }

  #reviews .open-modal-container h4 {
    margin: 50px;
  }

  #reviews .review-form-container h2 {
    font-size: 20px;
    margin-top: 15px;
  }

  #reviews .review-form-container .star-widget label {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
  # Contact Us Section
  --------------------------------------------------------------*/

#contact-us {
  padding-bottom: 0;
}

#contact-us .banner {
  background: url("../img/find-us-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#contact-us .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  margin-bottom: 45px;
  font-family: "Open Sans", Arial, sans-serif;
}

#contact-us .container {
  margin-top: 70px;
  margin-bottom: 70px;
}

#contact-us .container .row .table {
  border: solid 1px #e2e2e2;
  font-size: 14px;
}

#contact-us .container .row .table thead tr th {
  padding: 25px 40px;
  background: #e2e2e2;
  text-align: center;
  vertical-align: middle;
}

#contact-us .container .row .table tbody tr td {
  text-align: center;
  font-weight: 700;
  color: #666666;
  line-height: 45px;
}

#contact-us .container .row .content {
  margin: 0 80px;
}

#contact-us .container .row .content ul {
  list-style: none;
}

#contact-us .container .row .content ul li {
  margin-bottom: 20px;
}

#contact-us .container .row .content ul li i {
  font-size: 24px;
  color: #e51e0f;
  margin-left: -45px;
  margin-right: 10px;
}

#contact-us iframe {
  width: 100%;
  height: 419px;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  #contact-us .container .row .content {
    margin: 0 20px;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #contact-us .container {
    margin: 70px 0 0 0;
  }

  #contact-us .container .row .table {
    font-size: 12px;
  }

  #contact-us .container .row .table tbody tr td {
    text-align: center;
    font-weight: 700;
    color: #666666;
    line-height: 35px;
    font-size: 11px;
  }

  #contact-us .container .row .content {
    margin: 30px;
  }
}

/*--------------------------------------------------------------
  # Become A Partner Section
  --------------------------------------------------------------*/

#become-a-partner {
  padding-bottom: 0;
}

#become-a-partner .banner {
  background: url("../img/become-a-partner-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#become-a-partner .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  margin-bottom: 45px;
  font-family: "Open Sans", Arial, sans-serif;
}

#become-a-partner .grey-container {
  background: #ededed;
  padding: 70px;
}

#become-a-partner .grey-container .row h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  color: #202020;
  margin-bottom: 40px;
}

#become-a-partner .grey-container .row .description {
  color: #828282;
  font-size: 20px;
  padding: 0 10px;
  text-align: justify;
}

#become-a-partner .grey-container .row .description a {
  color: #1b2745;
}

#become-a-partner .grey-container .row .description a:hover {
  color: #e51e0f;
}

#become-a-partner .container {
  margin-top: 70px;
  margin-bottom: 70px;
}

#become-a-partner .container .row .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  color: #202020;
  display: inline-block;
  margin-bottom: 40px;
}

#become-a-partner .container .row .title .icon {
  color: #7f7f7f;
  float: left;
  font-size: 40px;
  margin-right: 20px;
}

#become-a-partner .container .row .title .icon:hover {
  color: #e51e0f;
  transition: all 0.4s ease-in-out;
}

#become-a-partner .container .row .benefit {
  border: 1px solid #e0e0e0;
  margin-left: 75px;
  padding: 20px;
  margin-top: 10px;
}

#become-a-partner .container .row .benefit .icon {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 20px;
}

#become-a-partner .container .row .benefit .icon img {
  width: 100%;
  height: 100%;
}

#become-a-partner .container .row .benefit h3 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#become-a-partner .container .row .content {
  margin: 0 80px;
}

#become-a-partner .container .row .content ul {
  list-style: none;
}

#become-a-partner .container .row .content ul li {
  margin-bottom: 20px;
}

#become-a-partner .container .row .content ul li i {
  font-size: 24px;
  color: #e51e0f;
  margin-left: -45px;
  margin-right: 10px;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  #become-a-partner .container .row .benefit {
    margin-left: 0;
  }

  #become-a-partner .container .row .content {
    margin: 0 20px;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #become-a-partner .container {
    margin: 70px 0 0 0;
  }

  #become-a-partner .grey-container {
    padding: 70px 20px;
    text-align: justify;
  }

  #become-a-partner .container .row .title {
    text-align: center;
  }

  #become-a-partner .container .row .title .icon {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  #become-a-partner .container .row .content {
    margin: 30px;
  }

  #become-a-partner .container .row .benefit {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
  # Wholesale Section
  --------------------------------------------------------------*/

#wholesale {
  padding-bottom: 0;
}

#wholesale .banner {
  background: url("../img/become-a-partner-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#wholesale .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  margin-bottom: 45px;
  font-family: "Open Sans", Arial, sans-serif;
}

#wholesale .grey-container {
  background: #ededed;
  padding: 70px;
}

#wholesale .grey-container .row h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  color: #202020;
  margin-bottom: 40px;
}

#wholesale .grey-container .row .description {
  color: #828282;
  font-size: 20px;
  padding: 0 10px;
}

#wholesale .grey-container .row .description a {
  color: #1b2745;
}

#wholesale .grey-container .row .description a:hover {
  color: #e51e0f;
}

#wholesale .container {
  margin-top: 70px;
  margin-bottom: 70px;
}

#wholesale .container .row .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  color: #202020;
  display: inline-block;
  margin-bottom: 40px;
}

#wholesale .container .row .title .icon {
  color: #7f7f7f;
  float: left;
  font-size: 40px;
  margin-right: 20px;
}

#wholesale .container .row .title .icon:hover {
  color: #e51e0f;
  transition: all 0.4s ease-in-out;
}

#wholesale .container .row .benefit {
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-top: 10px;
}

#wholesale .container .row .benefit .icon {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 20px;
}

#wholesale .container .row .benefit .icon img {
  width: 100%;
  height: 100%;
}

#wholesale .container .row .benefit h3 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#wholesale .container .row h4 {
  margin: 10px 0;
  font-size: 18px;
}

#wholesale .container .row .btn-primary {
  background: #f8434a;
  color: white;
  border: none;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #wholesale .container {
    margin: 70px 0 0 0;
  }

  #wholesale .container .row .title {
    text-align: center;
  }

  #wholesale .container .row .title .icon {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  #wholesale .grey-container {
    padding: 70px 20px;
  }

  #wholesale .container .row .col-sm-6 {
    margin-bottom: 70px;
  }
}

/*--------------------------------------------------------------
  # About Us Section
  --------------------------------------------------------------*/

#about-us .banner {
  background: url("../img/find-us-banner.jpg");
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
}

#about-us .banner h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  color: white;
  font-family: "Open Sans", Arial, sans-serif;
}

#about-us .grey-container {
  background: #ededed;
  padding: 70px;
}

#about-us .grey-container .row h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  color: #202020;
  margin-bottom: 40px;
}

#about-us .grey-container .row .description {
  color: #828282;
  font-size: 20px;
  padding: 0 10px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #about-us .grey-container {
    padding: 70px 20px;
  }
}

/*--------------------------------------------------------------
  # Footer Section
  --------------------------------------------------------------*/

#footer {
  background: #262e3c;
  font-size: 14px;
  color: #ffffff;
  padding: 70px 40px;
}

#footer h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}

#footer .footer-info p {
  font-size: 13px;
  line-height: 20px;
  text-align: justify;
}

#footer ul {
  list-style: none;
  padding-left: 0;
}

#footer li {
  margin-bottom: 10px;
}

#footer a {
  color: #ffffff;
}

#footer a:hover {
  color: #f8434a;
  transition: all 0.4s ease-in-out;
}

#footer .container .social-media .social-icon {
  width: 35px;
  background-color: white;
  text-align: center;
  border-radius: 100%;
  height: 35px;
}

#footer .social-media ul li {
  float: left;
  margin-right: 10px;
  padding-top: 3px;
}

#footer .contact-us address {
  font-size: 13px;
}

#footer .social-media ul li a {
  font-size: 20px;
  color: #202020;
  transition: all 0.4s ease-in-out;
}

#footer .social-media ul li a:hover {
  color: #f8434a;
}

#footer .copyright {
  border-top: 1px solid #444d5f;
  padding-top: 30px;
}

/*--------------------------------------------------------------
  # Carousel Page
  --------------------------------------------------------------*/

#carousel .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#carousel .row .column {
  flex: 1;
  text-align: center;
  padding: 10px;
  margin: 10px;
  box-sizing: border-box;
  min-width: 250px;
}

#carousel .row .column .drag-drop-area {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #444;
  min-height: 15em;
  cursor: pointer;
}

#carousel .row .column #preview {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
}

#carousel .row .column .drag-drop-area #fileInput {
  display: none;
}

#carousel .row .column .drag-drop-area .fileInputUploadBtn {
  background-color: #dc3545;
  border-radius: 5px;
  font-size: 0.8rem;
  color: white;
  width: 5rem;
  height: 3rem;
}

#carousel .row .column .drag-drop-area .fileInput {
  display: none;
}

@media screen and (max-width: 768px) {
  .column {
    flex: 1 0 100%;
    margin: 10px 0;
  }
}

/*--------------------------------------------------------------
  # Admin Page
  --------------------------------------------------------------*/

#admin #rename-container {
  display: none;
}

#admin .list-group-item:hover {
  background-color: #d34a4d75;
  color: var(--bs-list-group-color);
}

#admin .continent-input:hover {
  background-color: var(--bs-list-group-bg) !important;
  color: var(--bs-list-group-color);
}

#admin .accordion-button:hover {
  background-color: #d34a4d75 !important;
  color: var(--bs-list-group-color);
}

#admin .accordion-header :not(.collapsed) {
  background-color: #d34a4d75 !important;
  color: var(--bs-danger);
  /* font-weight: 700; */
}

/*--------------------------------------------------------------
  # Login Page
  --------------------------------------------------------------*/

.login-btn {
  background-color: #f8434a;
  color: #fff;
}

.accordion-button {
  color: #828282;
  font-size: 20px;
  font-weight: 400;
}

.remove-list-icon::after {
  display: none;
}

.custom-border {
  border: var(--bs-accordion-border-width) solid
    var(--bs-accordion-border-color) !important;
  border-radius: 0.375rem !important;
}

.accordion-button:not(.collapsed) {
  color: #828282;
  background-color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='red'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: var(--bs-accordion-btn-icon-transform);
}

.bi-person-circle {
  font-size: 2rem;
}

.no-outline {
  outline: none;
}

/*--------------------------------------------------------------
  # Image Input
  --------------------------------------------------------------*/

#edit-county-data .file-upload-content {
  cursor: pointer;
}

#edit-county-data img {
  max-width: 400px;
  margin: auto;
}

#edit-county-data .file-upload-image {
  max-height: 300px;
  max-width: 300px;
  margin: auto;
  padding: 20px;
}

#edit-county-data .image-upload-wrap {
  margin-top: 10px;
  border: 1px dashed #444;
  text-align: center;
  padding: 40px 0;
}

#edit-county-data .image-upload-wrap:hover {
  /* background-color: #d34a4c7c; */
  cursor: pointer;
}

#edit-county-data .container .btn-outline-primary {
  background: #f8434a;
  color: white;
  border: none;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
}

.z-index-0 {
  z-index: 0 !important;
}
/* 
#main .list-group-item:hover {
  background-color: #d34a4d75;
  color: var(--bs-list-group-color);
} */

.file-upload {
  background-color: #ffffff;
}

.file-upload-btn:active {
  border: 0;
  transition: all 0.2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  display: none;
}

.image-upload-wrap label {
  cursor: pointer;
  padding: 10px;
  margin: 10px;
  background-color: var(--bs-danger);
  color: white;
  border-radius: 4px;
  padding: 10px 20px;
}

.image-upload-wrap label:hover {
  cursor: pointer;
}

.drag-text {
  text-align: center;
  text-transform: uppercase;
  color: #444;
}

.file-upload-image {
  max-height: 300px;
  max-width: 300px;
  margin: auto;
  padding: 20px;
}
/*--------------------------------------------------------------
  # country-data
  --------------------------------------------------------------*/

.country-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-align {
  text-align: justify;
  color: #828282;
  font-size: 18px;
}

/* mobile device view */

@media (max-width: 992px) {
  .text-align {
    font-size: 1rem;
  }

  .country-name {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
/*--------------------------------------------------------------
  # continents page
  --------------------------------------------------------------*/
#rename-container {
  display: none;
}

.list-group-item:hover {
  background-color: #d34a4d75;
  color: var(--bs-list-group-color);
}

.continent-input:hover {
  background-color: var(--bs-list-group-bg) !important;
  color: var(--bs-list-group-color);
}

.accordion-button:hover {
  background-color: #d34a4d75 !important;
  color: var(--bs-list-group-color);
}

.accordion-header :not(.collapsed) {
  background-color: #d34a4d75 !important;
  color: var(--bs-danger) !important;
}

/*--------------------------------------------------------------
  # Countries page
  --------------------------------------------------------------*/
.image_upload_hide {
  display: none;
}

/*--------------------------------------------------------------
  # Continents page
  --------------------------------------------------------------*/
.masonry {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  padding: 0;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
}

.list-group-item {
  -webkit-column-break-after: avoid;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  .masonry {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .masonry {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

/*--------------------------------------------------------------
  # Admin Reviews page
  --------------------------------------------------------------*/

#business-hours-section .container .row .table-responsive {
  padding: 50px 120px 0px 120px;
}

#business-hours-section .container .row .table {
  border: solid 1px #e2e2e2;
  font-size: 14px;
  border-radius: 5px;
}

#business-hours-section .container .row .table thead tr th {
  padding: 25px 40px;
  background: #e2e2e2;
  text-align: center;
  vertical-align: middle;
}

#business-hours-section .container .row .table tbody tr td {
  text-align: center;
  font-weight: 700;
  color: #666666;
  line-height: 45px;
}

#business-hours-section .update-button-section {
  padding: 10px 125px;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  #business-hours-section .update-button-section {
    padding: 0;
  }

  #business-hours-section .container .row .table-responsive {
    padding: 0;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  #business-hours-section .update-button-section {
    padding: 0;
  }

  #business-hours-section .container .row .table-responsive {
    padding: 0;
  }
}
