html
{
  scroll-behavior: smooth;
}
body
{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-image: url("../img/bg-img.png");
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
 }
 .salsa-regular {
    font-family: "Salsa", cursive;
    font-weight: 400;
    font-style: normal;
  }
.reveal
{
  position: relative;
  transform: translateY(120px);
  opacity: 0;
  transition: all 1.5s ease;
}
.reveal.active
{
  transform: translateY(0px);
  opacity: 1;
}
.bg
{
    width: 100%;
    z-index: 1;
}
.navigation
{
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 80px;
    background-color: rgba(18, 14, 0, 0.600);
}
.navlink
{
  position: relative;
}
.navlink::after
{
  content: '';
  height: 2px;
  width: 100%;
  background-color:#E79B2A;
  position: absolute;
  left: 0;
  bottom: -8px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.navlink:hover::after
{
  opacity: 1;
}
ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
ul li
{
    color: white;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
}
li a
{
  text-decoration: none;
  color: white;
}
.nav-logo
{
    height: 46px;
    position: relative;
    top: 18px;
}
.lh
{
    line-height: 80px;
}
.title-container
{
    width: 1360px;
    min-height: 100px;
    background-color: rgba(18, 14, 0, 0.600);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
}
.title-container h1
{
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 0;
}
.title-container p
{
    text-align: center;
    color: white;
}
.cc
{
    color: #E79B2A;
}
.desc
{
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 0;
}
.info
{
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 30px;
}
.title-button
{
    width: 200px;
    height: 50px;
    background-color: #E79B2A;
    border-radius: 40px;
    margin: 0 auto;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.title-button:hover
{
    background-color:#aa6a0a;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.btn-text
{
    color: white;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    text-decoration: none;
}
.title-logo
{
    height: 60px;
    display: block;
    margin: 0 auto;
}
.f-section
{
    width: 100%;
    min-height: 100px;
    text-align: center;
}
.f-title
{
    font-size: 32px;
    letter-spacing: 3px;
    color: #3C250B;
    margin-top: 90px;
    margin-bottom: 0;
}
.f-desc
{
    font-size: 20px;
    color: #E79B2A;
    padding-top: 50px;
    margin-top: 0;
    margin-bottom: 0;
}
.f-desc-y
{
    font-size: 20px;
    color: white;
    padding-top: 50px;
    margin-top: 0;
    margin-bottom: 0;
}
.f-container
{
    padding-left: 200px;
    padding-right: 200px;
}
.f-info
{
    margin-top: 30px;
    color: #3C250B;
    line-height: 1.5;
}
.f-info-i
{
    color: #3C250B;
    margin-top: 10px;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 50px;
}
.f-info-y
{
    margin-top: 30px;
    color: white;
    line-height: 1.5;
}
.f-info-i-y
{
    color: white;
    margin-top: 10px;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 50px;
}
.ft-container-y
{
    width: 100%;
    min-height: 100px;
    background-color:#E79B2A;
}
.g-title
{
    font-size: 32px;
    letter-spacing: 3px;
    color: #3C250B;
    margin-top: 90px;
    margin-bottom: 0;
}
.g-container
{
    text-align: center;
    width: 100%;
}
.img-container
{
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.g-img1
{
  align-self: center;
}
.g-img2
{
  align-self: center;
  padding-right: 30px;
  padding-left: 30px;
}
.g-img3
{
  align-self: center;
}
.img-btn
{
  width: 240px;
  height: 40px;
  background-color: #E79B2A;
  text-transform: uppercase;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.img-btn:hover
{
  background-color:#aa6a0a;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.g-text
{
  width: 800px;
  margin: 0 auto;
}
.g-desc
{
  text-align: center;
  color: #3C250B;
} 
.g-line
{
  width: 350px;
  height: 2px;
  background-color:#3C250B;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  margin-top: 12px;
}
.gallery-img
{
  height: 350px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 60px;
  z-index: 99;
  transition: 0.75s ease;
}
.gallery-img:hover
{
  cursor: pointer;
  transform: scale(0.9);
}
.g-img-container
{
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
#FullImageView
{
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: transparent;
  padding-top: 120px;
}
#CloseButton
{
  position: fixed;
  top: 42px;
  right: 48px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  display: none;
  line-height: 50px;
}
.closecircle
{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  top: 40px;
  right: 40px;
  font-size: 50px;
  background-color :#E79B2A;
  cursor: pointer;
  display: none;
}
.p-title
{
    font-size: 32px;
    letter-spacing: 3px;
    color: #3C250B;
    margin-top: 90px;
    margin-bottom: 0;
}
.p-container
{
    text-align: center;
    width: 100%;
}
.pricing-container
{
  display: flex;
  min-width: 100px;
  padding-left: 180px;
  padding-right: 180px;
  padding-top: 50px;
  justify-content: center;
}
.p-middle
{
  width: 3px;
  height: 370px;
  background-color: #E79B2A;
}
.p-left
{
  padding-right: 50px;
}
.p-right
{
  padding-left: 60px;
}
.p-info-title
{
    font-size: 20px;
    color: #E79B2A;
    margin-top: 0;
    margin-bottom: 0;
}
.p-info-desc
{
  color: #3C250B;
  width: 600px;
}
.p-s 
{
  padding-top: 30px;
}
.p-info-btn
{
  width: 180px;
  height: 40px;
  background-color: #E79B2A;
  text-transform: uppercase;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.p-info-btn-a
{
  text-decoration: none;
  color: white;
}
.p-info-btn:hover
{
  background-color:#aa6a0a;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.g-btn 
{
  text-decoration: none;
  color: white;
}
.svgback
{
  height: 42px;
  fill:#3C250B;
  position: relative;
  top: 40px;
  left: 40px;
  z-index: 999;
}
.svgback:hover
{
  cursor: pointer;
}
.c-circle
{
  width: 70px;
  height: 70px;
  background-color:#E79B2A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-email
{
  height: 42px;
  fill: white;
}
.c-fb
{
  height: 50px;
  fill: white;
}
.c-ig
{
  height: 44px;
  fill: white;
}
.c-container
{
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.c-info-container
{
  display: flex;
  align-items: center;
}
.c-info
{
  padding-left: 20px;
  color: #3C250B;
}
.cmt
{
  padding-top: 40px;
}
.c-img
{
  height: 260px;
}
.c-left
{
  padding-right: 100px;
}
.c-right
{
  padding-left: 100px;
  padding-top: 22px;
}
.footer-container
{
  width: 100%;
  height: 200px;
  background-color: #E79B2A;
  text-align: center;
  color: white;
}
.foot-text
{
  font-size: 14px;
}
.foot-signature
{
  font-size: 12px;
}
.foot-img
{
  padding-top: 40px;
  height: 50px;
}
.footer
{
  margin-top: 120px;
}

.hide-on
  {
    display: visible;
  }


.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #00BAF0;
  background: linear-gradient(to left, #f46b45, #eea849);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 50px;
  padding: 1em;
}

.hide
  {
    display: none;
  }

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #E79B2A;
  position: absolute;
  height: 2px;
  width: 26px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  z-index: 9999;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 840px) {
  .menu-button-container {
    display: flex;
    padding-right: 20px;
  }
  .menu {
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    color:#E79B2A
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 60px;
    line-height: 60px;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}


@media (max-width: 1440px)
{
  .title-container
  {
      width: 1160px;
  }
  .g-img1
  {
    height: 320px;
  }
  .g-img2
  {
    height: 420px;
  }
  .g-img3
  {
    height: 320px;
  }
  .pricing-container
  {
    width: 1200px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 50px;
    margin: 0 auto;
  }
  .p-middle
  {
    display: none;
  }
  .p-left
  {
    padding-right: 50px;
  }
  .p-right
  {
    padding-left: 50px;
  }
}
@media (max-width: 1376px)
{
  .title-container
  {
      width: 1000px;
      top: 40%;
  }
  .pricing-container
  {
    width: 1100px;
  }
  .p-info-desc
  {
  width: 500px;
  }
}
@media (max-width: 1160px)
{
  .p-info-desc
  {
  width: 400px;
  }
  .g-img1
  {
    height: 260px;
  }
  .g-img2
  {
    height: 360px;
  }
  .g-img3
  {
    height: 260px;
  }
  .pricing-container
  {
    width: 900px;
  }
  .title-container
  {
      width: 900px;
      top: 35%;
  }
  #FullImage
  {
    width: 95%;
  }
}
@media (max-width: 1024px)
{
  .title-container
  {
      width: 800px;
  }
  .title-container h1
  {
      letter-spacing: 2px;
      font-size: 30px;
  }
  .desc
  {
      font-size: 20px;
  }
  .info
  {
      font-size: 14px;
  }
  .title-button
  {
      width: 180px;
      height: 40px;
  }
    .btn-text
  {
      line-height: 40px;
  }
  .title-logo
  {
      height: 50px;
  }
}
@media (max-width: 960px)
{
  .title-container
  {
      top: 32%;
  }
  .g-img1
  {
    height: 220px;
  }
  .g-img2
  {
    height: 340px;
  }
  .g-img3
  {
    height: 220px;
  }
  .pricing-container
  {
    width: 800px;
  }
  .p-info-desc
  {
  width: 350px;
  }
}
@media (max-width: 930px)
{
  .title-container
  {
      width: 700px;
  }
}
@media (max-width: 910px)
{
  .title-container
  {
      width: 650px;
      top: 30%;
  }
  .title-container h1
  {
      letter-spacing: 2px;
      font-size: 24px;
  }
  .desc
  {
      font-size: 16px;
  }
  .info
  {
      font-size: 12px;
  }
  .title-button
  {
      width: 180px;
      height: 40px;
  }
  .g-text
  {
    width: 600px;
  }
}
@media (max-width: 840px)
{
  .top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    background: transparent;
  }
  .hide
  {
    display: flex;
  }
  .hide-on
  {
    display: none;
  }
  .title-container
  {
      width: 500px;
      top: 25%;
  }
  .title-container h1
  {
      letter-spacing: 1px;
      font-size: 20px;
  }
  .desc
  {
      font-size: 14px;
  }
  .info
  {
      font-size: 10px;
  }
  .title-button
  {
      width: 120px;
      height: 30px;
  }
  .btn-text
  {
      line-height: 30px;
      font-size: 12px;
  }
  .title-logo
  {
      height: 40px;
  }
  .f-container
  {
    padding-left: 100px;
    padding-right: 100px;
  }
  .g-img1
  {
    height: 180px;
  }
  .g-img2
  {
    height: 300px;
  }
  .g-img3
  {
    height: 180px;
  }
  .pricing-container
  {
    width: 750px;
  }
  .p-info-desc
  {
  width: 300px;
  }
  .c-left
  {
    padding-right: 40px;
  }
  .c-right
  {
    padding-left: 40px;
  }
}
@media (max-width: 780px)
{
  .title-container
  {
      top: 23%;
  }
  .img-container
  {
    flex-direction: column;
  }
  .g-img1
  {
    height: 400px;
  }
  .g-img2
  {
    height: 400px;
  }
  .g-img3
  {
    height: 400px;
  }
  .pricing-container
  {
    flex-direction: column;
    width: fit-content;
  }
  .p-info-container
  {
    width: 500px;
  }
  .p-info-desc
  {
    width: 500px;
  }
  .p-left
  {
    padding-right: 0;
    width: 500px;
    margin: 0 auto;
  }
  .p-right
  {
    padding-left: 0;
    width: 500px;
    margin: 0 auto;
  }
  .p-info-btn
  {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .c-img
  {
    display: none;
  }
  .c-left
  {
    padding-right: 0;
  }
  .c-right
  {
    padding-left: 0;
  }
}
@media (max-width: 750px)
{
  .title-container
  {
      top: 22%;
  }
}
@media (max-width: 675px)
{
  .title-container
  {
      top: 22%;
  }
  .title-container h1
  {
      letter-spacing: none;
      font-size: 16px;
  }
  .desc
  {
      font-size: 12px;
  }
  .info
  {
      font-size: 8px;
      margin-bottom: 20px;
  }
  .title-button
  {
      width: 120px;
      height: 30px;
  }
  .btn-text
  {
      line-height: 30px;
      font-size: 10px;
  }
  .title-logo
  {
      height: 30px;
  }
  .g-text
  {
    width: 400px;
  }
}
@media (max-width: 620px)
{
  .title-container
  {
      top: 20%;
  }
  .gallery-img
  {
    height: 260px;
  } 
}
@media (max-width: 570px)
{
  .title-container
  {
      width: 400px;
      top: 20%;
      padding: 10px;
  }
  .title-button
  {
    display: none;
  }
  .title-logo
  {
    display: none;
  } 
  .p-info-container
  {
    width: 400px;
  }
  .p-info-desc
  {
    width: 400px;
  }
  .p-left
  {
    width: 400px;
  }
  .p-right
  {
    width: 400px;
  }
}
@media (max-width: 500px)
{
  .title-container
  {
      top: 18%;
  }
}
@media (max-width: 470px)
{
  .title-container
  {
      top: 16%;
  }
  .f-container
  {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 450px)
{
  .title-container
  {
      top: 16%;
      padding: 0;
  }
  .info
  {
    display: none
  }
  .g-img2
  {
    padding-left: 0;
    padding-right: 0;
    height: 300px;
  }
  .g-img1
  {
    height: 300px;
  }
  .g-img3
  {
    height: 300px;
  }
  .c-info-container
  {
    flex-direction: column;
  }
  .c-info
  {
    padding-left: 0;
  }
  .g-text
  {
    width: 300px;
  }
  .gallery-img
  {
    height: 210px;
  }
  .g-line
  {
    width: 240px;
  }
}
@media (max-width: 416px)
{
  .title-container
  {
      top: 14%;
      width: 300px;
  }
  .p-info-container
  {
    width: 320px;
  }
  .p-info-desc
  {
    width: 320px;
  }
  .p-left
  {
    width: 320px;
  }
  .p-right
  {
    width: 320px;
  }
}
@media (max-width: 360px)
{
  .title-container
  {
      top: 13%;
      width: 280px;
  }
  .p-info-container
  {
    width: 280px;
  }
  .p-info-desc
  {
    width: 280px;
  }
  .p-left
  {
    width: 280px;
  }
  .p-right
  {
    width: 280px;
  }
}
@media (max-width: 340px)
{
  .title-container
  {
      top: 13%;
      width: 260px;
      min-height: 80px;
  }
  .title-container h1
  {
      letter-spacing: 0;
      font-size: 14px;
  }
  .desc
  {
      font-size: 10px;
  }
  .g-text
  {
    width: 240px;
  }
  .gallery-img
  {
    height: 160px;
  }
  .g-line
  {
    width: 200px;
  }
}
@media (max-width: 310px)
{
  .title-container
  {
      top: 12%;
      width: 260px;
      min-height: 80px;
  }
}