.container-content > section {
  justify-content: center;
  width: inherit;
}

.right-section {
  background-color: var(--main-theme);
  background-image: var(--bg-texture);
  background-size: 75px 75px;
  padding: 3em;
  display: flex;
  flex-direction: column;
}

.left-section{
  background-color: var(--main-theme);
  background-image: var(--bg-texture);
  background-size: 75px 75px;
}

.container-right-section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


.box-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-body-logo {
  width: 100%;
  max-width: 40em;
}

.box-footer {
  font-size: 0.8em;
  /* font-weight: 500; */
  color: var(--text-sub-color);
  text-align: center;
}

.button-social-media {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin-top: 0px;
}

.button-social-media li {
  list-style: none;
}

.button-social-media li a {
  width: 80px;
  height: 80px;
  background-color: #2B2B28;
  text-align: center;
  line-height: 76px;
  font-size: 35px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--text-sub-color);
  z-index: 1;
}

.button-social-media li a .icon {
  position: relative;
  color: var(--text-sub-color);
  transition: 0.5s;
  z-index: 3;
}

.button-social-media li a:hover .icon {
  /* color: #fff; */
  color: var(--bg-color-primary);
  transform: rotateY(360deg);
}

.button-social-media li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-theme);
  transition: 0.5s;
  z-index: 2;
}

.button-social-media li a:hover:before {
  top: 0;
}

ul li a {
  margin-left: 0px;
  margin-top: 10px;
  margin-right: 20px;
}

.text-description {
  margin-top: 0.5em;
}

.text-socmed {
  padding-top: 1em;
  margin-bottom: 0em;
}

.fg-slider {
  height: 500px;
}


.order-button {
  color: var(--text-sub-color);
  font-weight: bold;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.25rem;
  border-radius: 1rem;
  cursor: pointer;
  user-select: none;

  background-color: #2B2B28;
  border: 3px solid var(--text-sub-color);
}

.order-button:hover {
  background-color: #00b14f; /* Green */
  /* border: 3px solid var(--bg-color-primary); */
  /* color: #2B2B28; */
}

.fg-content.text-center p {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 3px 3px 10px #000;
}

.text-contact{
  text-align: center;
  /* font-weight: 600; */
  /* text-shadow: 1px 1px 4px #000; */
}
/* RESPONSIVE //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 1280px) {
  /* handling close-call */
  ul li a {
    margin-left: 0px;
    margin-top: 8px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 992px) {
  /* start of large tablet styles */

  .container-content {
    /* padding: 1rem; */
    display: block;
  }

  .left-section {
    height: 100%;
  }

  .right-section {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(227, 176, 75, 0.75);
    background-size: auto;
  }

  .left-section{
    background-size: auto;
  }

  /* Hide slider control */
  .fg-slider.slide .bullet-container,
  .fg-slider.slide .arrow-container {
    display: none;
  }

  .fg-content.text-center p {
    display: none;
  }

  .text-contact{
    text-shadow: 2px 2px 8px #000;
  }
}

@media screen and (max-width: 767px) {
  /* start of medium tablet styles */

  .button-social-media li a {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    z-index: 1;
  }

  ul li a {
    margin-left: 0px;
    margin-top: 7px;
    margin-right: 12px;
  }
}

@media screen and (max-width: 500px) {
  /* start of phone styles */

  .right-section {
    padding: 2em;
  }

  .button-social-media li a {
    width: 64px;
    height: 64px;
    line-height: 62px;
    font-size: 27px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    z-index: 1;
  }

  ul li a {
    margin-left: 0px;
    margin-top: 7px;
    margin-right: 12px;
  }
}
