@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #DF4094;
  --primary-color-light: #FFB1D9;
  --dark-color-1: #000000;
  --dark-color-2: #E2E1E1;
  --dark-color-3: #4A4A4A;
  --light-color-1: #FFFFFF;

  --primary-font: "Elms Sans", sans-serif;
  --secondary-font: "Beautique Display", serif;

  --uc-font-size-16: clamp(14px, 0.833vw, 16px);
  --uc-font-size-18: clamp(14px, 0.938vw, 18px);
  --uc-font-size-20: clamp(14px, 1.042vw, 20px);
  --uc-font-size-22: clamp(15px, 1.146vw, 22px);
  --uc-font-size-23: clamp(16px, 1.198vw, 23px);
  --uc-font-size-24: clamp(17px, 1.250vw, 24px);
  --uc-font-size-26: clamp(18px, 1.354vw, 26px);
  --uc-font-size-28: clamp(20px, 1.458vw, 28px);
  --uc-font-size-30: clamp(21px, 1.563vw, 30px);
  --uc-font-size-32: clamp(22px, 1.667vw, 32px);
  --uc-font-size-40: clamp(24px, 2.083vw, 40px);
  --uc-font-size-45: clamp(27px, 2.344vw, 45px);
  --uc-font-size-50: clamp(30px, 2.604vw, 50px);
  --uc-font-size-57: clamp(34px, 2.969vw, 57px);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  font-family: var(--primary-font);
  color: var(--dark-color-1);
  font-size: var(--uc-font-size-16);
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1294px;
  }
}

a {
  display: inline-block;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* accessibility  focus*/
:focus-visible {
  outline: 3px solid red;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid red;
  outline-offset: 3px;
  border-radius: 4px;
}

a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 16px;   /* adjust size */
  height: 16px;
  margin-left: 6px;

  background-image: url("../images/pdf.png");
  background-size: contain;   /* or 100% 100% */
  background-repeat: no-repeat;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* barba page transition */
main {
  transition: opacity .5s ease, transform .5s ease;
  opacity: 1;
  transform: translateY(0);
}

main.is-leaving {
  opacity: 0;
  transform: translateY(-20px);
}

main.is-entering {
  opacity: 0;
  transform: translateY(20px);
}

main.is-entered {
  opacity: 1;
  transform: translateY(0);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255, 255, 255);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  clip-path: polygon(50% 0%, 68% 32%, 100% 50%, 68% 68%, 50% 100%, 32% 68%, 0% 50%, 32% 32%);
  animation: sparkle-spin 5s linear infinite;
}

@keyframes sparkle-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

button {
  border: none;
}

/* pattern animation */
main {
  position: relative;
  z-index: 9;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

.side-pattern {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(10px, 2.917vw, 56px);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.side-pattern-left {
  left: 0;
}

.side-pattern-right {
  right: 0;
}

.pattern-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url("../images/pattern-strip.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  will-change: transform;
  animation: patternScroll 200s linear infinite;
}

.pattern-inner.reverse {
  animation-direction: reverse;
}

.page-content {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  padding-right: 100px;
}

/* @keyframes patternScroll{from{transform:translateY(0);}to{transform:translateY(-50%);}} */


.srdev-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.img-fluid-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

[class^="primary-btn-"] {
  font-size: var(--uc-font-size-18);
  padding: clamp(14px, 0.938vw, 18px) clamp(18px, 1.302vw, 25px);
  text-align: center;
  border-radius: 500px;
}

.primary-btn-1 {
  background-image: -moz-linear-gradient(90deg, rgba(205, 50, 132, 0.99608) 0%, rgb(236, 73, 159) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(205, 50, 132, 0.99608) 0%, rgb(236, 73, 159) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(205, 50, 132, 0.99608) 0%, rgb(236, 73, 159) 100%);
  color: var(--light-color-1);
  box-shadow: 0px 9px 25px 0px rgba(205, 50, 132, 0.4);
}

[class^="primary-btn-2"] {
  box-shadow: 0px 9px 25px 0px rgba(0, 0, 0, 0.3);
  background: var(--dark-color-1);
  color: var(--light-color-1);
}

.primary-btn-2-sm {
  font-size: 14px;
  padding-block: 20px;
}

[class^="primary-btn-"]:hover,
[class^="primary-btn-"]:active {
  transform: translateY(3px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
}

[class^="primary-btn-"] {
  transition: all 0.2s ease;
}

.primary-btn-3 {
  background-color: transparent;
  color: var(--dark-color-1);
  outline: 1px solid var(--dark-color-1);
}


.title-1 {
  font-size: var(--uc-font-size-50);
  font-family: var(--secondary-font);
}

.row {
  --bs-gutter-y: 24px;
}