* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 18px;
  overflow-x: hidden;
  background-color: #1e5050;
  background-image: url(../img/autumn-7557510_1280.jpg);
  background-size: cover;
  background-position: center;
}

ul {
  padding: 0;
  margin: 0;
}

nav > ul > li {
  list-style: none;
}

a {
  color: brown;
  text-decoration: none;
  transition: all 0.3s ease;
}

p {
  line-height: 1.8;
}

h2,
h3,
h4,
h5,
p {
  margin-top: 0;
}

.container {
  padding: 30px;
}

.row {
  display: flex;
  justify-content: space-between;
}

.left,
.right {
  width: 50%;
}

.left-inner {
  position: fixed;
  max-width: 500px;
  width: 100%;
}

.site-header {
  background-color: rgb(208, 141, 53);
  color: white;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 130px;
  margin-bottom: 25px;
}

.tm-site-logo {
  margin-right: 30px;
}

.site-name {
  font-size: 2.2rem;
  font-style: italic;
}

.site-nav-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.page-nav-item {
  margin-top: 20px;
}

.tm-page-link {
  min-width: 240px;
  height: 80px;
  background-color: rgb(208, 141, 53);
  color: white;
  display: flex;
  text-decoration: none;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 50px;
}

.tm-page-link:hover,
.tm-page-link.active {
  background-color: rgb(192, 95, 30);
  color: #ffb05b;
}

.page-link-icon {
  margin-right: 25px;
  margin-left: 25px;
  font-size: 1.5rem;
}
.main {
  max-width: 660px;
}
.tm-page-content {
  animation: fadeEffect 1s;
}

.black-bg {
  background-color: rgb(192, 95, 30);
  color: white;
  border-radius: 40px;
}

.drinks-nav > ul > li {
  display: inline-block;
}

.drinks-nav > ul > li > a {
  color: white;
  font-size: 1.2rem;
  padding-top: 15px;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
}

.drinks-nav {
  height: 80px;
}

.drinks-nav > ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}

.drinks-nav > ul > li a.active,
.drinks-nav > ul > li a:hover {
  color: #ffb05b;
  border-bottom: 4px solid #96feff;
}

.tm-tab-content {
  animation: fadeEffect 1s;
}
.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.list-item-img {
  margin-right: 20px;
  width: 160px;
  height: 160px;
  background-color: #099;
  border-radius: 50%;
  border: 11px ridge #ffb05b;
}

.list-item-text {
  padding: 20px 25px;
  flex: 1;
}

.list-item-name {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}

.list-item-price {
  color: #ffb05b;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

/* About */
.about-box-1 {
  padding: 40px 30px 50px 0;
}

.text-primary {
  color: white;
}
.about-box-2 {
  padding: 50px 40px 30px;
}
.about-header {
  margin-left: 220px;
}
.list-item-img-big {
  margin-right: 25px;
  width: 200px;
  height: 200px;
}
.list-item-2 {
  align-items: flex-start;
}

.list-item-text-2 {
  flex: 1;
}
.tm-mb-20 {
  margin-bottom: 20px;
}
.img-right {
  margin-left: 30px;
  margin-right: 0;
}

/* Special */
.special-items {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -10px 0;
}

.special-item {
  max-width: 320px;
  margin: 30px 10px;
}
.special-img {
  border-radius: 30px;
  box-shadow: 0px 10px 40px rgba(101, 58, 26, 0.7);
}
.special-item-title {
  font-size: 1.4rem;
}
.special-item-description {
  padding: 25px 30px;
}

/* Contact */
.contact-text-container {
  padding: 45px 50px;
  margin-bottom: 20px;
}

.contact-form-container {
  max-width: 460px;
  padding: 40px 50px;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: transparent;
  background-clip: padding-box;
  border-radius: 24px;
  border: 1px solid white;
}
/* Footer */
.site-footer {
  margin-top: 15px;
}

.footer-text {
  padding: 10px 65px 10px 20px;
  display: inline-block;
}

.tm-footer-link {
  color: white;
}
.site-footer {
  margin-top: 15px;
}

.footer-text {
  padding: 10px 65px 10px 20px;
  display: inline-block;
}

.tm-footer-link {
  color: white;
}

.form-control::-webkit-input-placeholder {
  color: white;
} /* Edge */
.form-control:-ms-input-placeholder {
  color: white;
} /* Internet Explorer 10-11 */
.form-control::placeholder {
  color: white;
}

.btn-primary {
  color: #099;
  background-color: white;
  border: 0;
  padding: 12px 40px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 24px;
}

.btn-primary:hover {
  color: white;
  background-color: #099;
}

.align-right {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.tm-mb-30 {
  margin-bottom: 30px;
}

@media (max-width: 1130px) and (min-width: 992px) {
  .left-inner {
    max-width: 380px;
  }
  .site-name {
    font-size: 2.6rem;
  }
  .site-logo {
    margin-right: 20px;
  }
  .page-link {
    width: 100%;
  }
  .page-link-icon {
    margin-right: 15px;
  }
  .left {
    width: 45%;
  }
  .right {
    width: 55%;
  }
}

@media (max-width: 991px) {
  .left-inner {
    position: static;
  }
  .left,
  .right {
    width: 100%;
  }
  .left {
    margin-bottom: 50px;
  }
  .row {
    display: block;
  }
}

@media (max-width: 574px) {
  .site-nav-ul {
    display: block;
  }
}

@media (max-width: 550px) and (min-width: 501px) {
  .list-item-img-big {
    width: 160px;
    height: 160px;
  }

  .about-header {
    margin-left: 180px;
  }
}

@media (max-width: 500px) {
  .about-header {
    margin-left: 0;
  }
  .list-item-2 {
    flex-direction: column;
  }
  .about-box-1 {
    padding-left: 30px;
  }

  .list-item-img-big {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .img-right {
    margin-left: 0;
  }
}

@media (max-width: 479px) {
  .site-name {
    font-size: 2.6rem;
  }
  .site-logo {
    margin-right: 20px;
  }

  .list-item {
    flex-direction: column;
    margin-top: 40px;
  }

  .list-item-img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .drinks-nav {
    height: auto;
  }

  .drinks-nav > ul {
    flex-direction: column;
    padding: 15px;
  }

  .drinks-nav > ul > li {
    margin-bottom: 10px;
  }
  .drinks-nav > ul > li > a {
    display: block;
  }
}
