@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap");
@import url("./classes.css");

:root {
  --color-primary: #bfe0fd;
  /* --color-secondary: #0a0824; */
  --color-secondary: #0061aa;
  --text-on-light: #0c1533;
  --text-on-light-alt: #060e7c;
  --text-on-dark: #ffffff;
  --text-on-dark-alt: #bfe0fd;
  --section-space: 40px;
  --text-tertiary: #0061aa;
  /* --fs-n: .5rem; */
  --fs-lg: 2.125rem;
  --fs-xlg: 2.375rem;
}
@media (min-width: 560px) {
  :root {
    --fs-xlg: 3.735rem;
  }
}
@media (min-width: 768px) {
  :root {
    --section-space: 80px;
    /* --fs-n: 1.125rem; */
    --fs-lg: 2.25rem;
    --fs-xlg: 3rem;
  }
}
@media (min-width: 992px) {
  :root {
    --section-space: 80px;
    /* --fs-n: 1.75rem; */
    --fs-lg: 2.25rem;
    --fs-xlg: 3rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --fs-xlg: 3rem;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  transition: all .5s;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: var(--fs-n);
}
section {
  padding: var(--section-space) 0px;
}

a {
  text-decoration: none;
  color: white;
}
ul,
ol {
  display: block;
  list-style: none;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
  font: inherit;
  transition: 0.5s ease;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
h1,
h2 {
  font-weight: 900;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
hr {
  background: var(--color-primary);
  height: 1px;
  border-width: 0;
}
button {
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
  transition: 0.5s ease;
}
.img-ctn {
  border-radius: 25px;
  overflow: hidden;
}
.zoomable{
  cursor: pointer;
}
.button{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button:hover {
  background-color: var(--color-secondary);
  color: white;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.filter-btn{
  font-size: 32px;
  display: flex; justify-content:
  center; align-items: center;
  cursor: pointer;
  position: relative;
  width: 90px;
  height: 90px;
  background: var(--color-secondary);
  border-radius: 999px;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.filter-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.filter-menu{
  position: sticky;
  bottom: 0;
  left: 100vw;
  background: var(--color-secondary);
  max-width: 400px;
  min-height: 30vh;
  border-top-left-radius: 20px;
  overflow: auto;
}

select{
  border-radius: 10px;
  margin-block: 24px;
  font-size: 16px;
}

.dd{
  background: var(--color-primary);
  position: absolute;
  display: none;
  padding: .5em;
  border-radius: 12px;
}
.dd div{
  position: relative;
  border-radius: 6px;
}
.dd div a{
  color: var(--color-secondary);
  display: block;
  position: relative;
  padding-block: 12px;
  padding-inline: 4px;
  width: 100%;
  
}
.dd-ctn:hover .dd{
  display: block;
}
.dd div:hover{
  background: var(--color-secondary);
}
.dd div:hover a{
  color: white;
}

.section-bg-image{
  background-attachment: fixed;
}
.scrll-bg{
  background-attachment: fixed;
}

@media only screen and (max-width: 991px) {
  .dd-ctn{
    position: relative;
    width: 90%;
  }
  .dd{
    position: relative;
    display: block;
    min-width: 100%;
  }
  .dd-ctn > *{
    text-align: center;
  }
  .scrll-bg{
    background-attachment: scroll;
  }
  .section-bg-image{
    background-attachment: scroll;
  }
}

@media only screen and (max-width: 400px) {
  .filter-menu{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}


.img-ctn{
  position: relative;
  overflow: hidden;
}
.prop-code{
  position: absolute;
  color: white;
  background: rgba(0, 97, 170, .65);
  width: 100px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 20px;
  left: 0;
  top: 0;
}
.ribbon{
  z-index: 2;
}

.overlay-container {
  position: relative;
}

.overlay-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  opacity: .5;
  z-index: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}