/*Google Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lobster&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  scrollbar-color: var(--second-color) var(--text-color);
  scrollbar-width: 14px;
  scrollbar-width: initial;
  /*box-sizing: border-box;*/
}

*:disabled {
  background-color: rgb(196, 196, 196);
  color: rgb(121, 119, 119);
}


/*Variables */

:root {
  --container-color: #74c4c4;
  --hover-color: #049c9b;
  --second-color: #1e81b0;
  --primary-color: #4034e8;
  --primary-color: #c92162;
  --primary-color-transparent: #fb9a1c56;
  --text-color: #21130d;
  --bg-color: #fff;
  --black-transparent: rgba(0, 0, 0, 0.5);
  --gradient-bg: linear-gradient(180deg, #bae3f7, #dbd5d5e0);
  --table-head-color: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
  --table-row-hover-color: #049c9c;
  --danger-color: #991700;
  --fine-color: #007523;
  --disabled-color: rgb(107, 107, 107);
  --bg-img: url('/res/img/background_light_theme.png');

  --button-color: #6258f1;
  --button-hover-color: #0a5464;
  --button-neg-color: #d12405;
  --button-pos-color: #09ad04;

  --moz-fill: -moz-available;
  /* --bg-img:url('/img/margero_icon.jpg'); */

}

::selection {
  color: var(--bg-color);
  background: var(--second-color);
}

@supports (scrollbar-color: auto) {
  * {
    scrollbar-color: var(--second-color) var(--text-color);
    scrollbar-width: 14px;
    scrollbar-width: initial;
  }
}

@supports selector(::-webkit-scrollbar) {

  /* width */
  ::-webkit-scrollbar {
    width: 13px;
    background-color: black;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--text-color);
    background: black;
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--second-color);
    border-radius: 10px;
  }

  /* Buttons */
  ::-webkit-scrollbar-button:single-button {
    background-color: var(--text-color);
    display: block;
    border-style: solid;
    height: 13px;
    width: 16px;
  }

  /* Up */
  ::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ededed transparent;
  }

  ::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #ededed transparent;
  }

  /* Down */
  ::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 8px 8px 0 8px;
    border-color: #ededed transparent transparent transparent;
  }

  ::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: #ededed transparent transparent transparent;
  }
}

iframe {
  width: -webkit-fill-available;
  width: -moz-available;
  height: -webkit-fill-available;
  height: -moz-available;
  border: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
  border-radius: 10px;
  cursor: zoom-in;
}

section {
  padding: 3rem 0 2rem;
}

i {
  font-weight: 600px;
}

.box-icon {
  font-size: x-large;
  height: 100%;
  width: 100%;
}

.disabled {
  background-color: gray;
  color: black;
  border: 0px;
  outline: none;
  cursor: not-allowed;
}

.disabled:hover {

  background-color: gray;
  color: black;
}

.hidden {
  display: none;
}

.container {
  max-width: 1068px;
  margin: auto;
  width: 100%
}

.slide-progress-container {
  display: block;
  /* height: 28px; */
  width: 100%;
  /* background-color: var(--cell-boders); */
  border-bottom: 1px solid var(--cell-boders);
  border-top: 1px solid var(--cell-boders);
  border-radius: 10px;
  padding: 1px;
  overflow: hidden;
  position: relative;
}

.slide-progress-track {
  display: block;
  border-radius: 10px;
  height: 5px;
  width: 54%;
  animation: slide-left 10s;
}

.slide-progress-container div:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background-color: var(--second-color);
  border-radius: 10px;
  animation: box-1 2100ms cubic-bezier(0.65, 0.81, 0.73, 0.4) infinite;
}

.slide-progress-container div:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background-color: var(--second-color);
  border-radius: 10px;
  animation: box-2 2100ms cubic-bezier(0.16, 0.84, 0.44, 1) infinite;
  animation-delay: 1150ms;
}

.page-title-container {
  display: flex;
  width: 100%;
  justify-content: center;
  border-bottom: 5px solid var(--second-color);
  margin-bottom: 8px;

}

.page-title {
  display: flex;
  background: var(--second-color);
  color: white;
  padding: 5px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  width: fit-content;
  min-width: 445px;
  justify-content: center;
  font-weight: bold;
}

@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes box-1 {
  0% {
    left: -35%;
    right: 100%;
  }

  60%,
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes box-2 {
  0% {
    left: -200%;
    right: 100%;
  }

  60%,
  100% {
    left: 107%;
    right: -8%;
  }
}

/*header*/
body,
html,
main {
  height: -webkit-fill-available;
  height: -moz-available;
  height: 100%;
}

body {
  margin: 0;
  /* background-image: var(--bg-img);*/
  background-repeat: no-repeat;
  background-size: cover;
}

.main_body {
  background: var(--gradient-bg);
  position: absolute;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  width: -moz-available;
  height: -moz-available;
  bottom: 0;
  top: 0;
}

header {
  position: fixed;
  background: var(--container-color);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}

header.shadow {
  background: var(--text-color);
  box-shadow: 0 1px 4px hsla(0 4% 14% / 10%);
  transition: 0.4s;
}

header.shadow .logo {
  color: var(--bg-color)
}


/*Loading Panel*/

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-panel-modal {
  display: none;
  background: var(--black-transparent);
  /* opacity: .1; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50000;
  width: 100%;
  height: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}

.loading-panel-box {
  position: relative;
  background: var(--black-transparent);
  display: flex;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  align-content: space-between;
  flex-direction: column;
}

.loading-panel-header {
  display: flex;
  width: 100%;
  font-weight: bolder;
  justify-content: space-between;
}

.loading-panel-middle-content {
  display: flex;
  height: -webkit-fill-available;
  height: -moz-available;
  flex-direction: column;
  align-items: center;
  color: var(--bg-color);
  justify-content: center;
}

.loading-panel-img {
  display: block;
  width: 100px;
  cursor: unset;
}

.loading-panel-footer {
  display: block;
}


/*box-modal*/

.popup-modal-content {
  /* background: var(--bg-img);
    background-repeat: no-repeat;*/
  background: #a0abad;
  background-size: cover;
  color: black;
  margin: auto;
  position: fixed;
  padding: 34px;
  padding-top: 10px;
  padding-bottom: 10px;
  /* padding-left: 43px;
    padding-right: 62px;*/
  border-radius: 14px;
  border: 1px solid #888;
  top: 30px;
  left: 76px;
  right: 76px;
  bottom: 30px;
  min-width: 626px;
  width: fit-content;
  height: fit-content;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.popup-modal-middle {
  overflow-y: auto;
  max-height: 548px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.restrict-edit-modal {
  display: none;
  width: -webkit-fill-available;
  width: -moz-available;
  height: -webkit-fill-available;
  height: -moz-available;
  position: absolute;
  background-color: var(--cell-boders);
  z-index: 12;
}

.popup-modal-middle iframe {
  height: 383px;
  max-height: 383px;
  width: 100%;
}

.popup-modal-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 30px;
}

.popup-modal-header-text {
  display: block;
}

.popup-modal-close {
  font-weight: bolder;
  background: red;
  padding: 10px;
  border-radius: 50%;
  padding: 7px;
  font-size: medium;
  height: 17px;
  width: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
}

.popup-modal-close:hover,
.popup-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* Add Animation */

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}


/*Message Box */

.modal {
  display: flex;
  background: var(--black-transparent);
  /* opacity: .1; */
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}

.input-box-modal {
  display: flex;
  background: var(--black-transparent);
  /* opacity: .1; */
  position: fixed;
  z-index: 40000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}

.message-box-modal {
  display: flex;
  background: var(--black-transparent);
  /* opacity: .1; */
  position: fixed;
  z-index: 50000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}

.message-box {
  position: relative;
  background: white;
  /* text-align: center; */
  display: flex;
  /* opacity: 100%; */
  max-width: 38%;
  max-height: 508px;
  min-width: 500px;
  min-height: 215px;
  border-radius: 10px;
  padding: 10px;
  border: solid 1px var(--second-color);
  justify-content: space-between;
  align-items: center;
  align-content: space-between;
  flex-direction: column;
  animation: zoomIn 0.7s;
}

.file_upload_middle_content {
  width: -webkit-fill-available;
  width: -moz-available;
}

.message-box img {
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: -75px;
  background: white;
  border-radius: 93px;
}

.constent-message-box-button-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  justify-content: space-evenly;
}

.toast-message-box-modal {
  display: flex;
  background: var(--black-transparent);
  /* opacity: .1; */
  position: fixed;
  z-index: 50000;
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  bottom: 40px;
  width: 100%;
  height: fit-content;
  align-items: center;
  justify-content: center;
}

.toast-message-box {
  position: absolute;
  background: var(--nav-color);
  bottom: 10px;
  /* text-align: center; */
  display: flex;
  /* opacity: 100%; */
  max-width: 545px;
  max-height: 532px;
  min-width: 500px;
  min-height: 70px;
  border-radius: 10px;
  padding: 10px;
  border: solid 1px var(--bg-color);
  justify-content: center;
  align-items: center;
  align-content: space-between;
  flex-direction: column;
  animation: animateFromBottom 0.7s;
}

.toast-message-box-middle-content {
  display: flex;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  height: -moz-available;
  width: -moz-available;
  align-items: center;
}

.toast-message-state-icon {
  display: block;
  font-size: xxx-large;
}

.toast-message-display {
  width: -webkit-fill-available;
  width: -moz-available;
  font-size: larger;
  color: white;
}

/* Add Animation */

@keyframes animateFromBottom {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
    /* Optional: fade in effect */
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.message-box-header {
  display: flex;
  width: 100%;
  font-weight: bolder;
  justify-content: space-between;
}

.message-box-middle-content {
  display: flex;
  font-size: larger;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.message-box-footer {
  display: block;
}

.message-box-close-button-container {
  display: block;
  font-weight: bolder;
  color: var(--second-color);
  cursor: pointer;
}

.message-box-close-button {
  display: block;
}


/*details pop up window*/

.detail-box-modal {
  display: flex;
  background: var(--black-transparent);
  /* opacity: .1; */
  position: fixed;
  z-index: 50000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}

.detail-box-body {
  position: relative;
  width: -webkit-fill-available;
  width: -moz-available;
  transition: 0.1s ease;
}

.detail-box {
  position: absolute;
  /* height: -webkit-fill-available; */
  background: white;
  text-align: center;
  opacity: 100%;
  min-width: -webkit-fill-available;
  min-width: -moz-available;
  /* min-height: -webkit-fill-available; */
  min-height: -moz-available;
  margin: 10px 10px;
  border-radius: 10px;
  padding: 3px;
  border: solid 1px var(--second-color);
  justify-content: space-between;
  align-items: center;
  align-content: space-between;
  flex-direction: column;
  animation: animatetop 0.7s;
  overflow: hidden;
  transition: 0.1s ease;
}

.detail-box-header {
  display: flex;
  font-weight: bolder;
  justify-content: space-between;
  font-size: 22px;
  padding-left: 34px;
  padding-right: 34px;
  /* background-color: var(--cell-boders); */
  border-radius: 10px;
  width: -webkit-fill-available;
  width: -moz-available;
}

.detail-box-middle-content {
  display: block;
  width: -webkit-fill-available;
  width: -moz-available;
  /* height: -webkit-fill-available; */
  /* height: 100%; */
  background-color: var(--cell-boders);
  position: relative;
  transition: 0.1s ease;
}

.detail-box-footer {
  display: block;
}

.detail-box-close-button-container {
  display: block;
  position: relative;
  /* font-weight: bolder; */
  /* color: var(--second-color); */
  cursor: pointer;
  right: 0%;
}

.detail-box-close-button {
  display: block;
}


/*----------*/


/*media-viewer-box*/

.media-viewer-box {
  display: block;
  padding-left: 79px;
  padding-right: 79px;
  width: -webkit-fill-available;
  width: -moz-available;
  height: -webkit-fill-available;
  height: -moz-available;
  position: fixed;
  overflow-y: auto;
  background: var(--black-transparent);
}

.media-viewer-header {
  display: block;
  height: 53px;
  position: fixed;
  width: -webkit-fill-available;
  width: -moz-available;
}

.media-viewer-middle-content {
  display: flex;
  /* margin-top: 62px; */
  justify-content: center;
  align-items: center;
}

.media-viewer-img {
  display: block;
  height: 580px;
  width: auto;
  border-radius: 16px;
  border: 5px groove white;
  background: gray;
  cursor: unset;
}

.media-viewer-img img {
  width: 0%;
}

.media-viewer-close-button-container {
  display: block;
  width: fit-content;
  position: relative;
  float: right;
}

.media-viewer-close-button {
  width: 20px;
  height: 20px;
  border: 2px groove white;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 7px;
  font-weight: bolder;
  font-size: xx-large;
  cursor: pointer;
}

.top-bar {
  background: var(--text-color);
  width: 100%;
  height: 3rem;
  padding: 1rem;
}

.top-bar-inner-container {
  display: flex;
  max-width: 1068px;
  width: 100%;
  margin: auto;
  justify-content: space-between;
}

.top-bar-scrolled {
  visibility: hidden;
  padding: 0px;
  height: 1px;
  background: var(--text-color);
}

.top-bar-content-container {
  color: var(--bg-color);
}

.top-bar-content-container a {
  text-decoration: none;
  color: var(--bg-color);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  width: 100px;
  font-size: 2rem;
  font: 2.5rem;
  margin-right: 1rem;
  font-weight: 700;
  color: var(--bg-color);
}

.logo span {
  color: var(--second-color);
}

.login {
  padding: 8px 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  background: var(--second-color);
  color: var(--bg-color);
  display: none;
}

.login:hover {
  background: #eab676;
  transition: 0.3s;
}


/*Nav Menu*/

.nav-menu {
  display: inline-flex;
  color: var(--bg-color);
  width: 100%;
  font-size: 1rem;
  border-radius: 10px;
  margin-left: 38px;
  margin-right: 10px;
}

.nav-menu-scrolled {
  display: inline-flex;
  color: var(--second-color);
  width: 100%;
  font-size: 1rem;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.nav-menu-responsive {
  display: flex;
  position: absolute;
  background: var(--text-color);
  flex-direction: column;
  float: none;
  text-align: left;
  width: 100%;
  max-width: 1000px;
  font-size: 1rem;
  border-radius: 10px;
  margin-left: 0;
  margin-top: 200px;
}

.nav-menu-responsive a {
  display: block;
  color: var(--bg-color);
}

.nav-menu-responsive a:hover {
  background-color: var(--second-color);
  color: var(--bg-color);
}

.nav-menu-responsive .menu-dropdown-btn {
  display: block;
  margin: 0;
  margin-bottom: 0;
  margin-bottom: 0;
  background: inherit;
  outline: none;
  border: none;
  font-size: 1rem;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--bg-color);
}

.button-text {
  bottom: 0%;
  color: var(--bg-color);
}

.nav-menu a {
  color: var(--bg-color)
}

.nav-menu-item {
  margin: 1rem;
}


/* The dropdown container */

.menu-dropdown {
  float: left;
  overflow: hidden;
  margin: 0;
}

.menu-dropdown .menu-dropdown-btn {
  margin: 0;
  background: inherit;
  outline: none;
  border: none;
  font-size: 1rem;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--bg-color);
}

.menu-toggle .menu-toggle-btn {
  margin: 0;
  background: inherit;
  display: none;
  outline: none;
  border: none;
  font-size: 2rem;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--bg-color);
}

.menu-toggle-btn .bx-x {
  display: none;
}

.dropdown-submenu {
  position: absolute;
  display: none;
  background: var(--text-color);
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
}

.dropdown-submenu a {
  display: block;
  padding: 10px;
}

.nav-menu a:hover {
  color: var(--second-color);
  transition: 1s;
}

.menu-dropdown-btn:hover {
  color: var(--second-color);
  transition: 1s;
}

.menu-dropdown:hover .dropdown-submenu {
  display: block;
}

.menu-toggle-btn:hover .nav-menu {
  display: block;
}


/* Slide Show*/

.slideshow-container {
  position: relative;
  width: 100%;
  height: fit-content;
  display: block;
  margin-top: 130px;
  background-size: 400% 400%;
  background: linear-gradient(-45deg, #ffffff, #23a6d5, #23d5ab, #21130d);
  animation: gradient 15s ease infinite;
}

.mySlides {
  vertical-align: middle;
  flex-direction: column;
  width: 100%;
  height: 500px;
  display: none;
}

.slide-img {
  width: 100%;
  height: 570px;
}

.mySlides img {
  scale: fit;
}


/*Slide Next & Previous buttons*/

.next-slide,
.prev-slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 100;
}

.prev-slide {
  left: 0;
}

.next-slide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.next-slide:hover,
.prev-slide:hover {
  background-color: var(--second-color);
}


/*Slide Caption*/

.slide-caption {
  display: block;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 35px;
  padding: 8px 12px;
  position: absolute;
  text-align: justify;
  bottom: 50%;
  width: 50%;
  text-align: center;
  -webkit-text-stroke: var(--container-color);
  -webkit-text-stroke: 1px var(--container-color);
}

.slide-number-text {
  display: none;
}

.slide-caption-bold {
  font-size: 40px;
  font-weight: 1000;
  color: var(--second-color)
}

.slide-one-caption {
  display: block;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 35px;
  padding: 8px 12px;
  position: absolute;
  text-align: justify;
  top: 28%;
  right: 25%;
  background-color: var(--container-color);
  background: rgba(0, 0, 0, .5);
  transition: opacity 0.3s;
  border-image: linear-gradient(98deg, #009999, #ff000000) 1;
  border-width: 6px;
  border-style: solid;
  width: 60%;
  text-align: center;
}

.slide-two-caption {
  display: block;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 35px;
  padding: 8px 12px;
  position: absolute;
  text-align: justify;
  top: 28%;
  right: 25%;
  background-color: var(--container-color);
  background: rgba(0, 0, 0, .5);
  transition: opacity 0.3s;
  border-image: linear-gradient(98deg, #009999, #ff000000) 1;
  border-width: 6px;
  border-style: solid;
  width: 60%;
  text-align: center;
}

.slide-three-caption {
  display: block;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 35px;
  padding: 8px 12px;
  position: absolute;
  text-align: justify;
  top: 28%;
  right: 25%;
  background-color: var(--container-color);
  background: rgba(0, 0, 0, .5);
  transition: opacity 0.3s;
  border-image: linear-gradient(98deg, #009999, #ff000000) 1;
  border-width: 6px;
  border-style: solid;
  width: 60%;
  text-align: center;
}


/* Number text (1/3 etc) */

.slide-number-text {
  color: var(--bg-color);
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* The dots/bullets/indicators */

.slide-dot-container {
  align-items: center;
  text-align: center;
  padding: 1px;
  border-radius: 50%;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: var(--container-color);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: var(--second-color);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}


/* Slide show Fading animation */

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}


/* Home */

.home-text {
  color: var(--bg-color);
  text-align: center;
}

.home-title {
  font-size: 3.5rem;
}

.home-subtitle {
  font-size: 1rem;
  font-weight: 400;
}


/*Page Sections*/

.page-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  padding: 10px;
  width: 100%;
  margin-top: 36px;
  height: 500px;
  background: linear-gradient(-45deg, #ffffff, #23a6d5, #23d5ab, #21130d);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  border-radius: 10px;
  margin-left: 0px;
  margin-right: 0px;
  align-items: center;
}

.section-text {
  font-size: 20px;
}

.page-section-text-container {
  padding-left: 5%;
  padding-right: 5%;
  align-items: center;
  vertical-align: top;
}

.page-section-inner-container {
  align-items: center;
}

.page-section-img-container {
  box-shadow: 0 4px 14px hsla(0, 0%, 2%, 0.1);
  padding: 20px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--bg-color);
  background-size: 400% 400%;
}

.page-section-img-container img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: var(--container-color);
  border-width: 20px;
  border-style: double;
}

.section-title {
  width: 100%;
  font-size: 40px;
  font-weight: bold;
  color: var(--text-color);
}

.section-title-bold {
  font-size: 50px;
  font-weight: bolder;
  background: -webkit-linear-gradient(#009999, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*About Page Sections*/

.about-page-section {
  margin: auto;
  max-width: 1068px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  padding: 10px;
  width: 100%;
  height: 500px;
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  border-radius: 10px;
  align-items: center;
}

.about-section-text {
  font-size: 20px;
}

.about-page-section-text-container {
  padding-left: 5%;
  padding-right: 5%;
  align-items: center;
  vertical-align: top;
}

.about-page-section-inner-container {
  align-items: center;
}

.about-page-section-img-container {
  box-shadow: 0 4px 14px hsla(0, 0%, 2%, 0.1);
  padding: 20px;
  width: 450px;
  height: 420px;
  border-radius: 5%;
  background: var(--container-color);
  background-size: 400% 400%;
}

.about-page-section-img-container img {
  border-radius: 5%;
  width: 100%;
  height: 100%;
  border: var(--bg-color);
  border-width: 20px;
  border-style: double;
}

.about-section-title {
  width: 100%;
  font-size: 40px;
  font-weight: bold;
  color: var(--text-color);
}

.about-section-title-bold {
  font-size: 50px;
  font-weight: bolder;
  background: -webkit-linear-gradient(#009999, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.filter-container {
  margin-top: 4rem;
}

.services_title {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.post-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  margin-top: 2rem !important;
}

.filter-item {
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.active-filter {
  background: var(--second-color);
  color: var(--bg-color);
  padding: 4px 10px;
  border-radius: 4px;
}

.post {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 1.5rem;
}

.post-box {
  background: var(--bg-color);
  box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
  padding: 15px;
  border-radius: 0.5rem;
}

.post-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.category {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--second-color);
}

.post-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  display: -webkit-box;
}

.post-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-date {
  display: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
}

.post-description {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile {
  display: none;
  align-items: center;
  gap: 10px;
}

.profile-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--second-color);
}

.profile-name {
  font-size: 0.82rem;
  font-weight: 500;
}

.footer {

  position: fixed;
  height: 45px;
  color: white;
  width: 100%;
  background-color: var(--nav-color);
  bottom: 0;
  z-index: 10;
  /* Higher than pagination */
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer p {
  font-size: 0.938rem;
}

.footer a {
  text-decoration: none;
  color: white;
  font-size: 0.938rem;
}

.social {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.social .bx {
  font-size: 1.4rem;
  color: white;
}

.social .bx:hover {
  color: var(--second-color);
  transition: 0.3s all linear;
}

.post-header {
  width: 100%;
  height: 500px;
  background: var(--container-color);
}

.post-container {
  max-width: 800px;
  margin: auto;
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem !important;
}

.back-home {
  color: var(--second-color);
  font-size: 0.9rem;
}

.header-title {
  width: 90%;
  font-size: 2.6rem;
  color: var(--bg-color);
  text-align: center;
  margin-bottom: 1rem;
}

.header-img-box {
  padding: 15px;
  box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
  border-radius: 10px;
}

.header-img {
  width: 600px;
  height: 400px;
  object-position: center;
  border: var(--bg-color);
  border-width: 20px;
  border-radius: 50px;
}

.post-content {
  margin-top: 0.01rem !important;
}

.sub-heading {
  font-size: 1.2rem;
}

.post-details-header {
  width: 100%;
  height: 200px;
  background: var(--container-color);
}

.post-text {
  font-size: 1rem;
  line-height: 1.7rem;
  margin: 1rem 0;
  text-align: justify;
}

.share {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.share-title {
  font-size: 1.1rem;
}

.post-inner-container {
  display: flex;
  align-items: center;
  margin: 20px;
}

.service-packages {
  display: grid;
  background: var(--container-color);
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  justify-content: center;
  gap: 1.5rem;
}

.package-box {
  width: 300px;
  text-align: justify;
  max-width: 300px;
  display: flex;
  background: var(--bg-color);
  border-radius: 10px;
  flex-direction: column;
  padding: 10px;
  line-height: 3rem;
  align-items: center;
  box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
}

.package-box:hover {
  background: var(--container-color);
  color: var(--bg-color);
}

.package-title {
  text-align: center;
}

.package-infor {
  font-size: 20px;
  text-align: center;
}

.package-cost {
  display: flex;
  flex-direction: column;
  font-size: 50px;
  font-weight: 600;
  align-items: center;
  line-height: 20px;
}

.currency-tag {
  vertical-align: top;
  font-size: 20px;
  font-weight: lighter;
  color: red;
  padding: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.currency-post-fix {
  float: left;
  vertical-align: bottom;
  font-size: 10px;
  font-weight: lighter;
  color: var(--text-color);
  padding: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
}


/*About Us*/

.about-sub-conainer {
  display: grid;
  background: var(--container-color);
  grid-template-columns: repeat(auto-fit, minmax(500px, auto));
  justify-content: center;
  gap: 1.5rem;
}


/*Contact Us From*/

.contact-us-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  padding: 30px;
  padding-bottom: 10px;
  border: 1px solid #ced4da;
  border-radius: 1rem;
  box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
}

label.cf-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.cf-input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.cf-input-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  outline: none;
  border-radius: 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

select.cf-input-control[size],
select.cf-input-control[multiple] {
  height: auto;
}

textarea.cf-input-control {
  font-family: -apple-system, Arial, sans-serif;
  height: auto;
}

.cf-btn {
  align-self: center;
  margin-top: 10px;
  display: inline-block;
  font-weight: 400;
  background: var(--second-color);
  border: 1px solid transparent;
  color: var(--bg-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.cf-submit-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/*Transitions*/

.cf-input-control:hover {
  border: 1px solid var(--container-color);
}

.cf-input-control:focus {
  border: 1px solid var(--second-color);
}

.cf-btn:hover {
  background: #eab676;
  transition: 0.3s;
}


/*consentDialog */

.consentDialog-modal-outer-container {
  transition: 1.5s;
  display: none;
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.print-consentDialog-modal-container {
  z-index: 1;
  background: var(--bg-color);
  position: absolute;
  width: 600px;
  height: 200px;
  top: 41%;
  right: 27%;
  padding: 10px;
  border-radius: 10px;
  animation: 0.5s slide-right;
}

@keyframes slide-left {
  from {
    margin-left: 0%;

  }

  to {
    margin-left: -100%;
  }
}

.consentDialog-modal-container {
  background: var(--bg-color);
  position: absolute;
  width: 600px;
  height: 200px;
  top: 41%;
  right: 27%;
  padding: 10px;
  border-radius: 10px;
}

.consentPopup-modal-header {
  display: flex;
  justify-content: space-between;
  font-weight: bolder;
  font-size: x-large;
}

.consentPopup-modal-middle {
  display: flex;
  height: 97px;
  width: 100%;
  text-align: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.consentPopup-modal-footer {
  position: absolute;
  width: 100%;
  bottom: 5%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.consentPopup-modal-close {
  cursor: pointer;
}

.pulse {
  position: fixed;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 1);
  opacity: 0;
  border-radius: 50%;
  z-index: 100;
}

.pulse.active {
  animation: pulse 400ms ease;
}

.count-container {
  background: black;
  display: flex;
  min-width: 17px;
  height: 17px;
  color: white;
  padding: 5px 5px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-weight: normal;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}


/*Skeleton */
/* Skeleton animation */
@keyframes shimmer {
  0% {
    background-position: -468px 0
  }

  100% {
    background-position: 468px 0
  }
}

.skeleton-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.skeleton-header {
  height: 40px;
  width: 60%;
  margin-bottom: 30px;
  background: #f0f0f0;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 800px 104px;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}

.skeleton-card {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.skeleton-image {
  height: 180px;
  width: 100%;
  background: #f0f0f0;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 800px 104px;
  animation: shimmer 1.5s infinite linear;
  margin-bottom: 15px;
  border-radius: 4px;
}

.skeleton-line {
  height: 12px;
  width: 100%;
  margin-bottom: 10px;
  background: #f0f0f0;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 800px 104px;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}

.skeleton-line.short {
  width: 60%;
}

/* Progress Bar Styles */
.progress-container {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 3px 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--second-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/*Skeleton */

/*Response */

@media(max-width:1192px) {
  .section-text {
    font-size: 20px;
  }

  .section-title h1 {
    font-size: 40px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 40px;
    font-weight: bolder;
  }
}

@media(max-width:1060px) {
  .container {
    margin: 0 auto;
    width: 95%;
  }

  .home-text {
    width: 100%;
  }
}

@media(max-width:990px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 25px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 25px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 400px;
  }

  .slide-img {
    width: 100%;
    height: 400px;
  }

  .page-section {
    margin-top: 0px;
  }
}

@media(max-width:905px) {
  .section-text {
    font-size: 20px;
  }

  .section-title h1 {
    font-size: 30px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 35px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 30px;
  }

  .about-page-section {
    display: flex;
    flex-direction: column;
  }

  .about-page-section-img-container {
    width: 200px;
    height: 200px;
  }

  .about-page-section-img-container img {
    width: 100%;
    height: 100%;
  }

  .about-section-text {
    font-size: 15px;
  }

  .about-section-title {
    font-size: 20px;
  }

  .about-section-title-bold {
    font-size: 30px;
  }
}

@media(max-width:878px) {
  .nav {
    padding: 11px 0;
  }

  .post-inner-container {
    display: block;
    align-items: center;
    margin: 20px;
  }

  .header-img-box {
    display: block;
    align-items: center;
    padding: 15px;
    box-shadow: 0 4px 14px hsl(355deg 25% 15%/10%);
    border-radius: 10px;
  }

  .header-img {
    width: 100%;
    height: 400px;
    object-position: center;
    border: var(--bg-color);
    border-width: 20px;
    border-radius: 50px;
  }

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-items: auto;
  }
}

@media(max-width:706px) {
  .top-bar-content-container {
    font-size: 13px;
  }

  .popup-modal-content {
    position: absolute;
    padding: 11px;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: -webkit-fill-available;
    width: -moz-available;
    min-width: unset;
  }

  .popup-modal-middle {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media(max-width:670px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 20px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 20px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 10px;
  }

  .nav-menu {
    font-size: 13px;
  }

  .menu-dropdown .menu-dropdown-btn {
    font-size: 13px;
  }
}

@media(max-width:612px) {
  .top-bar-content-container {
    font-size: 10px;
  }

  .nav-menu {
    font-size: 10px;
  }

  .menu-dropdown .menu-dropdown-btn {
    font-size: 10px;
  }
}

@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }

  .footer {
    display: none;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}


/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/

@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }

  .menu-dropdown .menu-dropdown-btn {
    font-size: 10px;
  }
}




@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}

/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/
@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }
}

.top-bar-content-container {
  font-size: 10px;
}

.nav-menu {
  font-size: 10px;
}

.menu-dropdown .menu-dropdown-btn {
  font-size: 10px;
}

@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}

/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/
@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }
}

.top-bar-content-container {
  font-size: 10px;
}

.nav-menu {
  font-size: 10px;
}

.menu-dropdown .menu-dropdown-btn {
  font-size: 10px;
}

@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}

/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/
@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }
}

.slide-caption-bold {
  font-size: 20px;
  font-weight: 900;
}

.mySlides {
  width: 100%;
  height: 350px;
}

.slide-img {
  width: 100%;
  height: 350px;
}

.top-bar-content-container {
  font-size: 10px;
}

.nav-menu {
  font-size: 13px;
}

.menu-dropdown .menu-dropdown-btn {
  font-size: 13px;
}


@media(max-width:612px) {
  .top-bar-content-container {
    font-size: 10px;
  }

  .nav-menu {
    font-size: 10px;
  }

  .menu-dropdown .menu-dropdown-btn {
    font-size: 10px;
  }
}

@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}

/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/
@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }
}

.nav-menu {
  font-size: 10px;
}

.menu-dropdown .menu-dropdown-btn {
  font-size: 10px;
}

@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}

/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/
@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }
}

@media(max-width:612px) {
  .top-bar-content-container {
    font-size: 10px;
  }

  .nav-menu {
    font-size: 10px;
  }

  .menu-dropdown .menu-dropdown-btn {
    font-size: 10px;
  }
}

@media(max-width:586px) {
  .page-section {
    height: 607px;
  }

  .section-text {
    font-size: 15px;
  }

  .page-section-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title-bold {
    font-size: 25px;
    font-weight: bolder;
  }

  .section-title {
    font-size: 20px;
  }
}

@media(max-width:572px) {
  .menu-toggle .menu-toggle-btn {
    display: block;
    float: right;
    margin: 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu-responsive .menu-dropdown-btn {
    font-size: 1rem;
  }
}

@media(max-width:552px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 18px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 18px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }
}

@media(max-width:520px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 15px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 15px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:478px) {
  .top-bar-content-container {
    font-size: 9px;
  }
}

/* @media(max-width:462px){
        .post{
            grid-template-columns: repeat(2,minmax(280px,auto));
        }
    }*/
@media(max-width:430px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 13px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 350px;
  }

  .slide-img {
    width: 100%;
    height: 350px;
  }

  .top-bar-content-container {
    font-size: 8px;
  }

  .header-img {
    width: 100%;
    height: 250px;
  }

  .post-content {
    margin-top: 0.01rem;
  }

  .post-details-header {
    height: 169px;
  }

  .header-content {
    margin-top: 2rem !important;
  }

  .header-title {
    font-size: 2rem;
  }
}

@media(max-width:370px) {
  .top-bar-content-container {
    font-size: 6px;
  }
}

@media(max-width:361px) {

  .slide-one-caption,
  .slide-two-caption,
  .slide-three-caption {
    font-size: 10px;
    top: 35%;
  }

  .slide-caption-bold {
    font-size: 13px;
    font-weight: 900;
  }

  .mySlides {
    width: 100%;
    height: 300px;
  }

  .slide-img {
    width: 100%;
    height: 300px;
  }

  .filter-item {
    font-size: 0.6rem;
  }
}

@media(max-width:338px) {
  .header-title {
    font-size: 1rem;
  }

  .header-img {
    width: 100%;
    height: 200px;
  }
}