body {
  background-color: #FFFFFF;
  margin: 0px;
  padding: 0px;
  font-family: 'Montserrat', sans-serif;
}

body::-webkit-scrollbar-track {
  background-color: white;
  border: 5px;
  border-radius: 0px;
}

body::-webkit-scrollbar {
  width: 8px;
  max-width: 8px;
  max-height: 8px;
  height: 8px;
  background-color: #dbc9ab;
  border-radius: 0px;
  cursor: pointer;
}

body::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(196, 167, 118, 0.8);
  cursor: pointer;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #c4a776;
}

#sidebar {
  position: fixed;
  right: 0%;
  top: 0px;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: 700ms;
  transition: 700ms;
  background-color: transparent;
}

#sidebar.hide {
  right: -100%;
}

#sidebar::-webkit-scrollbar-track {
  background-color: white;
  border: 5px;
  border-radius: 0px;
}

#sidebar::-webkit-scrollbar {
  width: 8px;
  max-width: 8px;
  max-height: 8px;
  height: 8px;
  background-color: #dbc9ab;
  border-radius: 0px;
  cursor: pointer;
}

#sidebar::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(196, 167, 118, 0.8);
  cursor: pointer;
}

#sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #c4a776;
}

#sidebar .content-section {
  background-color: rgba(255, 255, 255, 0.9);
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  padding: 50px 50px 20px 50px;
  gap: 10px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section {
    padding: 40px 30px 20px 30px;
    min-width: 310px;
  }
}

#sidebar .content-section .close-section {
  height: 40px;
  width: 40px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
  -ms-flex-item-align: end;
      align-self: flex-end;
  background-image: url("../assets/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}

#sidebar .content-section .close-section:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .close-section {
    height: 35px;
    width: 35px;
  }
}

@media only screen and (max-width: 400px) {
  #sidebar .content-section .close-section {
    height: 30px;
    width: 30px;
  }
}

#sidebar .content-section .options {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

#sidebar .content-section .options::-webkit-scrollbar-track {
  background-color: white;
  border: 5px;
  border-radius: 0px;
}

#sidebar .content-section .options::-webkit-scrollbar {
  width: 8px;
  max-width: 8px;
  max-height: 8px;
  height: 8px;
  background-color: #dbc9ab;
  border-radius: 0px;
  cursor: pointer;
}

#sidebar .content-section .options::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(196, 167, 118, 0.8);
  cursor: pointer;
}

#sidebar .content-section .options::-webkit-scrollbar-thumb:hover {
  background-color: #c4a776;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .options {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#sidebar .content-section .options .elem {
  color: #555962;
  font-size: 21px;
  font-weight: 500;
  line-height: 33px;
  -webkit-transition: 400ms;
  transition: 400ms;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 750px) {
  #sidebar .content-section .options .elem {
    font-size: 20px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .options .elem {
    font-size: 19px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 400px) {
  #sidebar .content-section .options .elem {
    font-size: 18px;
    line-height: 29px;
  }
}

#sidebar .content-section .options .elem.active {
  font-weight: 600;
}

#sidebar .content-section .options .elem.active::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #555962;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

#sidebar .content-section .social-container {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
}

#sidebar .content-section .social-container .social {
  height: 30px;
  width: 30px;
  min-height: 30px;
  min-width: 30px;
  background-color: #555962;
  border-radius: 7px;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .social-container .social {
    height: 25px;
    width: 25px;
    min-height: 25px;
    min-width: 25px;
  }
}

#sidebar .content-section .social-container .social:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#sidebar .content-section .social-container .social.facebook {
  background-image: url("../assets/social/facebook.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .social-container .social.facebook {
    background-size: 8px;
  }
}

#sidebar .content-section .social-container .social.linkedin {
  background-image: url("../assets/social/linkedin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .social-container .social.linkedin {
    background-size: 12px;
  }
}

#sidebar .content-section .social-container .social.instagram {
  background-image: url("../assets/social/instagram.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .social-container .social.instagram {
    background-size: 12px;
  }
}

#sidebar .content-section .social-container .social.whatsapp {
  background-image: url("../assets/social/whatsapp.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .social-container .social.whatsapp {
    background-size: 12px;
  }
}

#sidebar .content-section .bottom {
  width: 100%;
  text-align: center;
  color: #555962;
  font-size: 13px;
  font-weight: 600;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 750px) {
  #sidebar .content-section .bottom {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  #sidebar .content-section .bottom {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  #sidebar .content-section .bottom {
    font-size: 12px;
    line-height: 20px;
  }
}

footer {
  background-color: #F2F1ED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

footer .center {
  width: 100%;
  max-width: 1366px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .center .top {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding: 30px 50px;
}

@media only screen and (max-width: 750px) {
  footer .center .top {
    padding: 30px 30px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .top {
    padding: 30px 10px;
  }
}

footer .center .top .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

@media only screen and (max-width: 570px) {
  footer .center .top .logo {
    margin-bottom: 20px;
  }
}

footer .center .top .logo img {
  width: 130px;
  height: auto;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 750px) {
  footer .center .top .logo img {
    width: 110px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .top .logo img {
    width: 90px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .top .logo img {
    width: 70px;
  }
}

footer .center .top .content-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

footer .center .top .content-container .left,
footer .center .top .content-container .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer .center .top .content-container .left .inner-box,
footer .center .top .content-container .right .inner-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 750px) {
  footer .center .top .content-container .left .inner-box,
  footer .center .top .content-container .right .inner-box {
    width: 100%;
  }
}

footer .center .top .content-container .left .header,
footer .center .top .content-container .right .header {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-bottom: 15px;
  position: relative;
  color: rgba(51, 51, 51, 0.9);
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media only screen and (max-width: 750px) {
  footer .center .top .content-container .left .header,
  footer .center .top .content-container .right .header {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .top .content-container .left .header,
  footer .center .top .content-container .right .header {
    font-size: 15px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .top .content-container .left .header,
  footer .center .top .content-container .right .header {
    font-size: 15px;
    line-height: 26px;
  }
}

footer .center .top .content-container .left .header::after,
footer .center .top .content-container .right .header::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 80px;
  height: 2px;
  border-radius: 2px;
  background-color: #555962;
}

footer .center .top .content-container .left .contents,
footer .center .top .content-container .right .contents {
  margin-top: 8px;
}

footer .center .top .content-container .left .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 750px) {
  footer .center .top .content-container .left .contents {
    width: 100%;
  }
}

footer .center .top .content-container .left .elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .center .top .content-container .left .elem .ico {
  height: 25px;
  width: 25px;
  min-height: 25px;
  min-width: 25px;
}

footer .center .top .content-container .left .elem .ico.location {
  background-image: url("../assets/social/location.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}

footer .center .top .content-container .left .elem .ico.phone {
  background-image: url("../assets/social/phone.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}

footer .center .top .content-container .left .elem .ico.mail {
  background-image: url("../assets/social/mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}

footer .center .top .content-container .left .elem .txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(51, 51, 51, 0.7);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 750px) {
  footer .center .top .content-container .left .elem .txt {
    font-size: 14px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .top .content-container .left .elem .txt {
    font-size: 13px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .top .content-container .left .elem .txt {
    font-size: 13px;
    line-height: 23px;
  }
}

@-webkit-keyframes moveBar {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

@keyframes moveBar {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

footer .center .top .content-container .left .elem .txt:hover::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -100%;
  height: 2px;
  width: 100%;
  background-color: #C4A776;
  -webkit-animation: moveBar 600ms;
          animation: moveBar 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

footer .center .top .content-container .right .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

footer .center .top .content-container .right .elem {
  width: 180px;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(51, 51, 51, 0.7);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 750px) {
  footer .center .top .content-container .right .elem {
    font-size: 14px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .top .content-container .right .elem {
    font-size: 13px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .top .content-container .right .elem {
    font-size: 13px;
    line-height: 23px;
  }
}

@keyframes moveBar {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

footer .center .top .content-container .right .elem:hover::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -100%;
  height: 2px;
  width: 100%;
  background-color: #C4A776;
  -webkit-animation: moveBar 600ms;
          animation: moveBar 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

footer .center .top .social-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 25px;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 570px) {
  footer .center .top .social-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
  }
}

footer .center .top .social-container .social {
  height: 30px;
  width: 30px;
  min-height: 30px;
  min-width: 30px;
  background-color: #555962;
  border-radius: 7px;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media only screen and (max-width: 570px) {
  footer .center .top .social-container .social {
    height: 25px;
    width: 25px;
    min-height: 25px;
    min-width: 25px;
  }
}

footer .center .top .social-container .social:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

footer .center .top .social-container .social.facebook {
  background-image: url("../assets/social/facebook.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px;
}

@media only screen and (max-width: 570px) {
  footer .center .top .social-container .social.facebook {
    background-size: 8px;
  }
}

footer .center .top .social-container .social.linkedin {
  background-image: url("../assets/social/linkedin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

@media only screen and (max-width: 570px) {
  footer .center .top .social-container .social.linkedin {
    background-size: 12px;
  }
}

footer .center .top .social-container .social.instagram {
  background-image: url("../assets/social/instagram.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

@media only screen and (max-width: 570px) {
  footer .center .top .social-container .social.instagram {
    background-size: 12px;
  }
}

footer .center .top .social-container .social.whatsapp {
  background-image: url("../assets/social/whatsapp.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

@media only screen and (max-width: 570px) {
  footer .center .top .social-container .social.whatsapp {
    background-size: 12px;
  }
}

footer .center .bottom {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 50px;
}

footer .center .bottom::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 1px;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.3);
}

@media only screen and (max-width: 750px) {
  footer .center .bottom {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .bottom {
    padding: 25px 20px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .bottom {
    padding: 20px 10px;
  }
}

footer .center .bottom .txt {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: #555962;
}

@media only screen and (max-width: 750px) {
  footer .center .bottom .txt {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  footer .center .bottom .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  footer .center .bottom .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

.section {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section .center {
  width: 100%;
  max-width: 1366px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 50px;
  padding-left: 50px;
}

@media only screen and (max-width: 750px) {
  .section .center {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 570px) {
  .section .center {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .section .center {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.image-full-section {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.image-full-section.hide {
  display: none;
}

.image-full-section .center {
  width: 100%;
  height: 100%;
  max-width: 1366px;
  overflow: hidden;
  padding-right: 50px;
  padding-left: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 750px) {
  .image-full-section .center {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 570px) {
  .image-full-section .center {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .image-full-section .center {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.image-full-section .center .close-btn {
  position: absolute;
  top: 35px;
  height: 50px;
  width: 50px;
  right: 45px;
  background-image: url("../assets/close_white.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .image-full-section .center .close-btn {
    height: 45px;
    width: 45px;
  }
}

@media only screen and (max-width: 570px) {
  .image-full-section .center .close-btn {
    right: 30px;
    height: 35px;
    width: 35px;
  }
}

@media only screen and (max-width: 400px) {
  .image-full-section .center .close-btn {
    right: 20px;
    height: 30px;
    width: 30px;
  }
}

.image-full-section .center .close-btn:hover {
  opacity: 1;
}

.image-full-section .center .image-section {
  height: 100%;
  width: 100%;
}

.image-full-section .center .image-section img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.notification-icon {
  height: 40px;
  width: 40px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  position: fixed;
  top: 80vh;
  right: 80px;
  background-image: url(../assets/notification/notification_dark.svg);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: 600ms;
  transition: 600ms;
  z-index: 999;
}

@media only screen and (max-width: 750px) {
  .notification-icon {
    right: 45px;
  }
}

@media only screen and (max-width: 570px) {
  .notification-icon {
    right: 30px;
  }
}

@media only screen and (max-width: 400px) {
  .notification-icon {
    right: 25px;
  }
}

.notification-icon:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.notification-drawer {
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  z-index: 1000;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-transition: 800ms;
  transition: 800ms;
}

.notification-drawer.hide {
  right: -100%;
}

.notification-drawer .header-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notification-drawer .header-section .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.notification-drawer .header-section .left .icon {
  height: 22px;
  width: 22px;
  background-image: url(../assets/notification/notification_dark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px;
}

.notification-drawer .header-section .left .txt {
  background-size: 18px;
  color: #555962;
  font-weight: 500;
}

.notification-drawer .header-section .close-btn {
  height: 22px;
  width: 22px;
  background-image: url(../assets/notification/close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.notification-drawer .header-section .close-btn:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.notification-drawer .content-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.notification-drawer .content-section::-webkit-scrollbar-track {
  background-color: white;
  border: 5px;
  border-radius: 0px;
}

.notification-drawer .content-section::-webkit-scrollbar {
  width: 8px;
  max-width: 8px;
  max-height: 8px;
  height: 8px;
  background-color: #dbc9ab;
  border-radius: 0px;
  cursor: pointer;
}

.notification-drawer .content-section::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(196, 167, 118, 0.8);
  cursor: pointer;
}

.notification-drawer .content-section::-webkit-scrollbar-thumb:hover {
  background-color: #c4a776;
}

.notification-drawer .content-section .content {
  color: #555962;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
  -webkit-transition: 400ms;
  transition: 400ms;
  font-weight: 500;
}

.notification-drawer .content-section .content:hover {
  color: #000000;
}

form .content .box {
  position: relative;
}

form .content .box .option-container {
  position: absolute;
  left: 0px;
  top: 50px;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  max-height: 250px;
  overflow-y: auto;
  -webkit-transition: 600ms;
  transition: 600ms;
}

form .content .box .option-container.hide {
  display: none;
}

form .content .box .option-container::-webkit-scrollbar-track {
  background-color: white;
  border: 5px;
  border-radius: 0px;
}

form .content .box .option-container::-webkit-scrollbar {
  width: 8px;
  max-width: 8px;
  max-height: 8px;
  height: 8px;
  background-color: #dbc9ab;
  border-radius: 0px;
  cursor: pointer;
}

form .content .box .option-container::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(196, 167, 118, 0.8);
  cursor: pointer;
}

form .content .box .option-container::-webkit-scrollbar-thumb:hover {
  background-color: #c4a776;
}

form .content .box .option-container .option {
  background-color: rgba(51, 51, 51, 0.1);
  line-height: 22px;
  font-size: 13px;
  color: #555962;
  padding: 7px 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: 400ms;
  transition: 400ms;
}

form .content .box .option-container .option:hover {
  background-color: #dbc9ab;
}
/*# sourceMappingURL=style.css.map */