:root {
  --color-white-100: hsl(0, 0%, 100%);
  --color-white-200: hsl(0, 0%, 95%);
  --color-white-300: hsl(0, 0%, 85%);
  --color-white-400: hsl(0, 0%, 75%);
  --color-white-500: hsl(0, 0%, 65%);
  --color-white-600: hsl(0, 0%, 55%);
  --color-black-100: hsl(210, 17%, 12%);
  --color-black-200: hsl(210, 17%, 10%);
  --color-black-300: hsl(210, 16%, 8%);
  --color-black-400: hsl(210, 16%, 6%);
  --color-black-500: hsl(210, 15%, 4%);
  --color-black-600: hsl(210, 15%, 2%);
  --color-blue-100: hsl(212, 96%, 60%);
  --color-blue-200: hsl(213, 94%, 55%);
  --color-blue-300: hsl(217, 91%, 50%);
  --color-blue-400: hsl(221, 83%, 45%);
  --color-blue-500: hsl(224, 76%, 40%);
  --color-blue-600: hsl(226, 71%, 35%);
  --color-light-black: hsl(0, 0, 20, 100%) --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
  --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
  --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
  --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
  --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


body {
  font-family: "Space Grotesk", serif;
  /*  height: 200vh;*/
  position: relative;
}

body:before {
  content: "";
  position: fixed;   /* 🔥 CHANGE THIS */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}


body {
  font-family: "Space Grotesk", serif;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: .1px;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

body.overflow {
  overflow: hidden
}

p {
  color: #111111;
  font-size: 16px;
  font-weight: 400;
  font-family: "Space Grotesk", serif;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Space Grotesk", serif;
}

a {
  color: #111111;
}

a:hover {
  color: #3F37C9;

}

.modal-backdrop.fade.show {
  z-index: 8888;
}

.border-bottom-t {
  border-bottom: 1px solid #80808063;
}

.border-top-t {
  border-bottom: 1px solid #80808063;
}

.border-left-t {
  border-bottom: 1px solid #80808063;
}

.border-right-t {
  border-bottom: 1px solid #80808063;
}


a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  font-family: "Space Grotesk", serif;
}

a,
a:hover {
  text-decoration: none !important;
}



.bg-purple {
  background: #3F37C9 !important;
}


/** spacing css **/

.m-0 {
  margin: 0 !important
}

.m-1 {
  margin: .25rem !important
}

.m-2 {
  margin: .5rem !important
}

.m-3 {
  margin: 1rem !important
}

.m-4 {
  margin: 1.5rem !important
}

.m-5 {
  margin: 2rem !important
}

.m-6 {
  margin: 2.5rem !important
}

.m-7 {
  margin: 3rem !important
}

.m-8 {
  margin: 3.5rem !important
}

.m-9 {
  margin: 4rem !important
}

.m-10 {
  margin: 4.5rem !important
}

.m-11 {
  margin: 5rem !important
}

.m-12 {
  margin: 5.5rem !important
}

.m-13 {
  margin: 6rem !important
}

.m-14 {
  margin: 6.5rem !important
}

.m-15 {
  margin: 7rem !important
}

.m-16 {
  margin: 7.5rem !important
}

.m-17 {
  margin: 8rem !important
}

.m-18 {
  margin: 8.5rem !important
}

.m-19 {
  margin: 9rem !important
}

.m-20 {
  margin: 9.5rem !important
}

.m-21 {
  margin: 10rem !important
}

.m-22 {
  margin: 12rem !important
}

.m-auto {
  margin: auto !important
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important
}

.mx-1 {
  margin-left: .25rem !important;
  margin-right: .25rem !important
}

.mx-2 {
  margin-left: .5rem !important;
  margin-right: .5rem !important
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important
}

.mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important
}

.mx-6 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important
}

.mx-7 {
  margin-left: 3rem !important;
  margin-right: 3rem !important
}

.mx-8 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important
}

.mx-9 {
  margin-left: 4rem !important;
  margin-right: 4rem !important
}

.mx-10 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important
}

.mx-11 {
  margin-left: 5rem !important;
  margin-right: 5rem !important
}

.mx-12 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important
}

.mx-13 {
  margin-left: 6rem !important;
  margin-right: 6rem !important
}

.mx-14 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important
}

.mx-15 {
  margin-left: 7rem !important;
  margin-right: 7rem !important
}

.mx-16 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important
}

.mx-17 {
  margin-left: 8rem !important;
  margin-right: 8rem !important
}

.mx-18 {
  margin-left: 8.5rem !important;
  margin-right: 8.5rem !important
}

.mx-19 {
  margin-left: 9rem !important;
  margin-right: 9rem !important
}

.mx-20 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important
}

.mx-21 {
  margin-left: 10rem !important;
  margin-right: 10rem !important
}

.mx-22 {
  margin-left: 12rem !important;
  margin-right: 12rem !important
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important
}

.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important
}

.my-1 {
  margin-bottom: .25rem !important;
  margin-top: .25rem !important
}

.my-2 {
  margin-bottom: .5rem !important;
  margin-top: .5rem !important
}

.my-3 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important
}

.my-4 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important
}

.my-5 {
  margin-bottom: 2rem !important;
  margin-top: 2rem !important
}

.my-6 {
  margin-bottom: 2.5rem !important;
  margin-top: 2.5rem !important
}

.my-7 {
  margin-bottom: 3rem !important;
  margin-top: 3rem !important
}

.my-8 {
  margin-bottom: 3.5rem !important;
  margin-top: 3.5rem !important
}

.my-9 {
  margin-bottom: 4rem !important;
  margin-top: 4rem !important
}

.my-10 {
  margin-bottom: 4.5rem !important;
  margin-top: 4.5rem !important
}

.my-11 {
  margin-bottom: 5rem !important;
  margin-top: 5rem !important
}

.my-12 {
  margin-bottom: 5.5rem !important;
  margin-top: 5.5rem !important
}

.my-13 {
  margin-bottom: 6rem !important;
  margin-top: 6rem !important
}

.my-14 {
  margin-bottom: 6.5rem !important;
  margin-top: 6.5rem !important
}

.my-15 {
  margin-bottom: 7rem !important;
  margin-top: 7rem !important
}

.my-16 {
  margin-bottom: 7.5rem !important;
  margin-top: 7.5rem !important
}

.my-17 {
  margin-bottom: 8rem !important;
  margin-top: 8rem !important
}

.my-18 {
  margin-bottom: 8.5rem !important;
  margin-top: 8.5rem !important
}

.my-19 {
  margin-bottom: 9rem !important;
  margin-top: 9rem !important
}

.my-20 {
  margin-bottom: 9.5rem !important;
  margin-top: 9.5rem !important
}

.my-21 {
  margin-bottom: 10rem !important;
  margin-top: 10rem !important
}

.my-22 {
  margin-bottom: 12rem !important;
  margin-top: 12rem !important
}

.my-auto {
  margin-bottom: auto !important;
  margin-top: auto !important
}

.mt-0 {
  margin-top: 0 !important
}

.mt-1 {
  margin-top: .25rem !important
}

.mt-2 {
  margin-top: .5rem !important
}

.mt-3 {
  margin-top: 1rem !important
}

.mt-4 {
  margin-top: 1.5rem !important
}

.mt-5 {
  margin-top: 2rem !important
}

.mt-6 {
  margin-top: 2.5rem !important
}

.mt-7 {
  margin-top: 3rem !important
}

.mt-8 {
  margin-top: 3.5rem !important
}

.mt-9 {
  margin-top: 4rem !important
}

.mt-10 {
  margin-top: 4.5rem !important
}

.mt-11 {
  margin-top: 5rem !important
}

.mt-12 {
  margin-top: 5.5rem !important
}

.mt-13 {
  margin-top: 6rem !important
}

.mt-14 {
  margin-top: 6.5rem !important
}

.mt-15 {
  margin-top: 7rem !important
}

.mt-16 {
  margin-top: 7.5rem !important
}

.mt-17 {
  margin-top: 8rem !important
}

.mt-18 {
  margin-top: 8.5rem !important
}

.mt-19 {
  margin-top: 9rem !important
}

.mt-20 {
  margin-top: 9.5rem !important
}

.mt-21 {
  margin-top: 10rem !important
}

.mt-22 {
  margin-top: 12rem !important
}

.mt-auto {
  margin-top: auto !important
}

.me-0 {
  margin-right: 0 !important
}

.me-1 {
  margin-right: .25rem !important
}

.me-2 {
  margin-right: .5rem !important
}

.me-3 {
  margin-right: 1rem !important
}

.me-4 {
  margin-right: 1.5rem !important
}

.me-5 {
  margin-right: 2rem !important
}

.me-6 {
  margin-right: 2.5rem !important
}

.me-7 {
  margin-right: 3rem !important
}

.me-8 {
  margin-right: 3.5rem !important
}

.me-9 {
  margin-right: 4rem !important
}

.me-10 {
  margin-right: 4.5rem !important
}

.me-11 {
  margin-right: 5rem !important
}

.me-12 {
  margin-right: 5.5rem !important
}

.me-13 {
  margin-right: 6rem !important
}

.me-14 {
  margin-right: 6.5rem !important
}

.me-15 {
  margin-right: 7rem !important
}

.me-16 {
  margin-right: 7.5rem !important
}

.me-17 {
  margin-right: 8rem !important
}

.me-18 {
  margin-right: 8.5rem !important
}

.me-19 {
  margin-right: 9rem !important
}

.me-20 {
  margin-right: 9.5rem !important
}

.me-21 {
  margin-right: 10rem !important
}

.me-22 {
  margin-right: 12rem !important
}

.me-auto {
  margin-right: auto !important
}

.mb-0 {
  margin-bottom: 0 !important
}

.mb-1 {
  margin-bottom: .25rem !important
}

.mb-2 {
  margin-bottom: .5rem !important
}

.mb-3 {
  margin-bottom: 1rem !important
}

.mb-4 {
  margin-bottom: 1.5rem !important
}

.mb-5 {
  margin-bottom: 2rem !important
}

.mb-6 {
  margin-bottom: 2.5rem !important
}

.mb-7 {
  margin-bottom: 3rem !important
}

.mb-8 {
  margin-bottom: 3.5rem !important
}

.mb-9 {
  margin-bottom: 4rem !important
}

.mb-10 {
  margin-bottom: 4.5rem !important
}

.mb-11 {
  margin-bottom: 5rem !important
}

.mb-12 {
  margin-bottom: 5.5rem !important
}

.mb-13 {
  margin-bottom: 6rem !important
}

.mb-14 {
  margin-bottom: 6.5rem !important
}

.mb-15 {
  margin-bottom: 7rem !important
}

.mb-16 {
  margin-bottom: 7.5rem !important
}

.mb-17 {
  margin-bottom: 8rem !important
}

.mb-18 {
  margin-bottom: 8.5rem !important
}

.mb-19 {
  margin-bottom: 9rem !important
}

.mb-20 {
  margin-bottom: 9.5rem !important
}

.mb-21 {
  margin-bottom: 10rem !important
}

.mb-22 {
  margin-bottom: 12rem !important
}

.mb-auto {
  margin-bottom: auto !important
}

.ms-0 {
  margin-left: 0 !important
}

.ms-1 {
  margin-left: .25rem !important
}

.ms-2 {
  margin-left: .5rem !important
}

.ms-3 {
  margin-left: 1rem !important
}

.ms-4 {
  margin-left: 1.5rem !important
}

.ms-5 {
  margin-left: 2rem !important
}

.ms-6 {
  margin-left: 2.5rem !important
}

.ms-7 {
  margin-left: 3rem !important
}

.ms-8 {
  margin-left: 3.5rem !important
}

.ms-9 {
  margin-left: 4rem !important
}

.ms-10 {
  margin-left: 4.5rem !important
}

.ms-11 {
  margin-left: 5rem !important
}

.ms-12 {
  margin-left: 5.5rem !important
}

.ms-13 {
  margin-left: 6rem !important
}

.ms-14 {
  margin-left: 6.5rem !important
}

.ms-15 {
  margin-left: 7rem !important
}

.ms-16 {
  margin-left: 7.5rem !important
}

.ms-17 {
  margin-left: 8rem !important
}

.ms-18 {
  margin-left: 8.5rem !important
}

.ms-19 {
  margin-left: 9rem !important
}

.ms-20 {
  margin-left: 9.5rem !important
}

.ms-21 {
  margin-left: 10rem !important
}

.ms-22 {
  margin-left: 12rem !important
}

.ms-auto {
  margin-left: auto !important
}

.m-n1 {
  margin: -.25rem !important
}

.m-n2 {
  margin: -.5rem !important
}

.m-n3 {
  margin: -1rem !important
}

.m-n4 {
  margin: -1.5rem !important
}

.m-n5 {
  margin: -2rem !important
}

.m-n6 {
  margin: -2.5rem !important
}

.m-n7 {
  margin: -3rem !important
}

.m-n8 {
  margin: -3.5rem !important
}

.m-n9 {
  margin: -4rem !important
}

.m-n10 {
  margin: -4.5rem !important
}

.m-n11 {
  margin: -5rem !important
}

.m-n12 {
  margin: -5.5rem !important
}

.m-n13 {
  margin: -6rem !important
}

.m-n14 {
  margin: -6.5rem !important
}

.m-n15 {
  margin: -7rem !important
}

.m-n16 {
  margin: -7.5rem !important
}

.m-n17 {
  margin: -8rem !important
}

.m-n18 {
  margin: -8.5rem !important
}

.m-n19 {
  margin: -9rem !important
}

.m-n20 {
  margin: -9.5rem !important
}

.m-n21 {
  margin: -10rem !important
}

.m-n22 {
  margin: -12rem !important
}

.mx-n1 {
  margin-left: -.25rem !important;
  margin-right: -.25rem !important
}

.mx-n2 {
  margin-left: -.5rem !important;
  margin-right: -.5rem !important
}

.mx-n3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important
}

.mx-n4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important
}

.mx-n5 {
  margin-left: -2rem !important;
  margin-right: -2rem !important
}

.mx-n6 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important
}

.mx-n7 {
  margin-left: -3rem !important;
  margin-right: -3rem !important
}

.mx-n8 {
  margin-left: -3.5rem !important;
  margin-right: -3.5rem !important
}

.mx-n9 {
  margin-left: -4rem !important;
  margin-right: -4rem !important
}

.mx-n10 {
  margin-left: -4.5rem !important;
  margin-right: -4.5rem !important
}

.mx-n11 {
  margin-left: -5rem !important;
  margin-right: -5rem !important
}

.mx-n12 {
  margin-left: -5.5rem !important;
  margin-right: -5.5rem !important
}

.mx-n13 {
  margin-left: -6rem !important;
  margin-right: -6rem !important
}

.mx-n14 {
  margin-left: -6.5rem !important;
  margin-right: -6.5rem !important
}

.mx-n15 {
  margin-left: -7rem !important;
  margin-right: -7rem !important
}

.mx-n16 {
  margin-left: -7.5rem !important;
  margin-right: -7.5rem !important
}

.mx-n17 {
  margin-left: -8rem !important;
  margin-right: -8rem !important
}

.mx-n18 {
  margin-left: -8.5rem !important;
  margin-right: -8.5rem !important
}

.mx-n19 {
  margin-left: -9rem !important;
  margin-right: -9rem !important
}

.mx-n20 {
  margin-left: -9.5rem !important;
  margin-right: -9.5rem !important
}

.mx-n21 {
  margin-left: -10rem !important;
  margin-right: -10rem !important
}

.mx-n22 {
  margin-left: -12rem !important;
  margin-right: -12rem !important
}

.my-n1 {
  margin-bottom: -.25rem !important;
  margin-top: -.25rem !important
}

.my-n2 {
  margin-bottom: -.5rem !important;
  margin-top: -.5rem !important
}

.my-n3 {
  margin-bottom: -1rem !important;
  margin-top: -1rem !important
}

.my-n4 {
  margin-bottom: -1.5rem !important;
  margin-top: -1.5rem !important
}

.my-n5 {
  margin-bottom: -2rem !important;
  margin-top: -2rem !important
}

.my-n6 {
  margin-bottom: -2.5rem !important;
  margin-top: -2.5rem !important
}

.my-n7 {
  margin-bottom: -3rem !important;
  margin-top: -3rem !important
}

.my-n8 {
  margin-bottom: -3.5rem !important;
  margin-top: -3.5rem !important
}

.my-n9 {
  margin-bottom: -4rem !important;
  margin-top: -4rem !important
}

.my-n10 {
  margin-bottom: -4.5rem !important;
  margin-top: -4.5rem !important
}

.my-n11 {
  margin-bottom: -5rem !important;
  margin-top: -5rem !important
}

.my-n12 {
  margin-bottom: -5.5rem !important;
  margin-top: -5.5rem !important
}

.my-n13 {
  margin-bottom: -6rem !important;
  margin-top: -6rem !important
}

.my-n14 {
  margin-bottom: -6.5rem !important;
  margin-top: -6.5rem !important
}

.my-n15 {
  margin-bottom: -7rem !important;
  margin-top: -7rem !important
}

.my-n16 {
  margin-bottom: -7.5rem !important;
  margin-top: -7.5rem !important
}

.my-n17 {
  margin-bottom: -8rem !important;
  margin-top: -8rem !important
}

.my-n18 {
  margin-bottom: -8.5rem !important;
  margin-top: -8.5rem !important
}

.my-n19 {
  margin-bottom: -9rem !important;
  margin-top: -9rem !important
}

.my-n20 {
  margin-bottom: -9.5rem !important;
  margin-top: -9.5rem !important
}

.my-n21 {
  margin-bottom: -10rem !important;
  margin-top: -10rem !important
}

.my-n22 {
  margin-bottom: -12rem !important;
  margin-top: -12rem !important
}

.mt-n1 {
  margin-top: -.25rem !important
}

.mt-n2 {
  margin-top: -.5rem !important
}

.mt-n3 {
  margin-top: -1rem !important
}

.mt-n4 {
  margin-top: -1.5rem !important
}

.mt-n5 {
  margin-top: -2rem !important
}

.mt-n6 {
  margin-top: -2.5rem !important
}

.mt-n7 {
  margin-top: -3rem !important
}

.mt-n8 {
  margin-top: -3.5rem !important
}

.mt-n9 {
  margin-top: -4rem !important
}

.mt-n10 {
  margin-top: -4.5rem !important
}

.mt-n11 {
  margin-top: -5rem !important
}

.mt-n12 {
  margin-top: -5.5rem !important
}

.mt-n13 {
  margin-top: -6rem !important
}

.mt-n14 {
  margin-top: -6.5rem !important
}

.mt-n15 {
  margin-top: -7rem !important
}

.mt-n16 {
  margin-top: -7.5rem !important
}

.mt-n17 {
  margin-top: -8rem !important
}

.mt-n18 {
  margin-top: -8.5rem !important
}

.mt-n19 {
  margin-top: -9rem !important
}

.mt-n20 {
  margin-top: -9.5rem !important
}

.mt-n21 {
  margin-top: -10rem !important
}

.mt-n22 {
  margin-top: -12rem !important
}

.me-n1 {
  margin-right: -.25rem !important
}

.me-n2 {
  margin-right: -.5rem !important
}

.me-n3 {
  margin-right: -1rem !important
}

.me-n4 {
  margin-right: -1.5rem !important
}

.me-n5 {
  margin-right: -2rem !important
}

.me-n6 {
  margin-right: -2.5rem !important
}

.me-n7 {
  margin-right: -3rem !important
}

.me-n8 {
  margin-right: -3.5rem !important
}

.me-n9 {
  margin-right: -4rem !important
}

.me-n10 {
  margin-right: -4.5rem !important
}

.me-n11 {
  margin-right: -5rem !important
}

.me-n12 {
  margin-right: -5.5rem !important
}

.me-n13 {
  margin-right: -6rem !important
}

.me-n14 {
  margin-right: -6.5rem !important
}

.me-n15 {
  margin-right: -7rem !important
}

.me-n16 {
  margin-right: -7.5rem !important
}

.me-n17 {
  margin-right: -8rem !important
}

.me-n18 {
  margin-right: -8.5rem !important
}

.me-n19 {
  margin-right: -9rem !important
}

.me-n20 {
  margin-right: -9.5rem !important
}

.me-n21 {
  margin-right: -10rem !important
}

.me-n22 {
  margin-right: -12rem !important
}

.mb-n1 {
  margin-bottom: -.25rem !important
}

.mb-n2 {
  margin-bottom: -.5rem !important
}

.mb-n3 {
  margin-bottom: -1rem !important
}

.mb-n4 {
  margin-bottom: -1.5rem !important
}

.mb-n5 {
  margin-bottom: -2rem !important
}

.mb-n6 {
  margin-bottom: -2.5rem !important
}

.mb-n7 {
  margin-bottom: -3rem !important
}

.mb-n8 {
  margin-bottom: -3.5rem !important
}

.mb-n9 {
  margin-bottom: -4rem !important
}

.mb-n10 {
  margin-bottom: -4.5rem !important
}

.mb-n11 {
  margin-bottom: -5rem !important
}

.mb-n12 {
  margin-bottom: -5.5rem !important
}

.mb-n13 {
  margin-bottom: -6rem !important
}

.mb-n14 {
  margin-bottom: -6.5rem !important
}

.mb-n15 {
  margin-bottom: -7rem !important
}

.mb-n16 {
  margin-bottom: -7.5rem !important
}

.mb-n17 {
  margin-bottom: -8rem !important
}

.mb-n18 {
  margin-bottom: -8.5rem !important
}

.mb-n19 {
  margin-bottom: -9rem !important
}

.mb-n20 {
  margin-bottom: -9.5rem !important
}

.mb-n21 {
  margin-bottom: -10rem !important
}

.mb-n22 {
  margin-bottom: -12rem !important
}

.ms-n1 {
  margin-left: -.25rem !important
}

.ms-n2 {
  margin-left: -.5rem !important
}

.ms-n3 {
  margin-left: -1rem !important
}

.ms-n4 {
  margin-left: -1.5rem !important
}

.ms-n5 {
  margin-left: -2rem !important
}

.ms-n6 {
  margin-left: -2.5rem !important
}

.ms-n7 {
  margin-left: -3rem !important
}

.ms-n8 {
  margin-left: -3.5rem !important
}

.ms-n9 {
  margin-left: -4rem !important
}

.ms-n10 {
  margin-left: -4.5rem !important
}

.ms-n11 {
  margin-left: -5rem !important
}

.ms-n12 {
  margin-left: -5.5rem !important
}

.ms-n13 {
  margin-left: -6rem !important
}

.ms-n14 {
  margin-left: -6.5rem !important
}

.ms-n15 {
  margin-left: -7rem !important
}

.ms-n16 {
  margin-left: -7.5rem !important
}

.ms-n17 {
  margin-left: -8rem !important
}

.ms-n18 {
  margin-left: -8.5rem !important
}

.ms-n19 {
  margin-left: -9rem !important
}

.ms-n20 {
  margin-left: -9.5rem !important
}

.ms-n21 {
  margin-left: -10rem !important
}

.ms-n22 {
  margin-left: -12rem !important
}

.p-0 {
  padding: 0 !important
}

.p-1 {
  padding: .25rem !important
}

.p-2 {
  padding: .5rem !important
}

.p-3 {
  padding: 1rem !important
}

.p-4 {
  padding: 1.5rem !important
}

.p-5 {
  padding: 2rem !important
}

.p-6 {
  padding: 2.5rem !important
}

.p-7 {
  padding: 3rem !important
}

.p-8 {
  padding: 3.5rem !important
}

.p-9 {
  padding: 4rem !important
}

.p-10 {
  padding: 4.5rem !important
}

.p-11 {
  padding: 5rem !important
}

.p-12 {
  padding: 5.5rem !important
}

.p-13 {
  padding: 6rem !important
}

.p-14 {
  padding: 6.5rem !important
}

.p-15 {
  padding: 7rem !important
}

.p-16 {
  padding: 7.5rem !important
}

.p-17 {
  padding: 8rem !important
}

.p-18 {
  padding: 8.5rem !important
}

.p-19 {
  padding: 9rem !important
}

.p-20 {
  padding: 9.5rem !important
}

.p-21 {
  padding: 10rem !important
}

.p-22 {
  padding: 12rem !important
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.px-1 {
  padding-left: .25rem !important;
  padding-right: .25rem !important
}

.px-2 {
  padding-left: .5rem !important;
  padding-right: .5rem !important
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important
}

.px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important
}

.px-6 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important
}

.px-7 {
  padding-left: 3rem !important;
  padding-right: 3rem !important
}

.px-8 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important
}

.px-9 {
  padding-left: 4rem !important;
  padding-right: 4rem !important
}

.px-10 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important
}

.px-11 {
  padding-left: 5rem !important;
  padding-right: 5rem !important
}

.px-12 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important
}

.px-13 {
  padding-left: 6rem !important;
  padding-right: 6rem !important
}

.px-14 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important
}

.px-15 {
  padding-left: 7rem !important;
  padding-right: 7rem !important
}

.px-16 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important
}

.px-17 {
  padding-left: 8rem !important;
  padding-right: 8rem !important
}

.px-18 {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important
}

.px-19 {
  padding-left: 9rem !important;
  padding-right: 9rem !important
}

.px-20 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important
}

.px-21 {
  padding-left: 10rem !important;
  padding-right: 10rem !important
}

.px-22 {
  padding-left: 12rem !important;
  padding-right: 12rem !important
}

.py-0 {
  padding-bottom: 0 !important;
  padding-top: 0 !important
}

.py-1 {
  padding-bottom: .25rem !important;
  padding-top: .25rem !important
}

.py-2 {
  padding-bottom: .5rem !important;
  padding-top: .5rem !important
}

.py-3 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important
}

.py-4 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important
}

.py-5 {
  padding-bottom: 2rem !important;
  padding-top: 2rem !important
}

.py-6 {
  padding-bottom: 2.5rem !important;
  padding-top: 2.5rem !important
}

.py-7 {
  padding-bottom: 3rem !important;
  padding-top: 3rem !important
}

.py-8 {
  padding-bottom: 3.5rem !important;
  padding-top: 3.5rem !important
}

.py-9 {
  padding-bottom: 4rem !important;
  padding-top: 4rem !important
}

.py-10 {
  padding-bottom: 4.5rem !important;
  padding-top: 4.5rem !important
}

.py-11 {
  padding-bottom: 5rem !important;
  padding-top: 5rem !important
}

.py-12 {
  padding-bottom: 5.5rem !important;
  padding-top: 5.5rem !important
}

.py-13 {
  padding-bottom: 6rem !important;
  padding-top: 6rem !important
}

.py-14 {
  padding-bottom: 6.5rem !important;
  padding-top: 6.5rem !important
}

.py-15 {
  padding-bottom: 7rem !important;
  padding-top: 7rem !important
}

.py-16 {
  padding-bottom: 7.5rem !important;
  padding-top: 7.5rem !important
}

.py-17 {
  padding-bottom: 8rem !important;
  padding-top: 8rem !important
}

.py-18 {
  padding-bottom: 8.5rem !important;
  padding-top: 8.5rem !important
}

.py-19 {
  padding-bottom: 9rem !important;
  padding-top: 9rem !important
}

.py-20 {
  padding-bottom: 9.5rem !important;
  padding-top: 9.5rem !important
}

.py-21 {
  padding-bottom: 10rem !important;
  padding-top: 10rem !important
}

.py-22 {
  padding-bottom: 12rem !important;
  padding-top: 12rem !important
}

.pt-0 {
  padding-top: 0 !important
}

.pt-1 {
  padding-top: .25rem !important
}

.pt-2 {
  padding-top: .5rem !important
}

.pt-3 {
  padding-top: 1rem !important
}

.pt-4 {
  padding-top: 1.5rem !important
}

.pt-5 {
  padding-top: 2rem !important
}

.pt-6 {
  padding-top: 2.5rem !important
}

.pt-7 {
  padding-top: 3rem !important
}

.pt-8 {
  padding-top: 3.5rem !important
}

.pt-9 {
  padding-top: 4rem !important
}

.pt-10 {
  padding-top: 4.5rem !important
}

.pt-11 {
  padding-top: 5rem !important
}

.pt-12 {
  padding-top: 5.5rem !important
}

.pt-13 {
  padding-top: 6rem !important
}

.pt-14 {
  padding-top: 6.5rem !important
}

.pt-15 {
  padding-top: 7rem !important
}

.pt-16 {
  padding-top: 7.5rem !important
}

.pt-17 {
  padding-top: 8rem !important
}

.pt-18 {
  padding-top: 8.5rem !important
}

.pt-19 {
  padding-top: 9rem !important
}

.pt-20 {
  padding-top: 9.5rem !important
}

.pt-21 {
  padding-top: 10rem !important
}

.pt-22 {
  padding-top: 12rem !important
}

.pe-0 {
  padding-right: 0 !important
}

.pe-1 {
  padding-right: .25rem !important
}

.pe-2 {
  padding-right: .5rem !important
}

.pe-3 {
  padding-right: 1rem !important
}

.pe-4 {
  padding-right: 1.5rem !important
}

.pe-5 {
  padding-right: 2rem !important
}

.pe-6 {
  padding-right: 2.5rem !important
}

.pe-7 {
  padding-right: 3rem !important
}

.pe-8 {
  padding-right: 3.5rem !important
}

.pe-9 {
  padding-right: 4rem !important
}

.pe-10 {
  padding-right: 4.5rem !important
}

.pe-11 {
  padding-right: 5rem !important
}

.pe-12 {
  padding-right: 5.5rem !important
}

.pe-13 {
  padding-right: 6rem !important
}

.pe-14 {
  padding-right: 6.5rem !important
}

.pe-15 {
  padding-right: 7rem !important
}

.pe-16 {
  padding-right: 7.5rem !important
}

.pe-17 {
  padding-right: 8rem !important
}

.pe-18 {
  padding-right: 8.5rem !important
}

.pe-19 {
  padding-right: 9rem !important
}

.pe-20 {
  padding-right: 9.5rem !important
}

.pe-21 {
  padding-right: 10rem !important
}

.pe-22 {
  padding-right: 12rem !important
}

.pb-0 {
  padding-bottom: 0 !important
}

.pb-1 {
  padding-bottom: .25rem !important
}

.pb-2 {
  padding-bottom: .5rem !important
}

.pb-3 {
  padding-bottom: 1rem !important
}

.pb-4 {
  padding-bottom: 1.5rem !important
}

.pb-5 {
  padding-bottom: 2rem !important
}

.pb-6 {
  padding-bottom: 2.5rem !important
}

.pb-7 {
  padding-bottom: 3rem !important
}

.pb-8 {
  padding-bottom: 3.5rem !important
}

.pb-9 {
  padding-bottom: 4rem !important
}

.pb-10 {
  padding-bottom: 4.5rem !important
}

.pb-11 {
  padding-bottom: 5rem !important
}

.pb-12 {
  padding-bottom: 5.5rem !important
}

.pb-13 {
  padding-bottom: 6rem !important
}

.pb-14 {
  padding-bottom: 6.5rem !important
}

.pb-15 {
  padding-bottom: 7rem !important
}

.pb-16 {
  padding-bottom: 7.5rem !important
}

.pb-17 {
  padding-bottom: 8rem !important
}

.pb-18 {
  padding-bottom: 8.5rem !important
}

.pb-19 {
  padding-bottom: 9rem !important
}

.pb-20 {
  padding-bottom: 9.5rem !important
}

.pb-21 {
  padding-bottom: 10rem !important
}

.pb-22 {
  padding-bottom: 12rem !important
}

.ps-0 {
  padding-left: 0 !important
}

.ps-1 {
  padding-left: .25rem !important
}

.ps-2 {
  padding-left: .5rem !important
}

.ps-3 {
  padding-left: 1rem !important
}

.ps-4 {
  padding-left: 1.5rem !important
}

.ps-5 {
  padding-left: 2rem !important
}

.ps-6 {
  padding-left: 2.5rem !important
}

.ps-7 {
  padding-left: 3rem !important
}

.ps-8 {
  padding-left: 3.5rem !important
}

.ps-9 {
  padding-left: 4rem !important
}

.ps-10 {
  padding-left: 4.5rem !important
}

.ps-11 {
  padding-left: 5rem !important
}

.ps-12 {
  padding-left: 5.5rem !important
}

.ps-13 {
  padding-left: 6rem !important
}

.ps-14 {
  padding-left: 6.5rem !important
}

.ps-15 {
  padding-left: 7rem !important
}

.ps-16 {
  padding-left: 7.5rem !important
}

.ps-17 {
  padding-left: 8rem !important
}

.ps-18 {
  padding-left: 8.5rem !important
}

.ps-19 {
  padding-left: 9rem !important
}

.ps-20 {
  padding-left: 9.5rem !important
}

.ps-21 {
  padding-left: 10rem !important
}

.ps-22 {
  padding-left: 12rem !important
}

@media(min-width:576px) {
  .m-sm-0 {
    margin: 0 !important
  }

  .m-sm-1 {
    margin: .25rem !important
  }

  .m-sm-2 {
    margin: .5rem !important
  }

  .m-sm-3 {
    margin: 1rem !important
  }

  .m-sm-4 {
    margin: 1.5rem !important
  }

  .m-sm-5 {
    margin: 2rem !important
  }

  .m-sm-6 {
    margin: 2.5rem !important
  }

  .m-sm-7 {
    margin: 3rem !important
  }

  .m-sm-8 {
    margin: 3.5rem !important
  }

  .m-sm-9 {
    margin: 4rem !important
  }

  .m-sm-10 {
    margin: 4.5rem !important
  }

  .m-sm-11 {
    margin: 5rem !important
  }

  .m-sm-12 {
    margin: 5.5rem !important
  }

  .m-sm-13 {
    margin: 6rem !important
  }

  .m-sm-14 {
    margin: 6.5rem !important
  }

  .m-sm-15 {
    margin: 7rem !important
  }

  .m-sm-16 {
    margin: 7.5rem !important
  }

  .m-sm-17 {
    margin: 8rem !important
  }

  .m-sm-18 {
    margin: 8.5rem !important
  }

  .m-sm-19 {
    margin: 9rem !important
  }

  .m-sm-20 {
    margin: 9.5rem !important
  }

  .m-sm-21 {
    margin: 10rem !important
  }

  .m-sm-22 {
    margin: 12rem !important
  }

  .m-sm-auto {
    margin: auto !important
  }

  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .mx-sm-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .mx-sm-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .mx-sm-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .mx-sm-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .mx-sm-7 {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .mx-sm-8 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important
  }

  .mx-sm-9 {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .mx-sm-10 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important
  }

  .mx-sm-11 {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .mx-sm-12 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important
  }

  .mx-sm-13 {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .mx-sm-14 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important
  }

  .mx-sm-15 {
    margin-left: 7rem !important;
    margin-right: 7rem !important
  }

  .mx-sm-16 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important
  }

  .mx-sm-17 {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .mx-sm-18 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important
  }

  .mx-sm-19 {
    margin-left: 9rem !important;
    margin-right: 9rem !important
  }

  .mx-sm-20 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important
  }

  .mx-sm-21 {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .mx-sm-22 {
    margin-left: 12rem !important;
    margin-right: 12rem !important
  }

  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .my-sm-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important
  }

  .my-sm-1 {
    margin-bottom: .25rem !important;
    margin-top: .25rem !important
  }

  .my-sm-2 {
    margin-bottom: .5rem !important;
    margin-top: .5rem !important
  }

  .my-sm-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important
  }

  .my-sm-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important
  }

  .my-sm-5 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important
  }

  .my-sm-6 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important
  }

  .my-sm-7 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important
  }

  .my-sm-8 {
    margin-bottom: 3.5rem !important;
    margin-top: 3.5rem !important
  }

  .my-sm-9 {
    margin-bottom: 4rem !important;
    margin-top: 4rem !important
  }

  .my-sm-10 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important
  }

  .my-sm-11 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important
  }

  .my-sm-12 {
    margin-bottom: 5.5rem !important;
    margin-top: 5.5rem !important
  }

  .my-sm-13 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important
  }

  .my-sm-14 {
    margin-bottom: 6.5rem !important;
    margin-top: 6.5rem !important
  }

  .my-sm-15 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important
  }

  .my-sm-16 {
    margin-bottom: 7.5rem !important;
    margin-top: 7.5rem !important
  }

  .my-sm-17 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important
  }

  .my-sm-18 {
    margin-bottom: 8.5rem !important;
    margin-top: 8.5rem !important
  }

  .my-sm-19 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important
  }

  .my-sm-20 {
    margin-bottom: 9.5rem !important;
    margin-top: 9.5rem !important
  }

  .my-sm-21 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important
  }

  .my-sm-22 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important
  }

  .my-sm-auto {
    margin-bottom: auto !important;
    margin-top: auto !important
  }

  .mt-sm-0 {
    margin-top: 0 !important
  }

  .mt-sm-1 {
    margin-top: .25rem !important
  }

  .mt-sm-2 {
    margin-top: .5rem !important
  }

  .mt-sm-3 {
    margin-top: 1rem !important
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important
  }

  .mt-sm-5 {
    margin-top: 2rem !important
  }

  .mt-sm-6 {
    margin-top: 2.5rem !important
  }

  .mt-sm-7 {
    margin-top: 3rem !important
  }

  .mt-sm-8 {
    margin-top: 3.5rem !important
  }

  .mt-sm-9 {
    margin-top: 4rem !important
  }

  .mt-sm-10 {
    margin-top: 4.5rem !important
  }

  .mt-sm-11 {
    margin-top: 5rem !important
  }

  .mt-sm-12 {
    margin-top: 5.5rem !important
  }

  .mt-sm-13 {
    margin-top: 6rem !important
  }

  .mt-sm-14 {
    margin-top: 6.5rem !important
  }

  .mt-sm-15 {
    margin-top: 7rem !important
  }

  .mt-sm-16 {
    margin-top: 7.5rem !important
  }

  .mt-sm-17 {
    margin-top: 8rem !important
  }

  .mt-sm-18 {
    margin-top: 8.5rem !important
  }

  .mt-sm-19 {
    margin-top: 9rem !important
  }

  .mt-sm-20 {
    margin-top: 9.5rem !important
  }

  .mt-sm-21 {
    margin-top: 10rem !important
  }

  .mt-sm-22 {
    margin-top: 12rem !important
  }

  .mt-sm-auto {
    margin-top: auto !important
  }

  .me-sm-0 {
    margin-right: 0 !important
  }

  .me-sm-1 {
    margin-right: .25rem !important
  }

  .me-sm-2 {
    margin-right: .5rem !important
  }

  .me-sm-3 {
    margin-right: 1rem !important
  }

  .me-sm-4 {
    margin-right: 1.5rem !important
  }

  .me-sm-5 {
    margin-right: 2rem !important
  }

  .me-sm-6 {
    margin-right: 2.5rem !important
  }

  .me-sm-7 {
    margin-right: 3rem !important
  }

  .me-sm-8 {
    margin-right: 3.5rem !important
  }

  .me-sm-9 {
    margin-right: 4rem !important
  }

  .me-sm-10 {
    margin-right: 4.5rem !important
  }

  .me-sm-11 {
    margin-right: 5rem !important
  }

  .me-sm-12 {
    margin-right: 5.5rem !important
  }

  .me-sm-13 {
    margin-right: 6rem !important
  }

  .me-sm-14 {
    margin-right: 6.5rem !important
  }

  .me-sm-15 {
    margin-right: 7rem !important
  }

  .me-sm-16 {
    margin-right: 7.5rem !important
  }

  .me-sm-17 {
    margin-right: 8rem !important
  }

  .me-sm-18 {
    margin-right: 8.5rem !important
  }

  .me-sm-19 {
    margin-right: 9rem !important
  }

  .me-sm-20 {
    margin-right: 9.5rem !important
  }

  .me-sm-21 {
    margin-right: 10rem !important
  }

  .me-sm-22 {
    margin-right: 12rem !important
  }

  .me-sm-auto {
    margin-right: auto !important
  }

  .mb-sm-0 {
    margin-bottom: 0 !important
  }

  .mb-sm-1 {
    margin-bottom: .25rem !important
  }

  .mb-sm-2 {
    margin-bottom: .5rem !important
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-sm-5 {
    margin-bottom: 2rem !important
  }

  .mb-sm-6 {
    margin-bottom: 2.5rem !important
  }

  .mb-sm-7 {
    margin-bottom: 3rem !important
  }

  .mb-sm-8 {
    margin-bottom: 3.5rem !important
  }

  .mb-sm-9 {
    margin-bottom: 4rem !important
  }

  .mb-sm-10 {
    margin-bottom: 4.5rem !important
  }

  .mb-sm-11 {
    margin-bottom: 5rem !important
  }

  .mb-sm-12 {
    margin-bottom: 5.5rem !important
  }

  .mb-sm-13 {
    margin-bottom: 6rem !important
  }

  .mb-sm-14 {
    margin-bottom: 6.5rem !important
  }

  .mb-sm-15 {
    margin-bottom: 7rem !important
  }

  .mb-sm-16 {
    margin-bottom: 7.5rem !important
  }

  .mb-sm-17 {
    margin-bottom: 8rem !important
  }

  .mb-sm-18 {
    margin-bottom: 8.5rem !important
  }

  .mb-sm-19 {
    margin-bottom: 9rem !important
  }

  .mb-sm-20 {
    margin-bottom: 9.5rem !important
  }

  .mb-sm-21 {
    margin-bottom: 10rem !important
  }

  .mb-sm-22 {
    margin-bottom: 12rem !important
  }

  .mb-sm-auto {
    margin-bottom: auto !important
  }

  .ms-sm-0 {
    margin-left: 0 !important
  }

  .ms-sm-1 {
    margin-left: .25rem !important
  }

  .ms-sm-2 {
    margin-left: .5rem !important
  }

  .ms-sm-3 {
    margin-left: 1rem !important
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important
  }

  .ms-sm-5 {
    margin-left: 2rem !important
  }

  .ms-sm-6 {
    margin-left: 2.5rem !important
  }

  .ms-sm-7 {
    margin-left: 3rem !important
  }

  .ms-sm-8 {
    margin-left: 3.5rem !important
  }

  .ms-sm-9 {
    margin-left: 4rem !important
  }

  .ms-sm-10 {
    margin-left: 4.5rem !important
  }

  .ms-sm-11 {
    margin-left: 5rem !important
  }

  .ms-sm-12 {
    margin-left: 5.5rem !important
  }

  .ms-sm-13 {
    margin-left: 6rem !important
  }

  .ms-sm-14 {
    margin-left: 6.5rem !important
  }

  .ms-sm-15 {
    margin-left: 7rem !important
  }

  .ms-sm-16 {
    margin-left: 7.5rem !important
  }

  .ms-sm-17 {
    margin-left: 8rem !important
  }

  .ms-sm-18 {
    margin-left: 8.5rem !important
  }

  .ms-sm-19 {
    margin-left: 9rem !important
  }

  .ms-sm-20 {
    margin-left: 9.5rem !important
  }

  .ms-sm-21 {
    margin-left: 10rem !important
  }

  .ms-sm-22 {
    margin-left: 12rem !important
  }

  .ms-sm-auto {
    margin-left: auto !important
  }

  .m-sm-n1 {
    margin: -.25rem !important
  }

  .m-sm-n2 {
    margin: -.5rem !important
  }

  .m-sm-n3 {
    margin: -1rem !important
  }

  .m-sm-n4 {
    margin: -1.5rem !important
  }

  .m-sm-n5 {
    margin: -2rem !important
  }

  .m-sm-n6 {
    margin: -2.5rem !important
  }

  .m-sm-n7 {
    margin: -3rem !important
  }

  .m-sm-n8 {
    margin: -3.5rem !important
  }

  .m-sm-n9 {
    margin: -4rem !important
  }

  .m-sm-n10 {
    margin: -4.5rem !important
  }

  .m-sm-n11 {
    margin: -5rem !important
  }

  .m-sm-n12 {
    margin: -5.5rem !important
  }

  .m-sm-n13 {
    margin: -6rem !important
  }

  .m-sm-n14 {
    margin: -6.5rem !important
  }

  .m-sm-n15 {
    margin: -7rem !important
  }

  .m-sm-n16 {
    margin: -7.5rem !important
  }

  .m-sm-n17 {
    margin: -8rem !important
  }

  .m-sm-n18 {
    margin: -8.5rem !important
  }

  .m-sm-n19 {
    margin: -9rem !important
  }

  .m-sm-n20 {
    margin: -9.5rem !important
  }

  .m-sm-n21 {
    margin: -10rem !important
  }

  .m-sm-n22 {
    margin: -12rem !important
  }

  .mx-sm-n1 {
    margin-left: -.25rem !important;
    margin-right: -.25rem !important
  }

  .mx-sm-n2 {
    margin-left: -.5rem !important;
    margin-right: -.5rem !important
  }

  .mx-sm-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important
  }

  .mx-sm-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important
  }

  .mx-sm-n5 {
    margin-left: -2rem !important;
    margin-right: -2rem !important
  }

  .mx-sm-n6 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important
  }

  .mx-sm-n7 {
    margin-left: -3rem !important;
    margin-right: -3rem !important
  }

  .mx-sm-n8 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important
  }

  .mx-sm-n9 {
    margin-left: -4rem !important;
    margin-right: -4rem !important
  }

  .mx-sm-n10 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important
  }

  .mx-sm-n11 {
    margin-left: -5rem !important;
    margin-right: -5rem !important
  }

  .mx-sm-n12 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important
  }

  .mx-sm-n13 {
    margin-left: -6rem !important;
    margin-right: -6rem !important
  }

  .mx-sm-n14 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important
  }

  .mx-sm-n15 {
    margin-left: -7rem !important;
    margin-right: -7rem !important
  }

  .mx-sm-n16 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important
  }

  .mx-sm-n17 {
    margin-left: -8rem !important;
    margin-right: -8rem !important
  }

  .mx-sm-n18 {
    margin-left: -8.5rem !important;
    margin-right: -8.5rem !important
  }

  .mx-sm-n19 {
    margin-left: -9rem !important;
    margin-right: -9rem !important
  }

  .mx-sm-n20 {
    margin-left: -9.5rem !important;
    margin-right: -9.5rem !important
  }

  .mx-sm-n21 {
    margin-left: -10rem !important;
    margin-right: -10rem !important
  }

  .mx-sm-n22 {
    margin-left: -12rem !important;
    margin-right: -12rem !important
  }

  .my-sm-n1 {
    margin-bottom: -.25rem !important;
    margin-top: -.25rem !important
  }

  .my-sm-n2 {
    margin-bottom: -.5rem !important;
    margin-top: -.5rem !important
  }

  .my-sm-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important
  }

  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important
  }

  .my-sm-n5 {
    margin-bottom: -2rem !important;
    margin-top: -2rem !important
  }

  .my-sm-n6 {
    margin-bottom: -2.5rem !important;
    margin-top: -2.5rem !important
  }

  .my-sm-n7 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important
  }

  .my-sm-n8 {
    margin-bottom: -3.5rem !important;
    margin-top: -3.5rem !important
  }

  .my-sm-n9 {
    margin-bottom: -4rem !important;
    margin-top: -4rem !important
  }

  .my-sm-n10 {
    margin-bottom: -4.5rem !important;
    margin-top: -4.5rem !important
  }

  .my-sm-n11 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important
  }

  .my-sm-n12 {
    margin-bottom: -5.5rem !important;
    margin-top: -5.5rem !important
  }

  .my-sm-n13 {
    margin-bottom: -6rem !important;
    margin-top: -6rem !important
  }

  .my-sm-n14 {
    margin-bottom: -6.5rem !important;
    margin-top: -6.5rem !important
  }

  .my-sm-n15 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important
  }

  .my-sm-n16 {
    margin-bottom: -7.5rem !important;
    margin-top: -7.5rem !important
  }

  .my-sm-n17 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important
  }

  .my-sm-n18 {
    margin-bottom: -8.5rem !important;
    margin-top: -8.5rem !important
  }

  .my-sm-n19 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important
  }

  .my-sm-n20 {
    margin-bottom: -9.5rem !important;
    margin-top: -9.5rem !important
  }

  .my-sm-n21 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important
  }

  .my-sm-n22 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important
  }

  .mt-sm-n1 {
    margin-top: -.25rem !important
  }

  .mt-sm-n2 {
    margin-top: -.5rem !important
  }

  .mt-sm-n3 {
    margin-top: -1rem !important
  }

  .mt-sm-n4 {
    margin-top: -1.5rem !important
  }

  .mt-sm-n5 {
    margin-top: -2rem !important
  }

  .mt-sm-n6 {
    margin-top: -2.5rem !important
  }

  .mt-sm-n7 {
    margin-top: -3rem !important
  }

  .mt-sm-n8 {
    margin-top: -3.5rem !important
  }

  .mt-sm-n9 {
    margin-top: -4rem !important
  }

  .mt-sm-n10 {
    margin-top: -4.5rem !important
  }

  .mt-sm-n11 {
    margin-top: -5rem !important
  }

  .mt-sm-n12 {
    margin-top: -5.5rem !important
  }

  .mt-sm-n13 {
    margin-top: -6rem !important
  }

  .mt-sm-n14 {
    margin-top: -6.5rem !important
  }

  .mt-sm-n15 {
    margin-top: -7rem !important
  }

  .mt-sm-n16 {
    margin-top: -7.5rem !important
  }

  .mt-sm-n17 {
    margin-top: -8rem !important
  }

  .mt-sm-n18 {
    margin-top: -8.5rem !important
  }

  .mt-sm-n19 {
    margin-top: -9rem !important
  }

  .mt-sm-n20 {
    margin-top: -9.5rem !important
  }

  .mt-sm-n21 {
    margin-top: -10rem !important
  }

  .mt-sm-n22 {
    margin-top: -12rem !important
  }

  .me-sm-n1 {
    margin-right: -.25rem !important
  }

  .me-sm-n2 {
    margin-right: -.5rem !important
  }

  .me-sm-n3 {
    margin-right: -1rem !important
  }

  .me-sm-n4 {
    margin-right: -1.5rem !important
  }

  .me-sm-n5 {
    margin-right: -2rem !important
  }

  .me-sm-n6 {
    margin-right: -2.5rem !important
  }

  .me-sm-n7 {
    margin-right: -3rem !important
  }

  .me-sm-n8 {
    margin-right: -3.5rem !important
  }

  .me-sm-n9 {
    margin-right: -4rem !important
  }

  .me-sm-n10 {
    margin-right: -4.5rem !important
  }

  .me-sm-n11 {
    margin-right: -5rem !important
  }

  .me-sm-n12 {
    margin-right: -5.5rem !important
  }

  .me-sm-n13 {
    margin-right: -6rem !important
  }

  .me-sm-n14 {
    margin-right: -6.5rem !important
  }

  .me-sm-n15 {
    margin-right: -7rem !important
  }

  .me-sm-n16 {
    margin-right: -7.5rem !important
  }

  .me-sm-n17 {
    margin-right: -8rem !important
  }

  .me-sm-n18 {
    margin-right: -8.5rem !important
  }

  .me-sm-n19 {
    margin-right: -9rem !important
  }

  .me-sm-n20 {
    margin-right: -9.5rem !important
  }

  .me-sm-n21 {
    margin-right: -10rem !important
  }

  .me-sm-n22 {
    margin-right: -12rem !important
  }

  .mb-sm-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-sm-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-sm-n3 {
    margin-bottom: -1rem !important
  }

  .mb-sm-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-sm-n5 {
    margin-bottom: -2rem !important
  }

  .mb-sm-n6 {
    margin-bottom: -2.5rem !important
  }

  .mb-sm-n7 {
    margin-bottom: -3rem !important
  }

  .mb-sm-n8 {
    margin-bottom: -3.5rem !important
  }

  .mb-sm-n9 {
    margin-bottom: -4rem !important
  }

  .mb-sm-n10 {
    margin-bottom: -4.5rem !important
  }

  .mb-sm-n11 {
    margin-bottom: -5rem !important
  }

  .mb-sm-n12 {
    margin-bottom: -5.5rem !important
  }

  .mb-sm-n13 {
    margin-bottom: -6rem !important
  }

  .mb-sm-n14 {
    margin-bottom: -6.5rem !important
  }

  .mb-sm-n15 {
    margin-bottom: -7rem !important
  }

  .mb-sm-n16 {
    margin-bottom: -7.5rem !important
  }

  .mb-sm-n17 {
    margin-bottom: -8rem !important
  }

  .mb-sm-n18 {
    margin-bottom: -8.5rem !important
  }

  .mb-sm-n19 {
    margin-bottom: -9rem !important
  }

  .mb-sm-n20 {
    margin-bottom: -9.5rem !important
  }

  .mb-sm-n21 {
    margin-bottom: -10rem !important
  }

  .mb-sm-n22 {
    margin-bottom: -12rem !important
  }

  .ms-sm-n1 {
    margin-left: -.25rem !important
  }

  .ms-sm-n2 {
    margin-left: -.5rem !important
  }

  .ms-sm-n3 {
    margin-left: -1rem !important
  }

  .ms-sm-n4 {
    margin-left: -1.5rem !important
  }

  .ms-sm-n5 {
    margin-left: -2rem !important
  }

  .ms-sm-n6 {
    margin-left: -2.5rem !important
  }

  .ms-sm-n7 {
    margin-left: -3rem !important
  }

  .ms-sm-n8 {
    margin-left: -3.5rem !important
  }

  .ms-sm-n9 {
    margin-left: -4rem !important
  }

  .ms-sm-n10 {
    margin-left: -4.5rem !important
  }

  .ms-sm-n11 {
    margin-left: -5rem !important
  }

  .ms-sm-n12 {
    margin-left: -5.5rem !important
  }

  .ms-sm-n13 {
    margin-left: -6rem !important
  }

  .ms-sm-n14 {
    margin-left: -6.5rem !important
  }

  .ms-sm-n15 {
    margin-left: -7rem !important
  }

  .ms-sm-n16 {
    margin-left: -7.5rem !important
  }

  .ms-sm-n17 {
    margin-left: -8rem !important
  }

  .ms-sm-n18 {
    margin-left: -8.5rem !important
  }

  .ms-sm-n19 {
    margin-left: -9rem !important
  }

  .ms-sm-n20 {
    margin-left: -9.5rem !important
  }

  .ms-sm-n21 {
    margin-left: -10rem !important
  }

  .ms-sm-n22 {
    margin-left: -12rem !important
  }

  .p-sm-0 {
    padding: 0 !important
  }

  .p-sm-1 {
    padding: .25rem !important
  }

  .p-sm-2 {
    padding: .5rem !important
  }

  .p-sm-3 {
    padding: 1rem !important
  }

  .p-sm-4 {
    padding: 1.5rem !important
  }

  .p-sm-5 {
    padding: 2rem !important
  }

  .p-sm-6 {
    padding: 2.5rem !important
  }

  .p-sm-7 {
    padding: 3rem !important
  }

  .p-sm-8 {
    padding: 3.5rem !important
  }

  .p-sm-9 {
    padding: 4rem !important
  }

  .p-sm-10 {
    padding: 4.5rem !important
  }

  .p-sm-11 {
    padding: 5rem !important
  }

  .p-sm-12 {
    padding: 5.5rem !important
  }

  .p-sm-13 {
    padding: 6rem !important
  }

  .p-sm-14 {
    padding: 6.5rem !important
  }

  .p-sm-15 {
    padding: 7rem !important
  }

  .p-sm-16 {
    padding: 7.5rem !important
  }

  .p-sm-17 {
    padding: 8rem !important
  }

  .p-sm-18 {
    padding: 8.5rem !important
  }

  .p-sm-19 {
    padding: 9rem !important
  }

  .p-sm-20 {
    padding: 9.5rem !important
  }

  .p-sm-21 {
    padding: 10rem !important
  }

  .p-sm-22 {
    padding: 12rem !important
  }

  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .px-sm-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .px-sm-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .px-sm-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .px-sm-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .px-sm-7 {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .px-sm-8 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important
  }

  .px-sm-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .px-sm-10 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important
  }

  .px-sm-11 {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .px-sm-12 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important
  }

  .px-sm-13 {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .px-sm-14 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important
  }

  .px-sm-15 {
    padding-left: 7rem !important;
    padding-right: 7rem !important
  }

  .px-sm-16 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important
  }

  .px-sm-17 {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .px-sm-18 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important
  }

  .px-sm-19 {
    padding-left: 9rem !important;
    padding-right: 9rem !important
  }

  .px-sm-20 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important
  }

  .px-sm-21 {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .px-sm-22 {
    padding-left: 12rem !important;
    padding-right: 12rem !important
  }

  .py-sm-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important
  }

  .py-sm-1 {
    padding-bottom: .25rem !important;
    padding-top: .25rem !important
  }

  .py-sm-2 {
    padding-bottom: .5rem !important;
    padding-top: .5rem !important
  }

  .py-sm-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important
  }

  .py-sm-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important
  }

  .py-sm-5 {
    padding-bottom: 2rem !important;
    padding-top: 2rem !important
  }

  .py-sm-6 {
    padding-bottom: 2.5rem !important;
    padding-top: 2.5rem !important
  }

  .py-sm-7 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important
  }

  .py-sm-8 {
    padding-bottom: 3.5rem !important;
    padding-top: 3.5rem !important
  }

  .py-sm-9 {
    padding-bottom: 4rem !important;
    padding-top: 4rem !important
  }

  .py-sm-10 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important
  }

  .py-sm-11 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important
  }

  .py-sm-12 {
    padding-bottom: 5.5rem !important;
    padding-top: 5.5rem !important
  }

  .py-sm-13 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important
  }

  .py-sm-14 {
    padding-bottom: 6.5rem !important;
    padding-top: 6.5rem !important
  }

  .py-sm-15 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important
  }

  .py-sm-16 {
    padding-bottom: 7.5rem !important;
    padding-top: 7.5rem !important
  }

  .py-sm-17 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important
  }

  .py-sm-18 {
    padding-bottom: 8.5rem !important;
    padding-top: 8.5rem !important
  }

  .py-sm-19 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important
  }

  .py-sm-20 {
    padding-bottom: 9.5rem !important;
    padding-top: 9.5rem !important
  }

  .py-sm-21 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important
  }

  .py-sm-22 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important
  }

  .pt-sm-0 {
    padding-top: 0 !important
  }

  .pt-sm-1 {
    padding-top: .25rem !important
  }

  .pt-sm-2 {
    padding-top: .5rem !important
  }

  .pt-sm-3 {
    padding-top: 1rem !important
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important
  }

  .pt-sm-5 {
    padding-top: 2rem !important
  }

  .pt-sm-6 {
    padding-top: 2.5rem !important
  }

  .pt-sm-7 {
    padding-top: 3rem !important
  }

  .pt-sm-8 {
    padding-top: 3.5rem !important
  }

  .pt-sm-9 {
    padding-top: 4rem !important
  }

  .pt-sm-10 {
    padding-top: 4.5rem !important
  }

  .pt-sm-11 {
    padding-top: 5rem !important
  }

  .pt-sm-12 {
    padding-top: 5.5rem !important
  }

  .pt-sm-13 {
    padding-top: 6rem !important
  }

  .pt-sm-14 {
    padding-top: 6.5rem !important
  }

  .pt-sm-15 {
    padding-top: 7rem !important
  }

  .pt-sm-16 {
    padding-top: 7.5rem !important
  }

  .pt-sm-17 {
    padding-top: 8rem !important
  }

  .pt-sm-18 {
    padding-top: 8.5rem !important
  }

  .pt-sm-19 {
    padding-top: 9rem !important
  }

  .pt-sm-20 {
    padding-top: 9.5rem !important
  }

  .pt-sm-21 {
    padding-top: 10rem !important
  }

  .pt-sm-22 {
    padding-top: 12rem !important
  }

  .pe-sm-0 {
    padding-right: 0 !important
  }

  .pe-sm-1 {
    padding-right: .25rem !important
  }

  .pe-sm-2 {
    padding-right: .5rem !important
  }

  .pe-sm-3 {
    padding-right: 1rem !important
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important
  }

  .pe-sm-5 {
    padding-right: 2rem !important
  }

  .pe-sm-6 {
    padding-right: 2.5rem !important
  }

  .pe-sm-7 {
    padding-right: 3rem !important
  }

  .pe-sm-8 {
    padding-right: 3.5rem !important
  }

  .pe-sm-9 {
    padding-right: 4rem !important
  }

  .pe-sm-10 {
    padding-right: 4.5rem !important
  }

  .pe-sm-11 {
    padding-right: 5rem !important
  }

  .pe-sm-12 {
    padding-right: 5.5rem !important
  }

  .pe-sm-13 {
    padding-right: 6rem !important
  }

  .pe-sm-14 {
    padding-right: 6.5rem !important
  }

  .pe-sm-15 {
    padding-right: 7rem !important
  }

  .pe-sm-16 {
    padding-right: 7.5rem !important
  }

  .pe-sm-17 {
    padding-right: 8rem !important
  }

  .pe-sm-18 {
    padding-right: 8.5rem !important
  }

  .pe-sm-19 {
    padding-right: 9rem !important
  }

  .pe-sm-20 {
    padding-right: 9.5rem !important
  }

  .pe-sm-21 {
    padding-right: 10rem !important
  }

  .pe-sm-22 {
    padding-right: 12rem !important
  }

  .pb-sm-0 {
    padding-bottom: 0 !important
  }

  .pb-sm-1 {
    padding-bottom: .25rem !important
  }

  .pb-sm-2 {
    padding-bottom: .5rem !important
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-sm-5 {
    padding-bottom: 2rem !important
  }

  .pb-sm-6 {
    padding-bottom: 2.5rem !important
  }

  .pb-sm-7 {
    padding-bottom: 3rem !important
  }

  .pb-sm-8 {
    padding-bottom: 3.5rem !important
  }

  .pb-sm-9 {
    padding-bottom: 4rem !important
  }

  .pb-sm-10 {
    padding-bottom: 4.5rem !important
  }

  .pb-sm-11 {
    padding-bottom: 5rem !important
  }

  .pb-sm-12 {
    padding-bottom: 5.5rem !important
  }

  .pb-sm-13 {
    padding-bottom: 6rem !important
  }

  .pb-sm-14 {
    padding-bottom: 6.5rem !important
  }

  .pb-sm-15 {
    padding-bottom: 7rem !important
  }

  .pb-sm-16 {
    padding-bottom: 7.5rem !important
  }

  .pb-sm-17 {
    padding-bottom: 8rem !important
  }

  .pb-sm-18 {
    padding-bottom: 8.5rem !important
  }

  .pb-sm-19 {
    padding-bottom: 9rem !important
  }

  .pb-sm-20 {
    padding-bottom: 9.5rem !important
  }

  .pb-sm-21 {
    padding-bottom: 10rem !important
  }

  .pb-sm-22 {
    padding-bottom: 12rem !important
  }

  .ps-sm-0 {
    padding-left: 0 !important
  }

  .ps-sm-1 {
    padding-left: .25rem !important
  }

  .ps-sm-2 {
    padding-left: .5rem !important
  }

  .ps-sm-3 {
    padding-left: 1rem !important
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important
  }

  .ps-sm-5 {
    padding-left: 2rem !important
  }

  .ps-sm-6 {
    padding-left: 2.5rem !important
  }

  .ps-sm-7 {
    padding-left: 3rem !important
  }

  .ps-sm-8 {
    padding-left: 3.5rem !important
  }

  .ps-sm-9 {
    padding-left: 4rem !important
  }

  .ps-sm-10 {
    padding-left: 4.5rem !important
  }

  .ps-sm-11 {
    padding-left: 5rem !important
  }

  .ps-sm-12 {
    padding-left: 5.5rem !important
  }

  .ps-sm-13 {
    padding-left: 6rem !important
  }

  .ps-sm-14 {
    padding-left: 6.5rem !important
  }

  .ps-sm-15 {
    padding-left: 7rem !important
  }

  .ps-sm-16 {
    padding-left: 7.5rem !important
  }

  .ps-sm-17 {
    padding-left: 8rem !important
  }

  .ps-sm-18 {
    padding-left: 8.5rem !important
  }

  .ps-sm-19 {
    padding-left: 9rem !important
  }

  .ps-sm-20 {
    padding-left: 9.5rem !important
  }

  .ps-sm-21 {
    padding-left: 10rem !important
  }

  .ps-sm-22 {
    padding-left: 12rem !important
  }
}

@media (min-width:768px) {
  .m-md-0 {
    margin: 0 !important
  }

  .m-md-1 {
    margin: .25rem !important
  }

  .m-md-2 {
    margin: .5rem !important
  }

  .m-md-3 {
    margin: 1rem !important
  }

  .m-md-4 {
    margin: 1.5rem !important
  }

  .m-md-5 {
    margin: 2rem !important
  }

  .m-md-6 {
    margin: 2.5rem !important
  }

  .m-md-7 {
    margin: 3rem !important
  }

  .m-md-8 {
    margin: 3.5rem !important
  }

  .m-md-9 {
    margin: 4rem !important
  }

  .m-md-10 {
    margin: 4.5rem !important
  }

  .m-md-11 {
    margin: 5rem !important
  }

  .m-md-12 {
    margin: 5.5rem !important
  }

  .m-md-13 {
    margin: 6rem !important
  }

  .m-md-14 {
    margin: 6.5rem !important
  }

  .m-md-15 {
    margin: 7rem !important
  }

  .m-md-16 {
    margin: 7.5rem !important
  }

  .m-md-17 {
    margin: 8rem !important
  }

  .m-md-18 {
    margin: 8.5rem !important
  }

  .m-md-19 {
    margin: 9rem !important
  }

  .m-md-20 {
    margin: 9.5rem !important
  }

  .m-md-21 {
    margin: 10rem !important
  }

  .m-md-22 {
    margin: 12rem !important
  }

  .m-md-auto {
    margin: auto !important
  }

  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  .mx-md-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important
  }

  .mx-md-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important
  }

  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important
  }

  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
  }

  .mx-md-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important
  }

  .mx-md-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important
  }

  .mx-md-7 {
    margin-left: 3rem !important;
    margin-right: 3rem !important
  }

  .mx-md-8 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important
  }

  .mx-md-9 {
    margin-left: 4rem !important;
    margin-right: 4rem !important
  }

  .mx-md-10 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important
  }

  .mx-md-11 {
    margin-left: 5rem !important;
    margin-right: 5rem !important
  }

  .mx-md-12 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important
  }

  .mx-md-13 {
    margin-left: 6rem !important;
    margin-right: 6rem !important
  }

  .mx-md-14 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important
  }

  .mx-md-15 {
    margin-left: 7rem !important;
    margin-right: 7rem !important
  }

  .mx-md-16 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important
  }

  .mx-md-17 {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  .mx-md-18 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important
  }

  .mx-md-19 {
    margin-left: 9rem !important;
    margin-right: 9rem !important
  }

  .mx-md-20 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important
  }

  .mx-md-21 {
    margin-left: 10rem !important;
    margin-right: 10rem !important
  }

  .mx-md-22 {
    margin-left: 12rem !important;
    margin-right: 12rem !important
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .my-md-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important
  }

  .my-md-1 {
    margin-bottom: .25rem !important;
    margin-top: .25rem !important
  }

  .my-md-2 {
    margin-bottom: .5rem !important;
    margin-top: .5rem !important
  }

  .my-md-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important
  }

  .my-md-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important
  }

  .my-md-5 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important
  }

  .my-md-6 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important
  }

  .my-md-7 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important
  }

  .my-md-8 {
    margin-bottom: 3.5rem !important;
    margin-top: 3.5rem !important
  }

  .my-md-9 {
    margin-bottom: 4rem !important;
    margin-top: 4rem !important
  }

  .my-md-10 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important
  }

  .my-md-11 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important
  }

  .my-md-12 {
    margin-bottom: 5.5rem !important;
    margin-top: 5.5rem !important
  }

  .my-md-13 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important
  }

  .my-md-14 {
    margin-bottom: 6.5rem !important;
    margin-top: 6.5rem !important
  }

  .my-md-15 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important
  }

  .my-md-16 {
    margin-bottom: 7.5rem !important;
    margin-top: 7.5rem !important
  }

  .my-md-17 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important
  }

  .my-md-18 {
    margin-bottom: 8.5rem !important;
    margin-top: 8.5rem !important
  }

  .my-md-19 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important
  }

  .my-md-20 {
    margin-bottom: 9.5rem !important;
    margin-top: 9.5rem !important
  }

  .my-md-21 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important
  }

  .my-md-22 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important
  }

  .my-md-auto {
    margin-bottom: auto !important;
    margin-top: auto !important
  }

  .mt-md-0 {
    margin-top: 0 !important
  }

  .mt-md-1 {
    margin-top: .25rem !important
  }

  .mt-md-2 {
    margin-top: .5rem !important
  }

  .mt-md-3 {
    margin-top: 1rem !important
  }

  .mt-md-4 {
    margin-top: 1.5rem !important
  }

  .mt-md-5 {
    margin-top: 2rem !important
  }

  .mt-md-6 {
    margin-top: 2.5rem !important
  }

  .mt-md-7 {
    margin-top: 3rem !important
  }

  .mt-md-8 {
    margin-top: 3.5rem !important
  }

  .mt-md-9 {
    margin-top: 4rem !important
  }

  .mt-md-10 {
    margin-top: 4.5rem !important
  }

  .mt-md-11 {
    margin-top: 5rem !important
  }

  .mt-md-12 {
    margin-top: 5.5rem !important
  }

  .mt-md-13 {
    margin-top: 6rem !important
  }

  .mt-md-14 {
    margin-top: 6.5rem !important
  }

  .mt-md-15 {
    margin-top: 7rem !important
  }

  .mt-md-16 {
    margin-top: 7.5rem !important
  }

  .mt-md-17 {
    margin-top: 8rem !important
  }

  .mt-md-18 {
    margin-top: 8.5rem !important
  }

  .mt-md-19 {
    margin-top: 9rem !important
  }

  .mt-md-20 {
    margin-top: 9.5rem !important
  }

  .mt-md-21 {
    margin-top: 10rem !important
  }

  .mt-md-22 {
    margin-top: 12rem !important
  }

  .mt-md-auto {
    margin-top: auto !important
  }

  .me-md-0 {
    margin-right: 0 !important
  }

  .me-md-1 {
    margin-right: .25rem !important
  }

  .me-md-2 {
    margin-right: .5rem !important
  }

  .me-md-3 {
    margin-right: 1rem !important
  }

  .me-md-4 {
    margin-right: 1.5rem !important
  }

  .me-md-5 {
    margin-right: 2rem !important
  }

  .me-md-6 {
    margin-right: 2.5rem !important
  }

  .me-md-7 {
    margin-right: 3rem !important
  }

  .me-md-8 {
    margin-right: 3.5rem !important
  }

  .me-md-9 {
    margin-right: 4rem !important
  }

  .me-md-10 {
    margin-right: 4.5rem !important
  }

  .me-md-11 {
    margin-right: 5rem !important
  }

  .me-md-12 {
    margin-right: 5.5rem !important
  }

  .me-md-13 {
    margin-right: 6rem !important
  }

  .me-md-14 {
    margin-right: 6.5rem !important
  }

  .me-md-15 {
    margin-right: 7rem !important
  }

  .me-md-16 {
    margin-right: 7.5rem !important
  }

  .me-md-17 {
    margin-right: 8rem !important
  }

  .me-md-18 {
    margin-right: 8.5rem !important
  }

  .me-md-19 {
    margin-right: 9rem !important
  }

  .me-md-20 {
    margin-right: 9.5rem !important
  }

  .me-md-21 {
    margin-right: 10rem !important
  }

  .me-md-22 {
    margin-right: 12rem !important
  }

  .me-md-auto {
    margin-right: auto !important
  }

  .mb-md-0 {
    margin-bottom: 0 !important
  }

  .mb-md-1 {
    margin-bottom: .25rem !important
  }

  .mb-md-2 {
    margin-bottom: .5rem !important
  }

  .mb-md-3 {
    margin-bottom: 1rem !important
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important
  }

  .mb-md-5 {
    margin-bottom: 2rem !important
  }

  .mb-md-6 {
    margin-bottom: 2.5rem !important
  }

  .mb-md-7 {
    margin-bottom: 3rem !important
  }

  .mb-md-8 {
    margin-bottom: 3.5rem !important
  }

  .mb-md-9 {
    margin-bottom: 4rem !important
  }

  .mb-md-10 {
    margin-bottom: 4.5rem !important
  }

  .mb-md-11 {
    margin-bottom: 5rem !important
  }

  .mb-md-12 {
    margin-bottom: 5.5rem !important
  }

  .mb-md-13 {
    margin-bottom: 6rem !important
  }

  .mb-md-14 {
    margin-bottom: 6.5rem !important
  }

  .mb-md-15 {
    margin-bottom: 7rem !important
  }

  .mb-md-16 {
    margin-bottom: 7.5rem !important
  }

  .mb-md-17 {
    margin-bottom: 8rem !important
  }

  .mb-md-18 {
    margin-bottom: 8.5rem !important
  }

  .mb-md-19 {
    margin-bottom: 9rem !important
  }

  .mb-md-20 {
    margin-bottom: 9.5rem !important
  }

  .mb-md-21 {
    margin-bottom: 10rem !important
  }

  .mb-md-22 {
    margin-bottom: 12rem !important
  }

  .mb-md-auto {
    margin-bottom: auto !important
  }

  .ms-md-0 {
    margin-left: 0 !important
  }

  .ms-md-1 {
    margin-left: .25rem !important
  }

  .ms-md-2 {
    margin-left: .5rem !important
  }

  .ms-md-3 {
    margin-left: 1rem !important
  }

  .ms-md-4 {
    margin-left: 1.5rem !important
  }

  .ms-md-5 {
    margin-left: 2rem !important
  }

  .ms-md-6 {
    margin-left: 2.5rem !important
  }

  .ms-md-7 {
    margin-left: 3rem !important
  }

  .ms-md-8 {
    margin-left: 3.5rem !important
  }

  .ms-md-9 {
    margin-left: 4rem !important
  }

  .ms-md-10 {
    margin-left: 4.5rem !important
  }

  .ms-md-11 {
    margin-left: 5rem !important
  }

  .ms-md-12 {
    margin-left: 5.5rem !important
  }

  .ms-md-13 {
    margin-left: 6rem !important
  }

  .ms-md-14 {
    margin-left: 6.5rem !important
  }

  .ms-md-15 {
    margin-left: 7rem !important
  }

  .ms-md-16 {
    margin-left: 7.5rem !important
  }

  .ms-md-17 {
    margin-left: 8rem !important
  }

  .ms-md-18 {
    margin-left: 8.5rem !important
  }

  .ms-md-19 {
    margin-left: 9rem !important
  }

  .ms-md-20 {
    margin-left: 9.5rem !important
  }

  .ms-md-21 {
    margin-left: 10rem !important
  }

  .ms-md-22 {
    margin-left: 12rem !important
  }

  .ms-md-auto {
    margin-left: auto !important
  }

  .m-md-n1 {
    margin: -.25rem !important
  }

  .m-md-n2 {
    margin: -.5rem !important
  }

  .m-md-n3 {
    margin: -1rem !important
  }

  .m-md-n4 {
    margin: -1.5rem !important
  }

  .m-md-n5 {
    margin: -2rem !important
  }

  .m-md-n6 {
    margin: -2.5rem !important
  }

  .m-md-n7 {
    margin: -3rem !important
  }

  .m-md-n8 {
    margin: -3.5rem !important
  }

  .m-md-n9 {
    margin: -4rem !important
  }

  .m-md-n10 {
    margin: -4.5rem !important
  }

  .m-md-n11 {
    margin: -5rem !important
  }

  .m-md-n12 {
    margin: -5.5rem !important
  }

  .m-md-n13 {
    margin: -6rem !important
  }

  .m-md-n14 {
    margin: -6.5rem !important
  }

  .m-md-n15 {
    margin: -7rem !important
  }

  .m-md-n16 {
    margin: -7.5rem !important
  }

  .m-md-n17 {
    margin: -8rem !important
  }

  .m-md-n18 {
    margin: -8.5rem !important
  }

  .m-md-n19 {
    margin: -9rem !important
  }

  .m-md-n20 {
    margin: -9.5rem !important
  }

  .m-md-n21 {
    margin: -10rem !important
  }

  .m-md-n22 {
    margin: -12rem !important
  }

  .mx-md-n1 {
    margin-left: -.25rem !important;
    margin-right: -.25rem !important
  }

  .mx-md-n2 {
    margin-left: -.5rem !important;
    margin-right: -.5rem !important
  }

  .mx-md-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important
  }

  .mx-md-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important
  }

  .mx-md-n5 {
    margin-left: -2rem !important;
    margin-right: -2rem !important
  }

  .mx-md-n6 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important
  }

  .mx-md-n7 {
    margin-left: -3rem !important;
    margin-right: -3rem !important
  }

  .mx-md-n8 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important
  }

  .mx-md-n9 {
    margin-left: -4rem !important;
    margin-right: -4rem !important
  }

  .mx-md-n10 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important
  }

  .mx-md-n11 {
    margin-left: -5rem !important;
    margin-right: -5rem !important
  }

  .mx-md-n12 {
    margin-left: -5.5rem !important;
    margin-right: -5.5rem !important
  }

  .mx-md-n13 {
    margin-left: -6rem !important;
    margin-right: -6rem !important
  }

  .mx-md-n14 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important
  }

  .mx-md-n15 {
    margin-left: -7rem !important;
    margin-right: -7rem !important
  }

  .mx-md-n16 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important
  }

  .mx-md-n17 {
    margin-left: -8rem !important;
    margin-right: -8rem !important
  }

  .mx-md-n18 {
    margin-left: -8.5rem !important;
    margin-right: -8.5rem !important
  }

  .mx-md-n19 {
    margin-left: -9rem !important;
    margin-right: -9rem !important
  }

  .mx-md-n20 {
    margin-left: -9.5rem !important;
    margin-right: -9.5rem !important
  }

  .mx-md-n21 {
    margin-left: -10rem !important;
    margin-right: -10rem !important
  }

  .mx-md-n22 {
    margin-left: -12rem !important;
    margin-right: -12rem !important
  }

  .my-md-n1 {
    margin-bottom: -.25rem !important;
    margin-top: -.25rem !important
  }

  .my-md-n2 {
    margin-bottom: -.5rem !important;
    margin-top: -.5rem !important
  }

  .my-md-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important
  }

  .my-md-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important
  }

  .my-md-n5 {
    margin-bottom: -2rem !important;
    margin-top: -2rem !important
  }

  .my-md-n6 {
    margin-bottom: -2.5rem !important;
    margin-top: -2.5rem !important
  }

  .my-md-n7 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important
  }

  .my-md-n8 {
    margin-bottom: -3.5rem !important;
    margin-top: -3.5rem !important
  }

  .my-md-n9 {
    margin-bottom: -4rem !important;
    margin-top: -4rem !important
  }

  .my-md-n10 {
    margin-bottom: -4.5rem !important;
    margin-top: -4.5rem !important
  }

  .my-md-n11 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important
  }

  .my-md-n12 {
    margin-bottom: -5.5rem !important;
    margin-top: -5.5rem !important
  }

  .my-md-n13 {
    margin-bottom: -6rem !important;
    margin-top: -6rem !important
  }

  .my-md-n14 {
    margin-bottom: -6.5rem !important;
    margin-top: -6.5rem !important
  }

  .my-md-n15 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important
  }

  .my-md-n16 {
    margin-bottom: -7.5rem !important;
    margin-top: -7.5rem !important
  }

  .my-md-n17 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important
  }

  .my-md-n18 {
    margin-bottom: -8.5rem !important;
    margin-top: -8.5rem !important
  }

  .my-md-n19 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important
  }

  .my-md-n20 {
    margin-bottom: -9.5rem !important;
    margin-top: -9.5rem !important
  }

  .my-md-n21 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important
  }

  .my-md-n22 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important
  }

  .mt-md-n1 {
    margin-top: -.25rem !important
  }

  .mt-md-n2 {
    margin-top: -.5rem !important
  }

  .mt-md-n3 {
    margin-top: -1rem !important
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important
  }

  .mt-md-n5 {
    margin-top: -2rem !important
  }

  .mt-md-n6 {
    margin-top: -2.5rem !important
  }

  .mt-md-n7 {
    margin-top: -3rem !important
  }

  .mt-md-n8 {
    margin-top: -3.5rem !important
  }

  .mt-md-n9 {
    margin-top: -4rem !important
  }

  .mt-md-n10 {
    margin-top: -4.5rem !important
  }

  .mt-md-n11 {
    margin-top: -5rem !important
  }

  .mt-md-n12 {
    margin-top: -5.5rem !important
  }

  .mt-md-n13 {
    margin-top: -6rem !important
  }

  .mt-md-n14 {
    margin-top: -6.5rem !important
  }

  .mt-md-n15 {
    margin-top: -7rem !important
  }

  .mt-md-n16 {
    margin-top: -7.5rem !important
  }

  .mt-md-n17 {
    margin-top: -8rem !important
  }

  .mt-md-n18 {
    margin-top: -8.5rem !important
  }

  .mt-md-n19 {
    margin-top: -9rem !important
  }

  .mt-md-n20 {
    margin-top: -9.5rem !important
  }

  .mt-md-n21 {
    margin-top: -10rem !important
  }

  .mt-md-n22 {
    margin-top: -12rem !important
  }

  .me-md-n1 {
    margin-right: -.25rem !important
  }

  .me-md-n2 {
    margin-right: -.5rem !important
  }

  .me-md-n3 {
    margin-right: -1rem !important
  }

  .me-md-n4 {
    margin-right: -1.5rem !important
  }

  .me-md-n5 {
    margin-right: -2rem !important
  }

  .me-md-n6 {
    margin-right: -2.5rem !important
  }

  .me-md-n7 {
    margin-right: -3rem !important
  }

  .me-md-n8 {
    margin-right: -3.5rem !important
  }

  .me-md-n9 {
    margin-right: -4rem !important
  }

  .me-md-n10 {
    margin-right: -4.5rem !important
  }

  .me-md-n11 {
    margin-right: -5rem !important
  }

  .me-md-n12 {
    margin-right: -5.5rem !important
  }

  .me-md-n13 {
    margin-right: -6rem !important
  }

  .me-md-n14 {
    margin-right: -6.5rem !important
  }

  .me-md-n15 {
    margin-right: -7rem !important
  }

  .me-md-n16 {
    margin-right: -7.5rem !important
  }

  .me-md-n17 {
    margin-right: -8rem !important
  }

  .me-md-n18 {
    margin-right: -8.5rem !important
  }

  .me-md-n19 {
    margin-right: -9rem !important
  }

  .me-md-n20 {
    margin-right: -9.5rem !important
  }

  .me-md-n21 {
    margin-right: -10rem !important
  }

  .me-md-n22 {
    margin-right: -12rem !important
  }

  .mb-md-n1 {
    margin-bottom: -.25rem !important
  }

  .mb-md-n2 {
    margin-bottom: -.5rem !important
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important
  }

  .mb-md-n5 {
    margin-bottom: -2rem !important
  }

  .mb-md-n6 {
    margin-bottom: -2.5rem !important
  }

  .mb-md-n7 {
    margin-bottom: -3rem !important
  }

  .mb-md-n8 {
    margin-bottom: -3.5rem !important
  }

  .mb-md-n9 {
    margin-bottom: -4rem !important
  }

  .mb-md-n10 {
    margin-bottom: -4.5rem !important
  }

  .mb-md-n11 {
    margin-bottom: -5rem !important
  }

  .mb-md-n12 {
    margin-bottom: -5.5rem !important
  }

  .mb-md-n13 {
    margin-bottom: -6rem !important
  }

  .mb-md-n14 {
    margin-bottom: -6.5rem !important
  }

  .mb-md-n15 {
    margin-bottom: -7rem !important
  }

  .mb-md-n16 {
    margin-bottom: -7.5rem !important
  }

  .mb-md-n17 {
    margin-bottom: -8rem !important
  }

  .mb-md-n18 {
    margin-bottom: -8.5rem !important
  }

  .mb-md-n19 {
    margin-bottom: -9rem !important
  }

  .mb-md-n20 {
    margin-bottom: -9.5rem !important
  }

  .mb-md-n21 {
    margin-bottom: -10rem !important
  }

  .mb-md-n22 {
    margin-bottom: -12rem !important
  }

  .ms-md-n1 {
    margin-left: -.25rem !important
  }

  .ms-md-n2 {
    margin-left: -.5rem !important
  }

  .ms-md-n3 {
    margin-left: -1rem !important
  }

  .ms-md-n4 {
    margin-left: -1.5rem !important
  }

  .ms-md-n5 {
    margin-left: -2rem !important
  }

  .ms-md-n6 {
    margin-left: -2.5rem !important
  }

  .ms-md-n7 {
    margin-left: -3rem !important
  }

  .ms-md-n8 {
    margin-left: -3.5rem !important
  }

  .ms-md-n9 {
    margin-left: -4rem !important
  }

  .ms-md-n10 {
    margin-left: -4.5rem !important
  }

  .ms-md-n11 {
    margin-left: -5rem !important
  }

  .ms-md-n12 {
    margin-left: -5.5rem !important
  }

  .ms-md-n13 {
    margin-left: -6rem !important
  }

  .ms-md-n14 {
    margin-left: -6.5rem !important
  }

  .ms-md-n15 {
    margin-left: -7rem !important
  }

  .ms-md-n16 {
    margin-left: -7.5rem !important
  }

  .ms-md-n17 {
    margin-left: -8rem !important
  }

  .ms-md-n18 {
    margin-left: -8.5rem !important
  }

  .ms-md-n19 {
    margin-left: -9rem !important
  }

  .ms-md-n20 {
    margin-left: -9.5rem !important
  }

  .ms-md-n21 {
    margin-left: -10rem !important
  }

  .ms-md-n22 {
    margin-left: -12rem !important
  }

  .p-md-0 {
    padding: 0 !important
  }

  .p-md-1 {
    padding: .25rem !important
  }

  .p-md-2 {
    padding: .5rem !important
  }

  .p-md-3 {
    padding: 1rem !important
  }

  .p-md-4 {
    padding: 1.5rem !important
  }

  .p-md-5 {
    padding: 2rem !important
  }

  .p-md-6 {
    padding: 2.5rem !important
  }

  .p-md-7 {
    padding: 3rem !important
  }

  .p-md-8 {
    padding: 3.5rem !important
  }

  .p-md-9 {
    padding: 4rem !important
  }

  .p-md-10 {
    padding: 4.5rem !important
  }

  .p-md-11 {
    padding: 5rem !important
  }

  .p-md-12 {
    padding: 5.5rem !important
  }

  .p-md-13 {
    padding: 6rem !important
  }

  .p-md-14 {
    padding: 6.5rem !important
  }

  .p-md-15 {
    padding: 7rem !important
  }

  .p-md-16 {
    padding: 7.5rem !important
  }

  .p-md-17 {
    padding: 8rem !important
  }

  .p-md-18 {
    padding: 8.5rem !important
  }

  .p-md-19 {
    padding: 9rem !important
  }

  .p-md-20 {
    padding: 9.5rem !important
  }

  .p-md-21 {
    padding: 10rem !important
  }

  .p-md-22 {
    padding: 12rem !important
  }

  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .px-md-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important
  }

  .px-md-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
  }

  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  .px-md-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  .px-md-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
  }

  .px-md-7 {
    padding-left: 3rem !important;
    padding-right: 3rem !important
  }

  .px-md-8 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important
  }

  .px-md-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  .px-md-10 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important
  }

  .px-md-11 {
    padding-left: 5rem !important;
    padding-right: 5rem !important
  }

  .px-md-12 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important
  }

  .px-md-13 {
    padding-left: 6rem !important;
    padding-right: 6rem !important
  }

  .px-md-14 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important
  }

  .px-md-15 {
    padding-left: 7rem !important;
    padding-right: 7rem !important
  }

  .px-md-16 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important
  }

  .px-md-17 {
    padding-left: 8rem !important;
    padding-right: 8rem !important
  }

  .px-md-18 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important
  }

  .px-md-19 {
    padding-left: 9rem !important;
    padding-right: 9rem !important
  }

  .px-md-20 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important
  }

  .px-md-21 {
    padding-left: 10rem !important;
    padding-right: 10rem !important
  }

  .px-md-22 {
    padding-left: 12rem !important;
    padding-right: 12rem !important
  }

  .py-md-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important
  }

  .py-md-1 {
    padding-bottom: .25rem !important;
    padding-top: .25rem !important
  }

  .py-md-2 {
    padding-bottom: .5rem !important;
    padding-top: .5rem !important
  }

  .py-md-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important
  }

  .py-md-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important
  }

  .py-md-5 {
    padding-bottom: 2rem !important;
    padding-top: 2rem !important
  }

  .py-md-6 {
    padding-bottom: 2.5rem !important;
    padding-top: 2.5rem !important
  }

  .py-md-7 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important
  }

  .py-md-8 {
    padding-bottom: 3.5rem !important;
    padding-top: 3.5rem !important
  }

  .py-md-9 {
    padding-bottom: 4rem !important;
    padding-top: 4rem !important
  }

  .py-md-10 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important
  }

  .py-md-11 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important
  }

  .py-md-12 {
    padding-bottom: 5.5rem !important;
    padding-top: 5.5rem !important
  }

  .py-md-13 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important
  }

  .py-md-14 {
    padding-bottom: 6.5rem !important;
    padding-top: 6.5rem !important
  }

  .py-md-15 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important
  }

  .py-md-16 {
    padding-bottom: 7.5rem !important;
    padding-top: 7.5rem !important
  }

  .py-md-17 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important
  }

  .py-md-18 {
    padding-bottom: 8.5rem !important;
    padding-top: 8.5rem !important
  }

  .py-md-19 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important
  }

  .py-md-20 {
    padding-bottom: 9.5rem !important;
    padding-top: 9.5rem !important
  }

  .py-md-21 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important
  }

  .py-md-22 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important
  }

  .pt-md-0 {
    padding-top: 0 !important
  }

  .pt-md-1 {
    padding-top: .25rem !important
  }

  .pt-md-2 {
    padding-top: .5rem !important
  }

  .pt-md-3 {
    padding-top: 1rem !important
  }

  .pt-md-4 {
    padding-top: 1.5rem !important
  }

  .pt-md-5 {
    padding-top: 2rem !important
  }

  .pt-md-6 {
    padding-top: 2.5rem !important
  }

  .pt-md-7 {
    padding-top: 3rem !important
  }

  .pt-md-8 {
    padding-top: 3.5rem !important
  }

  .pt-md-9 {
    padding-top: 4rem !important
  }

  .pt-md-10 {
    padding-top: 4.5rem !important
  }

  .pt-md-11 {
    padding-top: 5rem !important
  }

  .pt-md-12 {
    padding-top: 5.5rem !important
  }

  .pt-md-13 {
    padding-top: 6rem !important
  }

  .pt-md-14 {
    padding-top: 6.5rem !important
  }

  .pt-md-15 {
    padding-top: 7rem !important
  }

  .pt-md-16 {
    padding-top: 7.5rem !important
  }

  .pt-md-17 {
    padding-top: 8rem !important
  }

  .pt-md-18 {
    padding-top: 8.5rem !important
  }

  .pt-md-19 {
    padding-top: 9rem !important
  }

  .pt-md-20 {
    padding-top: 9.5rem !important
  }

  .pt-md-21 {
    padding-top: 10rem !important
  }

  .pt-md-22 {
    padding-top: 12rem !important
  }

  .pe-md-0 {
    padding-right: 0 !important
  }

  .pe-md-1 {
    padding-right: .25rem !important
  }

  .pe-md-2 {
    padding-right: .5rem !important
  }

  .pe-md-3 {
    padding-right: 1rem !important
  }

  .pe-md-4 {
    padding-right: 1.5rem !important
  }

  .pe-md-5 {
    padding-right: 2rem !important
  }

  .pe-md-6 {
    padding-right: 2.5rem !important
  }

  .pe-md-7 {
    padding-right: 3rem !important
  }

  .pe-md-8 {
    padding-right: 3.5rem !important
  }

  .pe-md-9 {
    padding-right: 4rem !important
  }

  .pe-md-10 {
    padding-right: 4.5rem !important
  }

  .pe-md-11 {
    padding-right: 5rem !important
  }

  .pe-md-12 {
    padding-right: 5.5rem !important
  }

  .pe-md-13 {
    padding-right: 6rem !important
  }

  .pe-md-14 {
    padding-right: 6.5rem !important
  }

  .pe-md-15 {
    padding-right: 7rem !important
  }

  .pe-md-16 {
    padding-right: 7.5rem !important
  }

  .pe-md-17 {
    padding-right: 8rem !important
  }

  .pe-md-18 {
    padding-right: 8.5rem !important
  }

  .pe-md-19 {
    padding-right: 9rem !important
  }

  .pe-md-20 {
    padding-right: 9.5rem !important
  }

  .pe-md-21 {
    padding-right: 10rem !important
  }

  .pe-md-22 {
    padding-right: 12rem !important
  }

  .pb-md-0 {
    padding-bottom: 0 !important
  }

  .pb-md-1 {
    padding-bottom: .25rem !important
  }

  .pb-md-2 {
    padding-bottom: .5rem !important
  }

  .pb-md-3 {
    padding-bottom: 1rem !important
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important
  }

  .pb-md-5 {
    padding-bottom: 2rem !important
  }

  .pb-md-6 {
    padding-bottom: 2.5rem !important
  }

  .pb-md-7 {
    padding-bottom: 3rem !important
  }

  .pb-md-8 {
    padding-bottom: 3.5rem !important
  }

  .pb-md-9 {
    padding-bottom: 4rem !important
  }

  .pb-md-10 {
    padding-bottom: 4.5rem !important
  }

  .pb-md-11 {
    padding-bottom: 5rem !important
  }

  .pb-md-12 {
    padding-bottom: 5.5rem !important
  }

  .pb-md-13 {
    padding-bottom: 6rem !important
  }

  .pb-md-14 {
    padding-bottom: 6.5rem !important
  }

  .pb-md-15 {
    padding-bottom: 7rem !important
  }

  .pb-md-16 {
    padding-bottom: 7.5rem !important
  }

  .pb-md-17 {
    padding-bottom: 8rem !important
  }

  .pb-md-18 {
    padding-bottom: 8.5rem !important
  }

  .pb-md-19 {
    padding-bottom: 9rem !important
  }

  .pb-md-20 {
    padding-bottom: 9.5rem !important
  }

  .pb-md-21 {
    padding-bottom: 10rem !important
  }

  .pb-md-22 {
    padding-bottom: 12rem !important
  }

  .ps-md-0 {
    padding-left: 0 !important
  }

  .ps-md-1 {
    padding-left: .25rem !important
  }

  .ps-md-2 {
    padding-left: .5rem !important
  }

  .ps-md-3 {
    padding-left: 1rem !important
  }

  .ps-md-4 {
    padding-left: 1.5rem !important
  }

  .ps-md-5 {
    padding-left: 2rem !important
  }

  .ps-md-6 {
    padding-left: 2.5rem !important
  }

  .ps-md-7 {
    padding-left: 3rem !important
  }

  .ps-md-8 {
    padding-left: 3.5rem !important
  }

  .ps-md-9 {
    padding-left: 4rem !important
  }

  .ps-md-10 {
    padding-left: 4.5rem !important
  }

  .ps-md-11 {
    padding-left: 5rem !important
  }

  .ps-md-12 {
    padding-left: 5.5rem !important
  }

  .ps-md-13 {
    padding-left: 6rem !important
  }

  .ps-md-14 {
    padding-left: 6.5rem !important
  }

  .ps-md-15 {
    padding-left: 7rem !important
  }

  .ps-md-16 {
    padding-left: 7.5rem !important
  }

  .ps-md-17 {
    padding-left: 8rem !important
  }

  .ps-md-18 {
    padding-left: 8.5rem !important
  }

  .ps-md-19 {
    padding-left: 9rem !important
  }

  .ps-md-20 {
    padding-left: 9.5rem !important
  }

  .ps-md-21 {
    padding-left: 10rem !important
  }

  .ps-md-22 {
    padding-left: 12rem !important
  }
}

/** spacing css **/
/** font css **/
.w-10 {
  width: 10% !important;
}

.w-20 {
  width: 20% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.w-100 {
  width: 100% !important;
  max-width: 100% !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-41 {
  font-size: 41px !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.radius-5 {
  border-radius: 5px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-50 {
  border-radius: 50px;
}

.lh-18 {
  line-height: 18px;
}

.lh-20 {
  line-height: 20px;
}

.lh-22 {
  line-height: 22px;
}

.lh-24 {
  line-height: 24px;
}

.lh-26 {
  line-height: 26px;
}

.lh-28 {
  line-height: 28px;
}

.lh-35 {
  line-height: 42px !important;
}


@media (max-width:1208px) {

  .fs-md-8 {
    font-size: 8px !important;
  }

  .fs-md-9 {
    font-size: 9px !important;
  }

  .fs-md-10 {
    font-size: 10px !important;
  }

  .fs-md-11 {
    font-size: 11px !important;
  }

  .fs-md-12 {
    font-size: 12px !important;
  }

  .fs-md-13 {
    font-size: 13px !important;
  }

  .fs-md-14 {
    font-size: 14px !important;
  }

  .fs-md-15 {
    font-size: 15px !important;
  }

  .fs-md-16 {
    font-size: 16px !important;
  }

  .fs-md-17 {
    font-size: 17px !important;
  }

  .fs-md-18 {
    font-size: 18px !important;
  }

  .fs-md-19 {
    font-size: 19px !important;
  }

  .fs-md-20 {
    font-size: 20px !important;
  }

  .fs-md-21 {
    font-size: 21px !important;
  }

  .fs-md-22 {
    font-size: 22px !important;
  }

  .fs-md-23 {
    font-size: 23px !important;
  }

  .fs-md-24 {
    font-size: 24px !important;
  }

  .fs-md-25 {
    font-size: 25px !important;
  }

  .fs-md-26 {
    font-size: 26px !important;
  }

  .fs-md-27 {
    font-size: 27px !important;
  }

  .fs-md-28 {
    font-size: 28px !important;
  }

  .fs-md-29 {
    font-size: 29px !important;
  }

  .fs-md-30 {
    font-size: 30px !important;
  }

  .fs-md-31 {
    font-size: 31px !important;
  }

  .fs-md-32 {
    font-size: 32px !important;
  }

  .fs-md-33 {
    font-size: 33px !important;
  }

  .fs-md-34 {
    font-size: 34px !important;
  }

  .fs-md-35 {
    font-size: 35px !important;
  }

  .fs-md-36 {
    font-size: 36px !important;
  }

  .fs-md-37 {
    font-size: 37px !important;
  }

  .fs-md-38 {
    font-size: 38px !important;
  }

  .fs-md-39 {
    font-size: 39px !important;
  }

  .fs-md-40 {
    font-size: 40px !important;
  }

  .fs-md-41 {
    font-size: 41px !important;
  }

  .w-md-10 {
    width: 10% !important;
  }

  .w-md-20 {
    width: 20% !important;
  }

  .w-md-30 {
    width: 30% !important;
  }

  .w-md-40 {
    width: 40% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-60 {
    width: 60% !important;
  }

  .w-md-70 {
    width: 70% !important;
  }

  .w-md-80 {
    width: 80% !important;
  }

  .w-md-90 {
    width: 90% !important;
  }

  .w-md-100 {
    width: 100% !important;
  }
}


@media (max-width:576px) {
  .fs-sm-8 {
    font-size: 8px !important;
  }

  .fs-sm-9 {
    font-size: 9px !important;
  }

  .fs-sm-10 {
    font-size: 10px !important;
  }

  .fs-sm-11 {
    font-size: 11px !important;
  }

  .fs-sm-12 {
    font-size: 12px !important;
  }

  .fs-sm-13 {
    font-size: 13px !important;
  }

  .fs-sm-14 {
    font-size: 14px !important;
  }

  .fs-sm-15 {
    font-size: 15px !important;
  }

  .fs-sm-16 {
    font-size: 16px !important;
  }

  .fs-sm-17 {
    font-size: 17px !important;
  }

  .fs-sm-18 {
    font-size: 18px !important;
  }

  .fs-sm-19 {
    font-size: 19px !important;
  }

  .fs-sm-20 {
    font-size: 20px !important;
  }

  .fs-sm-21 {
    font-size: 21px !important;
  }

  .fs-sm-22 {
    font-size: 22px !important;
  }

  .fs-sm-23 {
    font-size: 23px !important;
  }

  .fs-sm-24 {
    font-size: 24px !important;
  }

  .fs-sm-25 {
    font-size: 25px !important;
  }

  .fs-sm-26 {
    font-size: 26px !important;
  }

  .fs-sm-27 {
    font-size: 27px !important;
  }

  .fs-sm-28 {
    font-size: 28px !important;
  }

  .fs-sm-29 {
    font-size: 29px !important;
  }

  .fs-sm-30 {
    font-size: 30px !important;
  }

  .fs-sm-31 {
    font-size: 31px !important;
  }

  .fs-sm-32 {
    font-size: 32px !important;
  }

  .fs-sm-33 {
    font-size: 33px !important;
  }

  .fs-sm-34 {
    font-size: 34px !important;
  }

  .fs-sm-35 {
    font-size: 35px !important;
  }

  .fs-sm-36 {
    font-size: 36px !important;
  }

  .fs-sm-37 {
    font-size: 37px !important;
  }

  .fs-sm-38 {
    font-size: 38px !important;
  }

  .fs-sm-39 {
    font-size: 39px !important;
  }

  .fs-sm-40 {
    font-size: 40px !important;
  }

  .fs-sm-41 {
    font-size: 41px !important;
  }

  .w-sm-10 {
    width: 10% !important;
  }

  .w-sm-20 {
    width: 20% !important;
  }

  .w-sm-30 {
    width: 30% !important;
  }

  .W-sm-40 {
    width: 40% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-60 {
    width: 60% !important;
  }

  .w-sm-70 {
    width: 70% !important;
  }

  .w-sm-80 {
    width: 80% !important;
  }

  .w-sm-90 {
    width: 90% !important;
  }

  .w-sm-100 {
    width: 100% !important;
  }
}

/** font css **/
/** color **/
.bg-light-orange {
  background: #FFE9D6;
}

.theme-black {
  color: #231F20;
}

.theme-light-black {
  color: #5B5B5B;
}


.bg-blue {
  background: #25A4F2 !important;
}

/** color **/

.career-discovery .accordion {
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  width: 100%;
  height: auto;
  margin-top: 18px;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-blue-300);
}

.tt-header .navbar {
  width: 100%;
  /* height: 4.25rem; */
  margin-inline: auto;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}

.navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  /* overflow: auto; */
  pointer-events: none;
  background-color: var(--color-white-100);
  transition: opacity 0.4s ease;
}

.navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

.login-menu {
  display: flex;
  margin-bottom: 0px;
}

.dropdown-group.crs-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1rem;
}

.coursebox-nav {
  border-radius: 9px;
  position: relative;
  padding: 10px 11px !important;
  overflow: hidden;
}

.coursebox-nav.nv-bx-1 {
  background: #3F37C9;
}

.nv-bx-1::after,
.nv-bx-2::after,
.nv-bx-3::after,
.nv-bx-4::after,
.nv-bx-5::after,
.nv-bx-6::after {
  background: url("../images/for-student.png");
  content: "";
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  position: absolute;
  right: -113px;
}

.coursebox-nav.nv-bx-2 {
  background: #3CBAE1;
}

.coursebox-nav.nv-bx-3 {
  background: #EF5DA8;
}

.coursebox-nav.nv-bx-4 {
  background: #F2994A;
}

.coursebox-nav.nv-bx-5 {
  background: #27AE60;
}

.coursebox-nav.nv-bx-6 {
  background: #2F80ED;
}

.nav-tp-title {
  font-size: 14px;
  color: #fff;
}

.item-nav-tp {
  float: left;
  background: rgba(255, 255, 255, 0.20);
  margin-bottom: 10px;
  border-radius: 14px;
  padding: 0 12px;
  color: #fff;
  margin-top: 8px;
}

.item-nav-tp p {
  margin-bottom: 0px;
  color: #fff;
  font-size: 12px;
}

@media screen and (min-width: 62rem) {
  .tt-header .navbar {
    display: flex;
    justify-content: space-between;
    padding: 0px;
  }

  .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    /* overflow: auto; */
    pointer-events: visible;
    background: none;
    transition: none;
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: none;
    min-width: fit-content;
  }
}

.menu-item:hover {
  background: #efecff;
  /* color: red; */
}

.menu-item.single-link:hover a {
  color: #5249DF !important;
}


.menu-item.dropdown:hover .dropdown-toggle.menu-link {
  color: #5249DF !important;
}


.dropdown-content.tabs-auto-fit a:hover {
  background: #efecff;
  color: #5249DF !important;
}


.menu {
  padding-block: 1rem;
  padding-inline: auto;
}

.menu-link {
  font-size: 14px;
  font-weight: 600;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: var(--color-black-500);
  transition: color 0.3s ease;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
  width: auto !important;
}

.tt-header .dropdown-toggle::after {
  display: none;
}

@media screen and (min-width: 62rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    column-gap: 1rem;
    height: 100%;
    padding: unset;
    margin-bottom: 0px;
  }

  .menu-item {
    display: flex;
    cursor: pointer;
    padding-inline: 0.5rem;
    position: relative;
    height: 64px;
    justify-content: center;
    align-items: center;
    min-width: fit-content;
    flex-shrink: 0;
    max-width: none;
    width: auto;
  }

  .menu-link {
    padding: unset;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: none !important;
    width: auto !important;
  }

  .menu-item.single-link .menu-link,
  .menu-item.dropdown .dropdown-toggle.menu-link {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: none !important;
    width: auto !important;
  }
}

.dropdown-toggle {
  cursor: pointer;
  outline: none;
  user-select: none;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.dropdown-toggle .bx.bx-chevron-down {
  font-size: 1rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
  margin-top: 3px;
  color: rgb(157, 150, 150);
}

.dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: var(--color-white-100);
  transition: height 0.5s ease;
}

.dropdown-column,
.dropdown-group,
.dropdown-items {
  display: grid;
}

.dropdown-group {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}

.dropdown-title {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}

.dropdown-icon .bx.bx-chevron-down {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-blue-300);
}

.dropdown-items {
  row-gap: 0.5rem;
  padding-inline: 3.5rem;
  padding-top: 0.35rem;
}

.dropdown-link {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: inherit;
  color: var(--color-black-500);
  transition: color 0.3s ease;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-wrap: break-word;
}

.dropdown-show>.dropdown-toggle .bx.bx-chevron-down {
  rotate: 180deg;
}

.dropdown-block {
  display: flex;
  align-items: flex-start;
  column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}

.menu-item.login-link a {
  color: #4f48d2;
  font-weight: 600;
}

.sing-up-link a {
  background: #4f48d2;
  color: #fff;
  padding: 7px 30px;
  border-radius: 50px;
  border-bottom: 4px solid #3e38a7;
}

@media screen and (min-width: 62rem) {
  .dropdown-toggle {
    column-gap: 0.35rem;
    pointer-events: none;
  }

  .dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: max-content;
    pointer-events: none;
    background-color: var(--color-white-100);
    border-top: 2px solid var(--color-white-200);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
  }

  .dropdown-column {
    /* grid-template-columns: repeat(3, minmax(0, 1fr));*/
    column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }

  .dropdown-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 2rem;
  }

  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: unset;
  }

  .dropdown-items {
    padding-top: unset;
  }

  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }

  .dropdown:hover>.dropdown-content {
    cursor: initial;
    top: 4.25rem;
    opacity: 1;
    pointer-events: initial;
  }

  .dropdown:hover>.dropdown-toggle .bx.bx-chevron-down {
    rotate: 180deg;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: var(--color-black-500);
  transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active>.burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active>.burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active>.burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.dropdown-group.resource-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  grid-gap: 0.75rem;
}

.text-base.font-medium {
  color: rgba(79, 79, 79, 1);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0px;
}

.text-base.font-normal {
  font-size: 14px;
  line-height: 20px;
}

.dropdown-block .lint-with-arrow::after {
  top: 4px;
  right: 4px;
}


.stat-info p+p {
  font-size: 15px;
}

/** Custom nav bar css **/

.tt-header .navbar {
  background: rgb(244, 243, 255, .50);
  border-radius: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  backdrop-filter: blur(3px);
  border: 1px solid #5350f72e;
}


.header.tt-header.shrink {
  margin-top: 0px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  backdrop-filter: blur(2.15px);
  background: rgb(244, 243, 255, .80);
  border: 0px;
  border-bottom: 1px solid #5350f72e;
  transition: all 0.2s;
}


.header.tt-header.shrink .navbar {
  box-shadow: none;
  border-radius: 0px;
  border: 0px;
  background: none;
}


.dropdown-content.login-content {
  width: 284px;
  /* right: 33px; */
  left: inherit;
  padding: 8px 13px;
  top: 65px !important;
  border-radius: 0 0 6px 6px;
}

.login-content .hero-button .btn {
  font-size: 14px;
  padding: 13px 17px;
}


.dropdown-content.tabs-auto-fit {
  width: 250px;
  /* left: 40.1%; */
  padding: 10px 9px;
  top: 62px !important;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
}

.dropdown-content.tabs-auto-fit a {
  padding: 5px 13px !important;
  float: left;
  color: rgba(71, 71, 71, 1);
  width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-wrap: break-word;
}


.dropdown-content.tabs-auto-fit.blogs-menu {
  width: 195px;
  /* left: 49.8%; */
  padding: 10px 9px;

}


.dropdown-content.tabs-auto-fit.country-menu {
  width: 229px;
  /* left: 58.5%; */
  padding: 10px 9px;

}

.search-container.open.active .search-btn {
  background: #eff3f6;
}

.dropdown-content.tabs-auto-fit.exam-menu {
  width: 176px;
  /* left: 70.6%; */
  padding: 10px 9px;

}

.breadcrumb ol {
  list-style: none;
  display: flex;
}


.breadcrumb ol {
  position: relative;
}

.breadcrumb ol li a {
  color: #6c757d;
}


.breadcrumb ol li {
  position: relative;
  padding: 0 15px;
  color: #6c757d;
}


.breadcrumb ol li:first-child {
  padding-left: 0px;
}



.breadcrumb ol li+li::before {
  position: absolute;
  content: "/";
  color: #6c757d;
  left: 0;
}

/** Custom nav bar css **/

/** hero section **/

.stat-grid-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.hero-section {
  background: url("../../static/images_new/careers/career-hero-banner.svg");
  background-repeat: no-repeat;
  background-position: 100% 72%;
  min-height: 679px;
}

.highlighter {
  background: rgb(255, 233, 193);
  padding: 4px 13px;
  border-radius: 50px;
  height: 34px !important;
  float: left;
}

.heading-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 78px;
  color: #111111;
  clear: both;
  text-transform: capitalize;
}

.heading-title p {
  color: #111;
  font-size: 35px;
  font-weight: 700;
  line-height: 36px;
}

.text-yellow {
  color: rgba(255, 165, 4, 1)
}

.text-gray {
  color: rgba(71, 71, 71, 1);
}

.custom-button {
  padding: 13px 26px;
  font-weight: 600;
  position: relative;
  overflow: hidden;

}



.purple-button:hover {
  background: #5249DF;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.blue-button:hover {
  background: #50B9F9;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}


.purple-button {
  background: #3F37C9;
  color: #fff;
}

.bg-light-pruple {
  background: #EFECFF;
}

.blue-button {
  background: #25A4F2;
  color: #fff;
}

.stat-box {
  border-radius: 10px;
}


.top--10 {
  top: -10px;
}

.text-purple {
  color: #3F37C9;
}

.stat-icon {
  background: #DBDAFF;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-purple {
  background: linear-gradient(262.1deg, #3F37C9 0.79%, #1F1B63 80.85%);
  border-radius: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.grid-box img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  transition: all .4s ease;
}



.grid-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all .4s ease;

}


.grid-box:hover img {
  transform: scale(1.2);
}




.grid-box .text-in::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, #060606 100%);
  height: 100%;
  width: 100%;
  bottom: 0px;
  left: 0px;
  z-index: 55;
}

.text-explore {
  position: relative;
  z-index: 333;
}


.text-in {
  position: absolute;
  z-index: 7777;
  top: 0px;
  padding: 26px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}


.modal-backdrop.fade.show {
  z-index: 8888 !important;
}

.backthrough {
  z-index: 9999;
}

.backthrough .btn-close {
  top: -1rem !important;
  right: -18px !important;
  z-index: 1055;
  background: #fff;
  opacity: 1;
  border-radius: 50px;
  font-size: 26px;
}


.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.backthrough .btn-close {
  top: 1rem;
  right: 1rem;
  z-index: 1055;
}

.text-in span {
  background: rgba(255, 233, 193, 1);
  display: flex;
  justify-content: center;
  width: 131px;
  border-radius: 20px;
  color: rgba(50, 50, 50, 1);
  font-weight: 400;
}

.text-explore p {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}


.career-tracks {
  background: radial-gradient(235.3% 235.3% at 50% 0%, rgba(255, 233, 193, 0.2) 19.49%, rgba(209, 208, 254, 0.4) 35%, rgba(248, 208, 254, 0.8) 60%);
}


.tag-list li {
  padding: 10px 16px;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #c4c4c4;
  transition: 300ms;
  cursor: pointer;
  width: 230px;
  display: flex;
  flex-direction: row;
  box-shadow: 0px 4px 8px 0px rgba(68, 68, 68, 0.1);

}



.scroller__inner {
  display: flex;
  padding-block: 1rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}



.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 70s) var(--_animation-direction, forwards) linear infinite;
  animation-delay: 1s;
  margin-bottom: 0px;
}

.scroller[data-direction='left'] {
  --_animation-direction: forwards;
}

.scroller[data-direction='right'] {
  --_animation-direction: reverse;
}

.scroller[data-direction='slow'] {
  --_animation-duration: 5s;
}

.scroller[data-speed='fast'] {
  --_animation-duration: 10s;
}

.c-m-title {
  margin-left: 19px;
}

.c-m-title p {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-inline-box;
}

.career-t-box {
  display: flex;
  align-items: center;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}



.scroller[data-animated="true"] .scroller__inner:has(img:hover, img:active, img:focus) {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}



.scroller[data-animated="true"] .scroller__inner:has(li:hover, li:active, li:focus) {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.tag-list li:hover,
.tag-list li:focus,
.tag-list li:active {
  transform: scale(1.1);
}





/*Video modal*/
.videoModal .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.videoModal .modal-body {
  position: relative;
  padding: 0px;
}

.videoModal .close {
  position: absolute;
  right: -30px;
  top: 0px;
  z-index: 999;
  font-size: 32px;
  text-shadow: -1px 1px 1px #fff;
  color: #ffffff;
  font-weight: 300;
  opacity: 1;
  outline: 0 !important;
}

.video-box {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}

.thumbnailCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 666;
}

.video-box .videoPlayer {
  width: 100%;
}


.grid-video {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}


.video-box .text-in {
  margin: 0px !important;
  padding: 10px;
  width: 100%;
  opacity: 1;
}



.video-box .text-explore {
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  position: relative;
  z-index: 10001;
}


.video-box .text-explore p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-box .video-play {
  position: relative;
  z-index: 10000;
  opacity: 1;
}

.video-box .video-play img {
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


.video-box::after {
  position: absolute;
  content: "";
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.062044886313900593) 0%, rgba(6, 6, 6, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.062044886313900593) 0%, rgba(6, 6, 6, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.062044886313900593) 0%, rgba(6, 6, 6, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#060606", GradientType=1);
  height: 100%;
  width: 100%;
  bottom: 0px;
  z-index: 2222;
}


.video-play {
  display: flex;
  justify-content: center;
  margin-top: 3px;
  position: relative;
  z-index: 9999;
}


.blog-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: 200ms;
  max-height: 244px;
  transition: all .3s ease;
}


.blog-img-d {
  height: 209px;
}


.blog-box .blog-img-d img {
  transition: all .3s ease;

}


.blog-box:hover .blog-img-d img {
  transform: scale(1.2);
}




.blog-box:hover {
  box-shadow: 0px 4px 8px 0px rgba(68, 68, 68, 0.1);
}

.blog-box img {
  width: 100%;
  object-fit: cover;
  height: 220px;
}

.blog-info {
  position: absolute;
  top: 8px;
  width: 255px;
  /* background: rgba(255, 255, 255, 0.3); */
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
  height: 192px;
  left: 7px;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  bottom: 0px;
}


.blog-tags {
  background: rgb(255, 233, 193);
  float: left;
  width: 157px;
  text-align: center;
  border-radius: 26px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
  transition: all 0.5s;
}

#staticDemo {
  z-index: 9999 !important;
}



.custom-faq .nav-link {
  border: 1px solid rgba(63, 55, 201, 1);
  color: rgba(63, 55, 201, 1);
  transition: all 0.5s;
}

.custom-faq .nav-link.active,
.custom-faq .nav-link:hover {
  border: 1px solid rgba(63, 55, 201, 1);
  background: rgba(63, 55, 201, 1);
  color: #fff;
}


.custom-faq .accordion-item {
  margin-bottom: 13px;
  border: 1px solid #C4C4C4 !important;
  border-radius: 10px !important;
  overflow: hidden;
  background: none;
}

.custom-faq .accordion-item .accordion-header button {
  background: no-repeat;
}

.custom-faq .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  background-color: #F9F9F9;
  ;

}


.custom-faq .accordion-button:not(.collapsed) {
  color: #3F37C9;
  font-weight: 600;
  background: none !important;
  box-shadow: none;
}

.custom-faq .accordion-collapse.collapse.show {
  border: 0px !important;
  background: #fff;
  font-weight: 400;
}

.footer-area {
  background: radial-gradient(235.3% 235.3% at 50% 0%, rgba(255, 233, 193, 0.3) 19.49%, rgba(209, 208, 254, 0.4) 27.79%, rgba(248, 208, 254, 0.8) 47.75%);
}

.tp-footer-text {
  list-style: none;
}


.ft-title {
  font-weight: 600;
  margin-bottom: 14px;
  color: #494949;
}

.footer-disclaimer {
  background: #ffffffd1;
  border-radius: 10px;
  padding: 3px 19px;
  margin-top: 18px;
}


.tp-footer-text li a {
  font-weight: normal;
  color: #494949;
  margin-bottom: 9px;
  float: left;
}


.tp-footer-text li a:hover {
  color: #3F37C9;
}

.social-icon ul {
  list-style: none;
  padding-left: 0px;
}

.social-icon li a {
  float: left;
  width: 40px;
  margin-left: 5px;
  height: 40px;
  position: relative;
}

.social-icon li a::before {
  position: absolute;
  content: '';
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}



.social-icon li a.facebook-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='31' height='30' fill='none' viewBox='0 0 31 30'%3e%3cpath fill='gray' fill-rule='evenodd' d='M6.805 0h16.527c3.744 0 6.805 3.063 6.805 6.805v16.389c0 3.743-3.063 6.804-6.805 6.804h-6.437v-10.41h4.076l.846-4.605h-4.922v-1.63c0-2.434.955-3.37 3.425-3.37.767 0 1.384.019 1.74.056V5.864c-.674-.187-2.321-.373-3.275-.373-5.035 0-7.356 2.377-7.356 7.507v1.983H8.322v4.606h3.107v10.41H6.805C3.06 29.997 0 26.934 0 23.192V6.805C0 3.063 3.063 0 6.805 0Z' clip-rule='evenodd'/%3e%3c/svg%3e");
}



.social-icon li a.twitter-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='34' height='30' fill='none' viewBox='0 0 34 30'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='gray' d='M26.139 0h5.088L20.11 12.708 33.19 30H22.948l-8.022-10.488L5.748 30H.655l11.892-13.592L0 0h10.501l7.251 9.586L26.14 0Zm-1.787 26.954h2.82L8.97 2.886H5.943l18.41 24.068Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h33.19v30H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}


.social-icon li a.insta-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='gray' d='M10 15.01a5 5 0 1 1 10-.018 5 5 0 0 1-10 .017Zm-2.702.005a7.702 7.702 0 1 0 15.404-.031 7.702 7.702 0 0 0-15.404.03Zm13.893-8.033a1.8 1.8 0 1 0 3.6-.008 1.8 1.8 0 0 0-3.6.008ZM8.963 27.22c-1.463-.063-2.257-.306-2.786-.51a4.681 4.681 0 0 1-1.727-1.119 4.662 4.662 0 0 1-1.125-1.722c-.206-.53-.453-1.323-.522-2.785-.074-1.581-.091-2.055-.099-6.06-.007-4.005.007-4.48.076-6.062.063-1.461.307-2.256.51-2.785.272-.702.596-1.2 1.12-1.727a4.647 4.647 0 0 1 1.722-1.125c.529-.207 1.322-.452 2.784-.522 1.582-.075 2.056-.09 6.06-.098 4.005-.008 4.48.006 6.062.075 1.461.064 2.256.306 2.785.51a4.643 4.643 0 0 1 1.727 1.12 4.646 4.646 0 0 1 1.125 1.723c.207.527.452 1.321.521 2.783.076 1.582.093 2.056.1 6.06.008 4.005-.007 4.48-.076 6.061-.064 1.463-.306 2.257-.51 2.787a4.66 4.66 0 0 1-1.12 1.727 4.662 4.662 0 0 1-1.723 1.125c-.527.206-1.322.452-2.783.521-1.581.075-2.055.092-6.06.099-4.005.008-4.479-.007-6.061-.076ZM8.788.104c-1.596.075-2.686.33-3.639.704a7.34 7.34 0 0 0-2.653 1.735A7.35 7.35 0 0 0 .77 5.203C.4 6.158.15 7.248.08 8.845c-.07 1.6-.086 2.11-.078 6.184.008 4.072.026 4.584.102 6.184.076 1.596.33 2.685.704 3.638.385.986.9 1.822 1.735 2.654a7.356 7.356 0 0 0 2.66 1.725c.955.369 2.046.62 3.642.69 1.6.07 2.11.086 6.183.078 4.074-.008 4.585-.026 6.185-.101 1.596-.077 2.685-.332 3.639-.705a7.35 7.35 0 0 0 2.653-1.735 7.354 7.354 0 0 0 1.724-2.66c.37-.954.621-2.045.69-3.64.07-1.602.087-2.113.08-6.186-.009-4.073-.027-4.583-.103-6.183-.076-1.597-.331-2.686-.704-3.64a7.356 7.356 0 0 0-1.735-2.653 7.34 7.34 0 0 0-2.66-1.724C23.843.4 22.752.15 21.155.08c-1.6-.071-2.11-.087-6.184-.08-4.073.009-4.583.026-6.183.103Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h30v30H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}


.social-icon li:hover a.facebook-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='31' height='30' fill='none' viewBox='0 0 31 30'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='%233F37C9' fill-rule='evenodd' d='M6.805 0h16.527c3.744 0 6.805 3.063 6.805 6.805v16.389c0 3.743-3.063 6.804-6.805 6.804h-6.437v-10.41h4.076l.846-4.605h-4.922v-1.63c0-2.434.955-3.37 3.425-3.37.767 0 1.384.019 1.74.056V5.864c-.674-.187-2.321-.373-3.275-.373-5.035 0-7.356 2.377-7.356 7.507v1.983H8.322v4.606h3.107v10.41H6.805C3.06 29.997 0 26.934 0 23.192V6.805C0 3.063 3.063 0 6.805 0Z' clip-rule='evenodd'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h30.139v30H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}


.social-icon li:hover a.twitter-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='34' height='30' fill='none' viewBox='0 0 34 30'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='%233F37C9' d='M26.139 0h5.088L20.11 12.708 33.19 30H22.948l-8.022-10.488L5.748 30H.655l11.892-13.592L0 0h10.501l7.251 9.586L26.14 0Zm-1.787 26.954h2.82L8.97 2.886H5.943l18.41 24.068Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h33.19v30H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}


.social-icon li:hover a.insta-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='%233F37C9' d='M10 15.01a5 5 0 1 1 10-.018 5 5 0 0 1-10 .017Zm-2.702.005a7.702 7.702 0 1 0 15.404-.031 7.702 7.702 0 0 0-15.404.03Zm13.893-8.033a1.8 1.8 0 1 0 3.6-.008 1.8 1.8 0 0 0-3.6.008ZM8.963 27.22c-1.463-.063-2.257-.306-2.786-.51a4.681 4.681 0 0 1-1.727-1.119 4.662 4.662 0 0 1-1.125-1.722c-.206-.53-.453-1.323-.522-2.785-.074-1.581-.091-2.055-.099-6.06-.007-4.005.007-4.48.076-6.062.063-1.461.307-2.256.51-2.785.272-.702.596-1.2 1.12-1.727a4.647 4.647 0 0 1 1.722-1.125c.529-.207 1.322-.452 2.784-.522 1.582-.075 2.056-.09 6.06-.098 4.005-.008 4.48.006 6.062.075 1.461.064 2.256.306 2.785.51a4.643 4.643 0 0 1 1.727 1.12 4.646 4.646 0 0 1 1.125 1.723c.207.527.452 1.321.521 2.783.076 1.582.093 2.056.1 6.06.008 4.005-.007 4.48-.076 6.061-.064 1.463-.306 2.257-.51 2.787a4.66 4.66 0 0 1-1.12 1.727 4.662 4.662 0 0 1-1.723 1.125c-.527.206-1.322.452-2.783.521-1.581.075-2.055.092-6.06.099-4.005.008-4.479-.007-6.061-.076ZM8.788.104c-1.596.075-2.686.33-3.639.704a7.34 7.34 0 0 0-2.653 1.735A7.35 7.35 0 0 0 .77 5.203C.4 6.158.15 7.248.08 8.845c-.07 1.6-.086 2.11-.078 6.184.008 4.072.026 4.584.102 6.184.076 1.596.33 2.685.704 3.638.385.986.9 1.822 1.735 2.654a7.356 7.356 0 0 0 2.66 1.725c.955.369 2.046.62 3.642.69 1.6.07 2.11.086 6.183.078 4.074-.008 4.585-.026 6.185-.101 1.596-.077 2.685-.332 3.639-.705a7.35 7.35 0 0 0 2.653-1.735 7.354 7.354 0 0 0 1.724-2.66c.37-.954.621-2.045.69-3.64.07-1.602.087-2.113.08-6.186-.009-4.073-.027-4.583-.103-6.183-.076-1.597-.331-2.686-.704-3.64a7.356 7.356 0 0 0-1.735-2.653 7.34 7.34 0 0 0-2.66-1.724C23.843.4 22.752.15 21.155.08c-1.6-.071-2.11-.087-6.184-.08-4.073.009-4.583.026-6.183.103Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h30v30H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.top-list-style ul {
  list-style: none;
  padding-left: 31px;
}

.top-list-style ul li {
  position: relative;
  margin-bottom: 15px;
  font-weight: normal;
  color: #474747;
  font-size: 16px;
}


.top-list-style ul li::before {
  position: absolute;
  content: '';
  background-image: url('../images_new/icons/list-icon.svg');
  left: -30px;
  width: 16px;
  height: 16px;
  top: 5px;

}

.title-two {
  clear: both;
}


.video-modal .modal-dialog {
  max-width: 845px !important;
}

.video-modal button.btn-close {
  position: absolute;
  top: -21px;
  z-index: 999;
  background-color: #fff;
  border-radius: 100px;
  right: -20px;
  padding: 9px;
  opacity: 1;
}

.video-modal iframe#videoFrame {
  height: 474px;
}


.video-modal .modal-content {
  background: no-repeat;
  box-shadow: none;
  border: 0px;
}



/** Testimonial css **/
.testim {
  width: 100%;
  position: relative;
  top: 46%;
  transform: translatey(-50%);
}

.testim .wrap {
  position: relative;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  /* Show the arrows */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #7ca500;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.arrow {
  color: #808080;
  font-size: 36px;
  border: 1px solid #808080;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  float: left;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrow:hover {
  border: 1px solid #3F37C9;
  color: #3F37C9;
  width: 40px;
  height: 40px;
  border-radius: 100px;

}

#left-arrow {
  left: 10px;
}

#right-arrow {
  right: 10px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 100;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0px solid #eee;
  margin: 0 10px;
  cursor: pointer;
  background: #b9b9b9;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #7ca500;
  border-color: #7ca500;
}

.testim .dots .dot.active {
  animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
}

.testim .demo {
  position: absolute;
  min-height: 217px;
  width: 100%;
  top: 0;
  left: 0;
}

.testim .demo>div,
.testim .cont>div {

  position: absolute;
  top: 0;
  left: 0;
  /* padding: 0 0 70px 0; */
  opacity: 0;
  height: 353px;
  overflow: hidden;
}

.test-text {
  display: flex;
  align-items: center;
  height: 100%;
}

/* .test-img {
  margin-left: 43px;
  margin-right: 12px;
 width: 244px;
  height: 147px; 
  border-radius: 100px;
  overflow: hidden;
  border: 5px solid #cecece;
  scale: 1.1;
} */

.test-img {
  margin-left: 13px;
  width: 143px;
  border-radius: 10px;
  height: 270px;
  float: left;
  overflow: hidden;
}


.test-img img {
  width: 100%;
}


.test-test-info {
  width: 544px;
  float: right;
  position: relative;
  top: 11px;
}

.testim .cont .slider,
.testim .demo .slider {
  background: #d2d2d2;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(198, 198, 198, 0.27);
  z-index: 0;
}


.quote-text {
  position: relative;
  padding: 33px 0;
}

.quote-text::after {
  position: absolute;
  content: "";
  top: 0px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='20' fill='none' viewBox='0 0 27 20'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='%233F37C9' fill-rule='evenodd' d='M11.204 1.79C6.922 2.978 4.135 5.462 3.442 9.785c-.188 1.175.075.287.873-.31 2.603-1.948 7.722-1.258 8.432 3.192 1.43 7.878-8.42 9.242-11.336 4.89A8.01 8.01 0 0 1 .12 14.07C-.58 8.43 2.31 3.41 7.386 1.05A15.542 15.542 0 0 1 10.379.023c.533-.108.92.182 1.1.673.15.42.202.882-.275 1.095Zm14.112 0c-4.282 1.188-7.07 3.672-7.762 7.995-.188 1.175.075.287.873-.31 2.603-1.948 7.722-1.258 8.431 3.192 1.43 7.878-8.42 9.242-11.335 4.89a8.01 8.01 0 0 1-1.29-3.487c-.702-5.639 2.188-10.66 7.264-13.02A15.486 15.486 0 0 1 24.491.022c.533-.108.92.182 1.099.673.151.42.203.882-.274 1.095Z' clip-rule='evenodd'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h26.982v20H0z' transform='rotate(180 13.5 10)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  left: 20px;
  bottom: 0px;
  width: 26.982160568237305px;
  height: 20px;
}


.quote-text::before {
  position: absolute;
  content: "";
  bottom: 0px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='20' fill='none' viewBox='0 0 27 20'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='%233F37C9' fill-rule='evenodd' d='M15.796 18.21c4.282-1.188 7.069-3.672 7.762-7.995.188-1.175-.075-.287-.873.31-2.603 1.948-7.722 1.258-8.432-3.192-1.43-7.878 8.42-9.242 11.336-4.89a8.01 8.01 0 0 1 1.29 3.488c.702 5.638-2.188 10.66-7.264 13.018-.94.437-1.929.778-2.994 1.03-.533.107-.92-.183-1.1-.674-.15-.42-.202-.882.275-1.095Zm-14.112 0c4.282-1.188 7.07-3.672 7.762-7.995.188-1.175-.075-.287-.873.31C5.97 12.472.851 11.782.142 7.332c-1.43-7.878 8.42-9.242 11.335-4.89a8.01 8.01 0 0 1 1.29 3.488c.702 5.638-2.188 10.66-7.264 13.018a15.49 15.49 0 0 1-2.994 1.03c-.533.107-.92-.183-1.099-.674-.151-.42-.203-.882.274-1.095Z' clip-rule='evenodd'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h26.982v20H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  right: 20px;
  bottom: 0px;
  width: 26.982160568237305px;
  height: 20px;
}


.testim .demo .slider {
  background: #3F37C9;
  height: 100%;
  width: 100%;
  top: 25px;
  opacity: 1;
  transform: scale(0.92);
  z-index: -4;
}

.testim .demo .slider:nth-child(2) {
  transform: scale(0.85);
  background: #736dee;
  top: 10px;
  z-index: -5;
}

.testim .demo .slider.active:nth-child(1) {
  /* 	animation: testim-content-demo-1 1s ease forwards; */
}

.testim .demo .slider.active:nth-child(2) {
  /* 		animation: testim-content-demo-2 0.6s ease forwards; */
}

.testim .cont>.inactive {
  opacity: 0.1;
  z-index: -1;
  top: -3px;
  animation: testim-content-out 0.42s forwards;
}

.testim .cont>.active {
  position: relative;
  opacity: 0.4;
  z-index: 3;
  animation: testim-content-in 0.8s forwards;
  width: 100%;
}

.testim .cont .slider .img {
  position: relative;
  width: 60px;
  height: 55px;
  top: 10px;
  left: 20px;
}

.testim .cont .slider .img img {
  display: block;
  width: 60px;
  height: 45px;
  margin: 10px;
}

.testim .cont .slider p,
.testim .cont .slider .date,
.testim .cont .slider .name {
  /* 	background: transparent; */

  text-align: left;
  width: 91%;
  margin: auto;
  position: relative;

}

.testim .cont .slider p {
  font-size: 15px;

  top: -10px;
  transation: all 0.36s ease;
}

.testim .cont .slider .name {
  font-weight: bold;
  padding: 1px 0 3px 0;
}

.testim .cont .slider .date {
  left: -10px;
}

/* .testim .cont .slider .img, */
.testim .cont .slider.active .content {
  animation: testim-content-in-p .71s ease forwards;
}


@-webkit-keyframes testim-content-in-p {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #b9b9b9;
  }

  35% {
    box-shadow: 0px 0px 5px 1px #b9b9b9;
  }

  70% {
    box-shadow: 0px 0px 5px 1px #b9b9b9;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #b9b9b9;
  }
}

@keyframes testim-content-in {
  0% {
    background: #d2d2d2;
    opacity: 0.1;
    transform: translateY(-10%) scale(0.95);
  }

  70% {
    background: #fff;
  }

  100% {
    background: #fff;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes testim-content-out {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  20% {
    transform: scale(1.01) translateY(20px);
    opacity: 0.6;
  }

  40% {
    transform: scale(1.05) translateY(30px);
    opacity: 0.4;
  }

  60% {
    transform: scale(1.09) translateY(40px);
    opacity: 0.15;
  }

  80% {
    transform: scale(1.11) translateY(50px);
    opacity: 0.05;
  }

  100% {
    transform: scale(1.15) translateY(60px);
    opacity: 0;
  }
}

@keyframes testim-content-demo-1 {
  0% {
    top: 32px;
  }

  100% {
    top: 25px;
  }
}

@keyframes testim-content-demo-2 {
  0% {
    top: 13px;
  }

  100% {
    top: 10px;
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .cont div p {
    line-height: 25px;
    
  }

  #google_translate_element {
    text-align: center;
  }
}

/** Testimonial css **/



/** Card sTacking **/
:root {

  --card-margin: 3vw;
  --card-top-offset: 0;
  --numcards: 4;
  --outline-width: 0px;
}



#cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--card-height));
  gap: var(--card-margin);
  /* padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: var(--card-margin); */
}

#card-1 {
  --index: 1;
}

#card-2 {
  --index: 2;
}

#card-3 {
  --index: 3;
}

#card-4 {
  --index: 4;
}

#card-5 {
  --index: 5;
}

#card-6 {
  --index: 6;
}

#card-7 {
  --index: 7;
}

.cardui {
  position: sticky;
  top: 151px;
  padding-top: calc(var(--index) * var(--card-top-offset));
}

.card-content {
  box-shadow: 0 5px 15px rgba(198, 198, 198, 0.27);
  color: #131212;
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  grid-template-areas: "text img";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  padding: 1.4em;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;
  height: 422px;

}

.india-bg {
  background: url('../images_new/general/india-univerversity.png'), radial-gradient(235.3% 235.3% at 50% 0%, rgba(255, 233, 193, 0.3) 19.49%, rgba(209, 208, 254, 0.4) 27.79%, rgba(248, 208, 254, 0.8) 47.75%);

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;

}


.australia-bg {
  background: url('../images_new/general/australia-bg-img.png'), #cae8ff;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;

}


.canada-bg {
  background: url('../images_new/general/canada-bg-img.png'), #ffd9c9;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;

}


.usa-bg {
  background: url('../images_new/general/usa-bg-img.png'), #deefff;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;

}


.nz-bg {
  background: url('../images_new/general/nz-bg-image.png'), #f0dfff;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;

}


.uk-bg {
  background: url('../images_new/general/uk-bg-image.png'), #fff4f0;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0;

}

.uicard-content .highlighter {
  background: #fff;
  box-shadow: 0px 1px 2px #0000003d;
}



.smooth-scrolling {
  background: #f6f6f6;
}


.card-content>div {
  grid-area: text;
  width: 95%;
  max-width: 800px;
  place-self: center;
  text-align: left;
  display: grid;
  gap: 1em;
  place-items: start;
}

.card-content>figure {
  grid-area: img;
  overflow: hidden;
}

.card-content>figure>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .4em;
}



/* Animation */
@supports (animation-timeline: works) {

  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets:
      selector(#cards) start 1,
      selector(#cards) start 0;
    start: selector(#cards) start 1;
    end: selector(#cards) start 0;
    time-range: 4s;
  }

  .cardui {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(var(--numcards) - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .card__content {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform:
        scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
    }
  }
}


/** Card sTacking **/



/** login screen **/


.login-home {
  background-image: url('/static/topteenfrontend/assets/images/login-bg-image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.login-center {
  background: radial-gradient(214.76% 214.76% at 25.23% -72.29%, #C1EEFA 0%, #FEFEFE 57.45%);
  border-radius: 12px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);

}

.custom-input {
  background: #EFF3F6;
  padding: 12px 8px;
}

.icon-input {
  position: relative;
}


.icon-input .custom-input {
  padding-left: 36px;
  position: relative;
}


.custom-input.form-control:focus {
  color: #212529;
  background-color: #fff;
  outline: 0;
  box-shadow: none;
  border: 1px solid #3F37C9;
}

.email-icon::after {
  position: absolute;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' fill='none' viewBox='0 0 16 11'%3e%3cg clip-path='url(%23a)'%3e%3cpath fill='gray' fill-rule='evenodd' d='m7.95 8.593 3.154-3.154 4.797 4.796H0L4.796 5.44 7.95 8.593ZM.182 0 7.95 7.767 15.718 0H.182ZM0 9.072l4.118-4.118L0 .836v8.236Zm16 .394-4.512-4.512L16 .442v9.024Z' clip-rule='evenodd'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h16v10.235H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  width: 16px;
  height: 10.2352876663208px;
  content: "";
  left: 12px;
  top: 19px;

}

.social-button {
  display: flex;
  gap: 10px;
}

.social-button button {
  background: #F6F5FF;
  font-size: 11px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 500;
  justify-content: center;
}

.social-button button:hover {
  background: #F6F5FF;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #5249DF;
}



.divider-section::after {
  position: absolute;
  content: "";
  width: 100%;
  background: #ddd0d0;
  height: 1px;
  left: 0;
  top: 15px;
}

.tor {
  background: #fff;
  position: relative;
  z-index: 88;
  width: 40px;
  margin: 0px auto;
  padding: 4px 5px;
}


.icon-input.password-icon input {
  padding-left: 11px;
  padding-right: 37px;
}


.toggle-password {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #616161;
  font-size: 20px;
  cursor: pointer;
}

.back-button-section .back-button {
  background: #f4fdff;
  border-radius: 100px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}


.back-button-section .back-button:hover {
  background: #eeecfd;
}

/** login screen **/


/** pyschometric test page **/

.c-tracks {
  position: relative;
}

.c-tracks::after {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(83deg, rgba(255, 255, 255, 0.062044886313900593) 0%, rgba(255, 255, 255, 1) 61%);
  background: -webkit-linear-gradient(83deg, rgba(255, 255, 255, 0.062044886313900593) 0%, rgba(255, 255, 255, 1) 61%);
  background: linear-gradient(83deg, rgba(255, 255, 255, 0.062044886313900593) 0%, rgba(255, 255, 255, 1) 61%);
  position: absolute;
  content: "";
  width: 250px;
  height: 150px;
  top: 0px;
  right: 0px;
}


.c-tracks::before {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(266deg, rgba(255, 255, 255, 0.062044886313900593) 0%, rgba(255, 255, 255, 1) 61%);
  background: -webkit-linear-gradient(266deg, rgba(255, 255, 255, 0.062044886313900593) 0%, rgba(255, 255, 255, 1) 61%);
  background: linear-gradient(266deg, rgba(255, 255, 255, 0.062044886313900593) 0%, rgba(255, 255, 255, 1) 61%);
  position: absolute;
  content: "";
  width: 250px;
  height: 150px;
  top: 0px;
  left: 0px;
  z-index: 11;
}

.phy-item-box {
  background: #EFECFF;
  padding: 20px;
  height: 214px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.who-parent .phy-item-box {
  height: 151px !important;
}


.career-planning-hub-gateway .new-cp-hub-box {
  height: 464px !important;
}

.career-planning-hub-gateway .phy-item-box .learner-icon {
  min-width: 50px !important;
}


.phy-item-box::after {
  background: url('../images/opacity-hat.svg');
  position: absolute;
  width: 117px;
  height: 163px;
  content: "";
  bottom: -22px;
  right: 0px;
  opacity: 0.10;
  background-repeat: no-repeat;
}

.btn-wrap {
  display: flex;
  justify-content: end;
}

.btn-wrap button {
  background: none;
  border: 2px solid #808080;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.btn-wrap button:hover {
  color: #3F37C9;
  border: 2px solid #3F37C9;
}

.btn-wrap:hover button.bx {
  color: #3F37C9;
}

.prev-btn {
  margin-right: 12px !important;
}


@media (max-width:576px) {

  .c-tracks::after {
    background: none;
  }


  .c-tracks::before {
    background: none;

  }

  .phy-item-box {
    height: 267px;
  }

  .career-planning-hub-gateway .new-cp-hub-box {
    height: auto !important;
  }


  .blog-filter-btn {
    white-space: nowrap;
  }
  .mb-grid-gutter {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    overflow-y: scroll;
  }
  

}


/** pyschometric test page **/



/** Career Hub Page **/
.career-carousel .phy-item-box h5 {
  border-radius: 20px;
  padding: 4px 3px;
  text-align: center;
  font-size: 16px;
}


.career-carousel .phy-item-box {
  height: 251px;
}


.no-list {
  position: absolute;
  right: 27px;
  bottom: 15px;
  color: #EFECFF;
  font-size: 66px;
  font-weight: 800;
  filter: drop-shadow(1px 0 0 #3F37C9) drop-shadow(0 1px 0 #3F37C9) drop-shadow(-1px 0 0 #3F37C9) drop-shadow(0 -1px 0 #3F37C9);
}


@media (max-width:576px) {
  .career-carousel .phy-item-box {
    height: 331px;
  }

}

/** Career Hub Page **/

/** About US **/

.grid-p-box {
  background: #F8F8FF;
  border: 1px solid #3F37C9;
  padding: 14px;
  border-radius: 12px;
}


.about-test-carousels .phy-item-box {
  height: 350px;
}


.about-test-carousels .phy-item-box p {
  font-size: 15px;
  line-height: 21px;
}


.about-test-carousels .phy-item-box ul {
  padding-left: 14px;
  font-weight: 600;
  line-height: 23px;
}


.about-test-carousels .phy-item-box ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 10px;
  color: #111;
}

.owl-carousel.owl-theme.who-parent.owl-loaded.owl-drag {
  display: flex;
  justify-content: center;
}

.phy-item-box h5 {
  color: rgba(63, 55, 201, 1);
}

.why-tteen {
  background: radial-gradient(235.3% 235.3% at 50% 0%, rgba(255, 233, 193, 0.2) 19.49%, rgba(209, 208, 254, 0.4) 35%, rgba(248, 208, 254, 0.8) 60%);


}


/** About US **/

/** FAQs **/

.faq-hero-section .heading-title {
  line-height: 49px;

}

/** FAQs **/

/** Blogs **/
.blog-cta {
  background: linear-gradient(262.1deg, #3F37C9 0.79%, #1F1B63 80.85%);
}

.blog-tags-new .badge.bg-primary {
  background: rgb(255, 233, 193) !important;
  color: #665910;
}

.blog-tags-new .badge.bg-light {
  background: #f4e6ff !important;
  color: #7e22ce !important;
  text-transform: capitalize;
}


.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#subscribeModal {
  z-index: 9999999 !important;
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-title a {
  color: #000;
}

.blog-title a:hover {
  color: rgba(63, 55, 201, 1);
}

.blog-content {
  padding: 20px;
  background-color: #fff;

}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-student {
  background-color: #e0f2fe;
  color: #0369a1;
  position: absolute;
  top: 7px;
  right: 8px;
  z-index: 9;
}

.category-parent {
  background-color: #fef3c7;
  color: #b45309;
  position: absolute;
  top: 7px;
  right: 8px;
  z-index: 9;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

.blog-author {
  display: flex;
  align-items: center;
}

.blog-author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}

.blog-date {
  display: flex;
  align-items: center;
}

.blog-date i {
  margin-right: 5px;
}

.blog-filter-btn {
  border: 1px solid #e2e8f0;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  margin-right: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background-color: #7e22ce;
  color: white;
  border-color: #7e22ce;
}

.blog-search {
  position: relative;
  margin-bottom: 30px;
}

.blog-search input {
  width: 100%;
  padding: 12px 20px;
  padding-right: 50px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

.blog-search button {
  position: absolute;
  right: 10px;
  top: 7px;
  background-color: #7e22ce;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.blog-pagination .page-item {
  margin: 0 5px;
}

.blog-pagination .page-link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover,
.blog-pagination .active .page-link {
  background-color: #7e22ce;
  color: white;
  border-color: #7e22ce;
}

.blog-featured {
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #7e22ce;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.section-title-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #7e22ce;
  border-radius: 2px;
}

.section-description {
  color: #64748b;
  max-width: 600px;
}

.featured-section .featured-blog-content {
  position: relative;
  background: no-repeat;
}



/* Additional styles for student blog page */
.featured-blog {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-blog-image {
  height: 400px;
  position: relative;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
}

.featured-blog-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-blog-excerpt {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.featured-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.blog-list {
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 30px;
  scrollbar-width: thin;
  scrollbar-color: #7e22ce #f1f1f1;
}

.blog-list::-webkit-scrollbar {
  height: 6px;
}

.blog-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.blog-list::-webkit-scrollbar-thumb {
  background: #7e22ce;
  border-radius: 10px;
}

.blog-list-item {
  min-width: 280px;
  margin-right: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-list-item:hover {
  transform: translateY(-5px);
}

.blog-list-image {
  height: 160px;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-content {
  padding: 15px;
  background-color: white;
}

.blog-list-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-sidebar {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  position: sticky;
  top: 100px;
}


.career-sidebar {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #7e22ce;
}

.popular-post {
  /* display: flex; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.popular-post-image {
  width: 12 0px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  float: left;
}

.popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-post-content span {
  font-size: 12px;
  color: #64748b;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.tag {
  background-color: #e2e8f0;
  color: #475569;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: #7e22ce;
  color: white;
}

.related-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  margin-top: 50px;
}

.section-heading {
  position: relative;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #7e22ce;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-career {
  background-color: #e0f2fe;
  color: #0369a1;
}

.category-college {
  background-color: #fef3c7;
  color: #b45309;
}

.category-skills {
  background-color: #dcfce7;
  color: #166534;
}

.category-abroad {
  background-color: #f3e8ff;
  color: #7e22ce;
}

.blog-author-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.blog-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-info {
  line-height: 1.2;
}

.blog-author-name {
  font-weight: 600;
  font-size: 14px;
}

.blog-publish-date {
  font-size: 12px;
  color: #64748b;
}

.parent-blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.parent-blog-card:hover {
  transform: translateY(-5px);
}

.parent-blog-image {
  height: 180px;
}

.parent-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parent-blog-content {
  padding: 20px;
  background-color: white;
}

.parent-blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.parent-blog-excerpt {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-block;
  color: #7e22ce;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #5b21b6;
}

.read-more i {
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}


.vertical-blog-card {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.vertical-blog-image {
  flex: 0 0 35%;
  position: relative;
}

.vertical-blog-content {
  flex: 0 0 65%;
  padding-left: 1.5rem;
}

.vertical-blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.vertical-blog-title {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.vertical-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .vertical-blog-card {
    flex-direction: column;
  }

  .vertical-blog-image {
    flex: 0 0 100%;
    margin-bottom: 1rem;
  }

  .vertical-blog-content {
    flex: 0 0 100%;
    padding-left: 0;
  }
}



/* Custom styles for single blog page */
.blog-header {
  margin-bottom: 2rem;
}

.blog-category-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  background-color: #5046e5;
}

.blog-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  color: #6b7280;
  font-size: 14px;
}

.blog-meta-item i {
  margin-right: 6px;
  font-size: 18px;
}

.blog-author-info {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.blog-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.blog-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.blog-author-title {
  color: #6b7280;
  font-size: 14px;
}

.blog-summary-box {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #5046e5;
}

.blog-summary-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-summary-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.blog-share {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.blog-share-title {
  margin-right: 1rem;
  font-weight: 600;
}

.blog-share-icons {
  display: flex;
}

.blog-share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  transition: all 0.2s;
  color: #4b5563;
}

.blog-share-icon:hover {
  background-color: #5046e5;
  color: white;
}

.blog-content {
  font-size: 18px;
  line-height: 1.8;
  color: #1f2937;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 28px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-content h3 {
  font-size: 24px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.table-of-contents {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.table-of-contents-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.table-of-contents-title i {
  margin-right: 8px;
}

.table-of-contents ul {
  list-style-type: none;
  padding-left: 0;
}

.table-of-contents li {
  margin-bottom: 0.75rem;
}

.table-of-contents a {
  color: #5046e5;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.table-of-contents a i {
  margin-right: 8px;
  font-size: 14px;
}

.table-of-contents a:hover {
  text-decoration: underline;
}

.blog-tags {
  margin-top: 0rem;
  margin-bottom: 2rem;
}

.blog-tag {
  display: inline-block;
  background-color: #f3f4f6;
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

.blog-tag:hover {
  background-color: #e5e7eb;
}

.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
}

.blog-navigation-item {
  max-width: 48%;
}

.blog-navigation-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.blog-navigation-label i {
  margin-right: 6px;
}

.blog-navigation-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.blog-navigation-title:hover {
  color: #5046e5;
}

@media (max-width: 767px) {
  .blog-title {
    font-size: 1.75rem;
  }

  .blog-meta-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-meta-item {
    margin-bottom: 0.5rem;
  }

  .blog-navigation {
    flex-direction: column;
  }

  .blog-navigation-item {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}




/** Blogs **/

/** single track **/

.cat-title {
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 37px;
}

.skill-box {
  background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
  border-radius: 20px;
  padding: 21px 28px;
  display: flex;
  flex-direction: column;
}

.skill-list {
  width: 100%;
  padding-left: 0px;
}


.skill-list li {
  float: left;
  background: #fff;
  list-style: none;
  margin: 16px 15px 0px 0;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  color: #5046e5;
}

.cat-main-content .table tr th:first-child {
  background: #5046e5;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.cat-main-content .table tr th {
  background: #f4f5ff;
  border-bottom: 0;

}

.cat-main-content tbody,
.cat-main-content td,
.cat-main-content th,
.cat-main-content thead,
.cat-main-content tr {
  border-color: inherit;
  border-style: solid;
  border-width: 1px;
  font-weight: 400;
  font-size: 16px;

}

.cat-main-content ul {
  padding-left: 14px;
  font-weight: 400;
}


.cat-main-content h4 {
  font-size: 26px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 24px;
  margin-top: 24px;
}


.cat-main-content h4::after {
  background: purple;
  content: "";
  width: 66px;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-radius: 10px;
}


.recut-box {
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  display: flex;
  flex-direction: column;
  padding: 14px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}


.recut-box .skill-list li {
  float: left;
  background: #fff;
  list-style: none;
  margin: 16px 15px 0px 0;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  color: #052979;
}


.recut-box,
.recut {
  min-height: 288px;
}


.rl-profession .section-heading::after {
  bottom: -16px;
  left: 47%;
}



..rl-profession .section-heading {
  font-size: 38px;
}


.professions .blog-card {
  margin: 16px 0;
}


.professions .blog-content h3 {
  font-size: 20px;
}

.car-rel-video.video-vertical .video-box {
  flex: 100%;
}

.car-rel-video.video-vertical.flex-column {
  margin: 0px;
  border: 0px;
  padding: 0px;
}


/** single track **/


/* Custom styles for video resources */

.video-vertical {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.video-vertical .blog-meta.justify-content-start {
  margin-bottom: 5px;
}

.video-vertical .video-box {
  flex: 0 0 35%;
  position: relative;
}

.video-vertical .video-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: row;
}

.video-vertical .video-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.video-vertical .video-thumb-auto {
  width: 280px;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-vertical .video-thumb-auto video {
  display: none;
}


.video-vertical a.video-link {
  width: 100%;
}

.video-vertical .thumbnailCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-vertical .text-in {
  position: relative;
  padding: 1rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-vertical .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(80, 70, 229, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3333;
  transition: all 0.3s ease;
}

.video-vertical .video-play img {
  width: 20px;
  height: 20px;
}

.video-vertical .video-link:hover .video-play {
  background-color: rgb(80, 70, 229);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-vertical .text-explore {
  padding: 0.5rem 0;
}

.video-vertical .text-explore p {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 22px;
  color: #333;
  line-height: 1.4;
}

.video-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bg-blue {
  background-color: #5046e5;
  border-radius: 4px;
  padding: 4px 10px;
}



/* Category sidebar styles */
.category-list {
  list-style: none;
  padding-left: 0;
}

.category-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-item:hover,
.category-item.active {
  background-color: #f8f9fa;
  padding-left: 20px;
}

.category-item a {
  color: #333;
  text-decoration: none;
  display: block;
  width: 100%;
}

.category-item:hover a,
.category-item.active a {
  color: #5046e5;
}

.category-count {
  background-color: #5046e5;
  color: white;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
}

.filter-section {
  margin-bottom: 2rem;
}

.filter-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #5046e5;
}

/* Pagination styles */
.video-pagination {
  margin-top: 3rem;
}

.page-item.active .page-link {
  background-color: #5046e5;
  border-color: #5046e5;
}

.page-link {
  color: #5046e5;
}

.page-link:hover {
  color: #3a32a8;
}

/* Featured video section */
.featured-video {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-video-thumb {
  position: relative;
  height: 350px;
}

.featured-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-video-content {
  padding: 1.5rem;
  background-color: #fff;
}

.featured-video-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-video-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #5046e5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  z-index: 2;
}

.featured-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(80, 70, 229, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.featured-play-button img {
  width: 30px;
  height: 30px;
}

.featured-video-link:hover .featured-play-button {
  background-color: rgb(80, 70, 229);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video bookmark button */
.video-bookmark {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 6666;
}

.video-bookmark:hover {
  background-color: #fff;
}

.video-bookmark i {
  font-size: 18px;
  color: #5046e5;
}

.video-bookmark.active i {
  color: #ff4757;
}

/* Video metadata */
.video-meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 13px;
}

.video-meta div {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.video-meta i {
  font-size: 16px;
  margin-right: 4px;
}

.video-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.video-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .video-box {
    flex-direction: column;
  }

  .video-thumb-auto {
    width: 100%;
  }
}


/* Single video page specific styles */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-meta-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.video-meta-info .meta-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  color: #666;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.video-meta-info .meta-item i {
  margin-right: 6px;
  font-size: 18px;
  color: #5046e5;
}

.video-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.video-actions {
  display: flex;
  align-items: center;
}

.action-button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  margin-right: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.action-button:hover {
  background-color: #f8f9fa;
  color: #5046e5;
}

.action-button i {
  font-size: 18px;
  margin-right: 6px;
}

.action-button.active {
  color: #5046e5;
}

.action-button.active i.bx-bookmark {
  font-weight: 900;
}

.video-description-box {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.video-description-box h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

.video-description-content {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.video-tag {
  background-color: #eef1ff;
  color: #5046e5;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 14px;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.video-tag:hover {
  background-color: #5046e5;
  color: white;
  text-decoration: none;
}

.related-videos-section {
  margin-top: 3rem;
}

.related-videos-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #5046e5;
}

.related-video-card {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-video-thumb {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  position: relative;
}

.related-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-video-info {
  padding: 1rem;
  flex-grow: 1;
}

.related-video-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-video-meta {
  color: #666;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.related-video-meta span {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.related-video-meta i {
  font-size: 14px;
  margin-right: 4px;
}

.related-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(80, 70, 229, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.related-video-play img {
  width: 16px;
  height: 16px;
}

.career-details-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.career-detail {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.career-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.career-detail-label {
  width: 180px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}

.career-detail-value {
  color: #555;
  flex-grow: 1;
}

.video-sidebar-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.video-sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #5046e5;
}

@media (max-width: 768px) {
  .video-meta-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-meta-info .meta-item {
    margin-bottom: 0.5rem;
  }

  .related-video-card {
    flex-direction: column;
  }

  .related-video-thumb {
    width: 100%;
    height: 180px;
  }

  .career-detail {
    flex-direction: column;
  }

  .career-detail-label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


/** Translater **/

.translate-container #google_translate_element {
  /* border: 1px solid #f6f6f6; */
  padding: 11px 0 0 0;
}

.translate-container .goog-te-gadget-simple {
  border: 1px solid #8c8c8c;
  padding: 5px 11px 5px 31px;
  border-radius: 10px;
  position: relative;
  /* width: 119px; */
  overflow:
    hidden;
  white-space:
    nowrap !important;
  text-overflow: ellipsis !important;
}

.translate-container {
  list-style: none;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
  display: none;
}

.goog-te-gadget-simple img {
  display: none !important;
}


.translate-container .goog-te-gadget-simple::before {

  position: absolute;
  content: '';
  left: 7px;
  width: 24px;
  height: 24px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAADlUlEQVRIS8WVb2iNURzHn+f6s+s/k4wZSq3Zizt/SqIkRTa8sL2YSGS4KHeRJOZ5zmO7tiWXLqbLUCtTXiyRtMkL+ddeTJtoTRQvcBMja+ze3Xsfn3O7dz33cTdScuvpnPP7fc/v+/39zjm/qyr/+Kf+4/jKkAR+vz/ja3d3iaqqqxXTLDAVZTZzk/ENG9v57kzJympyu939gwkdlMAwjEJC1RFw9lBZmqb5ylTVXbqu30uHS0tQaRgCsC43EOA7JKOZ9hNoPvOIGY0+Yxxp8UnogaO6ftJO8gsBwWVgSdBLgMMEWsK8lPlxTYgjMsAxIbzYD1OquyhownSC9Vgw5WD8VpIUAsqyzqEoN6XamKIUsqGD9QdZ96hpzhBCfJSba2pqJoT7+t5gn4h9LmM2uGbwquJwLNM07VGSZICgtrZ2XOjHj5eAs3DuId3zKN3O+qJUeVSIEqsyfJfwbcNWCVYj83Lmp/m6IHUhJizxAwQAdrOuI9jzCl13SdUEuca4AWVlpH7ZSlApxFpFVW9RplZN1xcHAoERH4PBTjBziLEeQTdSCYS4zYYijB4UnUnUuhOCPA53Hml3WAm8Xu/UWCQSlOWs0LSMhKBDjNUIuoAgdwoBat/hnG4Nhu0ztkxSnkLKn+w3BH+PPFz82fjfVwmxiP2tZNBOBvPtJfqOYZQ9yF+uv1CFTHsGcTV/GdC+rQeC8XaCLghyHaa58IgQTxNn8BbbzGQJ7FG4GLJsk/FPo0RBrxALYqrahq0Tgnw7wVWCbcS4H+epOIFhtHDNVlLXJRzyEytBdXX1pEg43M2BhsE75SFDuA+MD1sDh7wlhaDKMDZz5RoS9zgfRTEO8Rwb92CLvwsrwcCjNM3HHOhS8A4em7x1uRCUQnA9hcDn843q7enpwpgDYAeAegi2suEK60bWm6wEqK1nXcYnIDfA7gQbAPtyYmamy+PxhFII5ILHs4q30Mw0RCddMdzpfEFLkO0hTOvIQeVXiZPl6Q+F3hPQSWvIo/kVMG9MtIrllPNBUky6ZicbWhXgb2zaz50ugrSY9TGyiHdY1Gr4DHyPKetD5gelHcxeMGetmaZt1wSoYFNlAtjLOEZmhdqCaDSqDlPVdtYZBOyLZ0FsvvJkB/gtgQRwiGs4tADTbOsG+1z+4UC8nbLcT4cb8i+TmjshKUZlERJd1GCWvI6MrylbG2NLVFFugIsMJuL//ukPVZo/9f0ExEzJKHe7zc0AAAAASUVORK5CYII=');
  background-repeat: no-repeat;
  background-position: center;
  top: 7px;

}

.VIpgJd-ZVi9od-xl07Ob-lTBxed span+img+span {
  display: none;
}


.VIpgJd-ZVi9od-vH1Gmf {
  border: 1px solid #ACACAC !important;
  padding: 11px !important;
}

.VIpgJd-ZVi9od-xl07Ob-OEVmcd {

  box-shadow: none !important;
}

/** Translater **/

/* Career Category Card Styles */
.career-category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.career-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.career-category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.career-category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.77) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 20px;
  z-index: 2;
  transition: height 0.3s ease;
  height: 70%;
}

.career-category-card:hover .career-category-overlay {
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.career-category-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  position: absolute;
  bottom: 20px;
  transition: all 0.3s ease;
}

.career-category-card:hover .career-category-title {
  bottom: 154px;
}

.career-category-description {
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  position: absolute;
  bottom: 60px;
  max-height: 80px;
  overflow: hidden;
}

.career-category-card:hover .career-category-description {
  opacity: 1;
  transform: translateY(0);
}

.career-category-button {
  position: absolute;
  bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.career-category-card:hover .career-category-button {
  opacity: 1;
  transform: translateY(0);
}

/* Pagination Styles */
.career-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.career-pagination .page-item {
  margin: 0 5px;
}

.career-pagination .page-link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  border: 1px solid #ddd !important;
  background-color: white;
  transition: all 0.3s ease;
}

.career-pagination .page-link:hover {
  background-color: #f5f5f5;
}

.career-pagination .page-item.active .page-link {
  background-color: #6c63ff;
  border-color: #6c63ff;
  color: white;
}

.career-pagination .page-item.disabled .page-link {
  color: #ccc;
  pointer-events: none;
}


/* Additional styles for career cards */
.emerging-card .blog-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.emerging-card blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.emerging-card .blog-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.emerging-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emerging-card .career-bookmark-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.emerging-card .career-bookmark-btn i {
  font-size: 18px;
  color: #6c63ff;
}

.emerging-card .career-bookmark-btn.bookmarked i {
  font-weight: 900;
  color: #6c63ff;
}

.emerging-card .salary-range {
  display: flex;
  align-items: center;
  color: #28a745;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.emerging-card .salary-range i {
  margin-right: 4px;
  font-size: 18px;
}

.emerging-card .blog-content {
  padding: 20px;
  background-color: white;
}

.emerging-card .blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.emerging-card .blog-excerpt {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.emerging-card .career-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.emerging-card .career-education,
.career-growth {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.career-education i,
.career-growth i {
  margin-right: 5px;
  font-size: 16px;
}

.career-growth i {
  color: #28a745;
}

.emerging-card .growth-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.emerging-card .growth-tag {
  background-color: #f0f0f0;
  color: #555;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.emerging-card .read-more {
  display: inline-flex;
  align-items: center;
  color: #6c63ff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.emerging-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.emerging-card .read-more:hover i {
  transform: translateX(3px);
}

.emerging-card .blog-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #6c63ff;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  z-index: 2;
  right: inherit;
}




/** skill lab course page **/

.badge.bg-primary.ct-m-badge {
  background: #D4EEF7 !important;
  color: #1788BD !important;
}

.skill-course .grid-box .text-in {
  padding: 21px 14px;
}


.skill-course .text-in span {
  background: #6c63ff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}


.skill-course .text-explore a {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

.proffesion-card .blog-card {
  display: flex;
}


.proffesion-card .blog-content h3 {
  font-size: 18px;
}


.proffesion-card .blog-excerpt {
  font-size: 14px;
}

.proffesion-card .blog-image {
  height: auto;
  overflow: hidden;
  position: relative;
}


.profession-card {
  display: grid;
  grid-template-columns: 34% 62%;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}


.prf-image {
  width: 82px;
  height: 80px;
  overflow: hidden;
  position: relative;
  margin-right: 14px;
  display: flex;
  border-radius: 10px;
}

.prf-image img {
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}

.prf-title.mt-0 {
  font-size: 17px;
  margin-bottom: 3px;
}


.profession-card .blog-excerpt {
  line-height: 19px;
  margin-bottom: 0px;
}


.view-all {
  display: flex;
  justify-content: center;
}

.view-all a {
  background: #3f37c9;
  color: #fff;
  padding: 7px 16px;
  border-radius: 5px;
}

.grid-leading {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 23px;
}


.grid-leading .blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}


.grid-leading .blog-image {
  height: 139px;
}

.grid-leading .blog-content {
  font-size: 18px;
}


.grid-leading .blog-content p {
  margin-bottom: 0;
}

/** skill lab course page **/


/* Search Icon and Search Container Styles */
.menu-item.search-icon {
  position: relative;
}

.search-container {
  display: none;
  position: absolute;
  top: 100%;
  right: 30%;
  width: 679px;
  background-color: #3f37c9;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 12px 19px 5px 19px;
  transition: all 0.3s ease;
}

.search-container.active {
  display: block;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

.search-input:focus {
  border-color: #7b68ee;
  box-shadow: 0 0 0 2px rgba(123, 104, 238, 0.2);
}

.search-btn {
  position: absolute;
  right: 40px;
  background: none;
  border: none;
  color: #7b68ee;
  cursor: pointer;
}

.search-close {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

.search-results {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 10px;
  background-color: #fff;
}

.search-result-item {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s;
  background-color: #fff;
}

.search-result-item:hover {
  background-color: #f9f9f9;
}

.search-result-item h4 {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.search-result-item p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #666;
}


/* Mobile Search Styles */
@media (max-width: 768px) {
  .search-container {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
  }
}

/* Animation for search container */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-container.active {
  animation: fadeIn 0.3s ease;
}


/** Media Queries **/

@media (max-width: 1208px) {
  .heading-title {
    font-size: 38px;
  }

  .custom-button {
    padding: 9px 19px;
  }

  .blog-img-d {
    height: 175px;
  }


  .blog-info {

    height: 161px;
  }

  .blog-info h4 {
    font-size: 20px !important;
  }


}


@media (max-width:980px) {
  .hero-section {
    background: none !important;
    min-height: auto !important;
  }

  .navbar-inner {
    width: 100%;
  }

  .custom-button {
    padding: 8px 14px;
    font-size: 14px;
  }


}




@media (max-width:480px) {


  .header {
    margin-top: 0;
  }

  .tt-header .navbar {
    border-radius: 0;
  }


  .heading-title {
    font-size: 26px;
    line-height: 44px;
  }


  .heading-title p {
    font-size: 22px;
    line-height: 26px;
  }


  .stat-grid-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-grid-box .bg-light-pruple {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .stat-info {
    text-align: center;
  }

  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-video {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: column;
    overflow: auto;
    margin: 0 -1rem;
    padding-left: 1rem;
    grid-template-rows: repeat(1, 1fr);

  }


  .video-box {
    width: 335px;
    margin-right: 12px;
  }


  .card-content {
    background-image: none;
    border: 1px solid #c5c5c5;
  }

  .card-content {
    grid-template-columns: 1fr;
    height: auto;
  }

  .card-content.india-bg {
    background: #f7f4ff;
  }

  .test-img {
    margin-left: 0;
    height: 125px;
    margin-top: 16px;
    margin-bottom: 13px;
  }


  .custom-faq .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }


  .test-text {
    display: flex;
    align-items: start;
    height: 100%;
    flex-direction: column;
  }

  .test-test-info {
    width: 100%;
  }


  .testim .demo>div,
  .testim .cont>div {
    height: 100%;
  }


  .testim .demo {
    min-height: 92%;
  }

  .navbar-block {
    top: 62px;

  }


  .dropdown-content.login-content {
    padding: 0px 13px;
  }

  .menu {
    list-style: none;
    padding-left: 0;
  }

  .stat-info p+p {
    font-size: 13px;
  }

  .highlighter {
    line-height: 15px;
    padding-bottom: 9px;
    height: auto !important;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    text-align: left;
  }

  .highlighter .top--10 {
    top: 0;
  }

  .quote-text::before {
    bottom: 28px !important;

  }

  .dropdown-content.tabs-auto-fit,
  .dropdown-content.tabs-auto-fit.blogs-menu,
  .dropdown-content.tabs-auto-fit.country-menu,
  .dropdown-content.tabs-auto-fit.exam-menu {
    width: 100%;
    border: 0px;
    border-radius: 2px;
    padding: 0 10px;
  }


  .dropdown-content.login-content {
    width: 100%;
  }

}

.question-image {
  width: 450px !important;
}

/** college page css **/

.filter-options .form-check-input {
  margin-left: 0px !important;
}

.filter-accordion summary {
  background: #EFECFF;
}

#filterSidebar {
  position: sticky;
  top: 77px;
}

.college-card {
  border: 1px solid #EFECFF;
  border-radius: 12px;
}

.college-content {
  padding: 0 17px;
}

.college-name {
  font-size: 16px;
}

.active-filters .badge.bg-primary {
  padding: 13px 10px;
  background: #eef2ff !important;
  color: #3f37c9;
  border: 1px solid #3f37c921;
}


.active-filters .badge.bg-danger {
  padding: 13px 10px;
}


.active-filters .badge.bg-danger:hover {
  color: #fff;
  background: #bd4e4e !important;
}

.gradient-bg-college {
  background: url(../images_new/general/gradient-background.png);
  background-position: center;
  background-size: cover;

}




.college-description table {
  width: 100% !important;
  border-collapse: collapse;
  display: block;
  /* key change */
  overflow-x: auto;
  /* horizontal scroll */
  white-space: nowrap;
}




.college-description table {
  border: none !important;
  margin-bottom: 23px;
}

.college-description table tr td {
  border: 1px solid #d0d0d0;
  padding: 7px;
}

.college-description table tr:first-child {
  background: #f2f2ff;
  color: #3f37c9;
}


.college-description p,
.college-description p span {
  font-family: "Space Grotesk", serif !important;
}

.card.course-card h5 {
  font-size: 15px !important;
}

.skilllab-course-list .course-card {
  border: 1px solid #CBC9FF;
  background: #F8F8FF;
}

.skilllab-course-list .course-description.text-muted.fs-14.mb-3 {
  height: 82px;
}



.skilllab-course-list .course-content .badge {
  background: #D4EEF7 !important;
  color: #1788BD !important;
}

.skilllab-course-list .course-price span {
  color: #3F37C9 !important;
}


.course-media {
  border: 1px solid #C4C4C4;
  border-radius: 15px;
  overflow: hidden;
}


.skilllab-course-list .course-content .course-name {
  height: 50px;
}

.skill-lab-details h2 {
  font-size: 25px;
  color: #575757;
}

.skill-lab-details .course-header h3 {
  font-size: 20px;
}

.skill-lab-details .course-header ul {
  padding-left: 15px;
}

.skill-lab-details .course-header ul li,
.skill-lab-details .course-header p {
  font-size: 16px;
  font-weight: 400;
  color: #474747;
}

.skill-lab-details .course-header .course-description table tr td {
  border: 1px solid #d9cfcf;
  padding: 11px;
}

.course-description h2 {
  margin-bottom: 18px;
}

.locked-content {
  background: radial-gradient(235.3% 235.3% at 50% 0%, rgba(255, 233, 193, 0.3) 19.49%, rgba(209, 208, 254, 0.4) 27.79%, rgba(248, 208, 254, 0.8) 47.75%);
}

.related-courses-section .course-name {
  font-size: 16px;
}

.related-courses-section .course-content .btn {
  background: #3F37C9;
  border: 1px solid #3F37C9;
}


.related-courses-section .course-content .btn:hover {
  background: #5249DF;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.course-sidebar {
  position: sticky;
  top: 95px;
  background: #FCFCFF;
  border: 1px solid #C8C5FF;
  border-radius: 15px;
  padding: 19px;
}


/* Filter options scroll area */
.filter-options {
  max-height: 150px;
  overflow: auto;
  padding-right: 8px;
}

.filter-options::-webkit-scrollbar {
  width: 6px;
}

.filter-options::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

/* Enhanced Accordion (details/summary) styles */
.filter-accordion details {
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(22, 24, 26, 0.02);
}

.filter-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  padding: 8px 10px;
  font-weight: 700;
  color: #222;
  border-radius: 6px;
}

.filter-accordion summary:hover {
  background: rgba(0, 0, 0, 0.02);
}

.filter-accordion summary::-webkit-details-marker {
  display: none;
}

/* Chevron icon */
.filter-accordion .chevron-icon {
  transition: transform .22s ease, color .22s;
  font-size: 18px;
  color: #6b7280;
}

.filter-accordion details[open] .chevron-icon {
  transform: rotate(180deg);
  color: #111827;
}

/* Options padding */
.filter-options {
  padding: 6px 10px 10px 10px;
}

.filter-options .form-check {
  padding: 4px 0;
}

/* Tidy up labels and checkboxes */
.filter-accordion .form-check-label {
  margin-left: 6px;
  color: #374151;
}

.college-pagination .page-item a {
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile slide-in for sidebar */
.filter-sidebar-mobile {
  display: none;
}

@media (max-width: 992px) {
  .filter-sidebar {
    display: none;
  }

  .filter-sidebar.filter-open {
    display: block;
    position: fixed !important;
    left: 0;
    top: 0 !important;
    height: 100vh;
    width: 80%;
    max-width: 360px;
    background: #fff;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .filter-backdrop {
    display: none;
  }

  .filter-backdrop.show {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
  }

}


@media (max-width: 576px) {
  .sroclling {
    width: 100%;
    overflow: scroll;
  }

  .breadcrumb-item {
    max-width: 220px;
    /* truncate long text */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .breadcrumb {
    flex-wrap: nowrap;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
  }

  .breadcrumb .text-muted {
    padding-right: 11px;
  }



}

/** college page css **/

/** vocational course detail page css **/

.vocational-card {
  background: #FFF4E9C9;
  background: linear-gradient(90deg, rgba(255, 244, 233, 1) 0%, rgba(250, 230, 205, 1) 50%);
  padding: 33px;
  border-radius: 20px;
}

.voc-image {
  border-radius: 20px;
}

.voc-left .heading-title {
  line-height: 49px;
}

.vocational-card .cards-n {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d7d0d0;
}



.voc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}


.voc-list li {
  display: flex;
  align-items: start;
  padding: 4px 0;
  color: #222;
  font-weight: 600;
  line-height: 19px;
}

.voc-list li .bx {
  color: #7a6ef8;
  font-size: 18px;
  margin-right: 8px;
}



/* Vocational accordion styles */
.vocational-cr-accordion .custom-accordion .accordion-item {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(36, 30, 85, 0.06);
}

.vocational-cr-accordion .custom-accordion .accordion-button {
  background: linear-gradient(90deg, #ffffff 0%, #f7f6ff 100%);
  color: #241e55;
  padding: 18px 20px;
  font-weight: 700;
  border-radius: 12px;
  gap: 12px;
}

.vocational-cr-accordion .custom-accordion .accordion-button .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgb(63, 55, 201);
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  flex: 0 0 44px;
}

.vocational-cr-accordion .custom-accordion .accordion-button .chev {
  transition: transform .24s ease;
  margin-left: auto;
  color: #6b3df0;
}

.vocational-cr-accordion .custom-accordion .accordion-button.active {
  background: linear-gradient(90deg, rgba(107, 61, 240, 0.06), rgba(99, 102, 241, 0.03));
  /* border-left: 4px solid #6b3df0; */
  color: rgb(63, 55, 201) !important;
}

.vocational-cr-accordion .custom-accordion .accordion-body {
  background: #fff;
  padding: 18px 20px 22px 20px;
  color: #444;
  line-height: 1.6;
}

.vocational-cr-accordion .custom-accordion .chev.rotate {
  transform: rotate(180deg);
}


.vocational-cr-accordion .custom-accordion .accordion-item.pros-cons-item .accordion-body {
  background: #fff;
}

.vocational-cr-accordion .pros-cons-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.vocational-cr-accordion .pros-section,
.vocational-cr-accordion .cons-section {
  padding: 20px;
  border-radius: 12px;
  border: 2px solid;
}

.vocational-cr-accordion .pros-section {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #10b981;
}

.vocational-cr-accordion .pros-section h4 {
  color: #10b981;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vocational-cr-accordion .pros-section h4::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.vocational-cr-accordion .cons-section {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #ef4444;
}

.vocational-cr-accordion .cons-section h4 {
  color: #ef4444;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vocational-cr-accordion .cons-section h4::before {
  content: "×";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.vocational-cr-accordion .pros-section ul,
.vocational-cr-accordion .cons-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.vocational-cr-accordion .pros-section ul li,
.vocational-cr-accordion .cons-section ul li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: #1f2937;
  line-height: 1.6;
}

.vocational-cr-accordion .pros-section ul li::before {
  content: "•";
  position: absolute;
  left: 12px;
  color: #10b981;
  font-size: 20px;
  font-weight: 700;
}

.vocational-cr-accordion .cons-section ul li::before {
  content: "•";
  position: absolute;
  left: 12px;
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
}

.vocational-cr-accordion .chev {
  display: none;
}

@media (max-width: 767px) {
  .vocational-cr-accordion .pros-cons-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .voc-left .heading-title {
    line-height: 31px;
  }

}

/* Vocational accordion styles */


/** psychometric test page css **/


.blur-cricle-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(23, 25, 133, 0.1);
  filter: blur(96px);
  -webkit-filter: blur(96px);
  z-index: -1;
  top: -41px;
}

.blur-cricle-two {
  position: absolute;
  width: 532px;
  height: 607px;
  background: rgb(59, 130, 232, 0.35);
  filter: blur(96px);
  -webkit-filter: blur(96px);
  z-index: -1;
  bottom: -41px;
  right: 264px;
}



.bg-light-blue {
  background: #f4f4ff;
}

.career-direction-test-hero h1 {
  line-height: 48px;
}

.career-direction-test-features {
  position: relative;
  z-index: 0;
  background: #f4f4ff;
}



/* Card Description Styles */
.box-description {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ds-box {
  border: 1px solid #b8b7d5;
  padding: 16px;
  border-radius: 16px;
  position: relative;
  background: #fff;
  min-height: 345px;
}

.career-direction-test-hero h1 {
  font-size: 50px;
}




.box-icon {
  width: 70px;
  height: 70px;
  background: rgb(215, 232, 255);
  margin-bottom: 28px;
  padding: 15px;
  border-radius: 36px;
}

.box-icon img {
  width: 100%;
}

.box-description p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  max-height: calc(1.6em * 4);
  transition: all 0.3s ease;
}

/* Full content display for HEXACO section */
.hexaco-section .box-description p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  max-height: none;
}

.box-description.expanded {
  max-height: 154px;
  overflow-y: auto;
  padding-right: 8px;
  padding-top: 5px;
  position: relative;
}

.box-description.expanded p {
  display: block;
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

/* Close button inside expanded description */
.description-close-btn {
  display: none;
  position: sticky;
  top: 0;
  right: 0;
  background: #f0f0f0;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  float: right;
  margin-left: auto;
  margin-bottom: 5px;
}

.box-description.expanded .description-close-btn {
  display: flex;
}

.description-close-btn:hover {
  background: #e0e0e0;
  color: #333;
}

.read-more-btn {
  background: none;
  border: none;
  color: #6c5ce7;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}

.read-more-btn:hover {
  color: #5a4fcf;
}

.read-more-btn.hidden {
  display: none;
}

/* Custom scrollbar for expanded description */
.box-description.expanded::-webkit-scrollbar {
  width: 6px;
}

.box-description.expanded::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.box-description.expanded::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.box-description.expanded::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Aptitude Assessment Carousel Styles */
.aptitude-section {
  background: linear-gradient(135deg, #f4f4ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}


.aptitude-image-item {
  width: 380px;
}

.aptitude-image-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .aptitude-image-item {
    max-width: 100%;
  }
}

.aptitude-carousel-wrapper {
  position: relative;
  padding: 20px 0 33px 0;
}

.aptitude-carousel-wrapper .owl-carousel {
  position: relative;
}

.aptitude-carousel-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 15px;
  box-shadow: none;
  border: 1px solid #e8e8f5;
  transition: all 0.3s ease;
  min-height: 336px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 15px;
}

.aptitude-carousel-item:hover {
  transform: translateY(-5px);
}

.aptitude-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.aptitude-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: inherit;
}

.aptitude-icon-wrapper img {
  width: 60px;
  height: 60px;
  z-index: 1;
}

.aptitude-icon-wrapper i {
  font-size: 50px;
  color: #ffffff;
  z-index: 1;
}

.aptitude-carousel-title {
  font-size: 19px;
  font-weight: 700;
  color: #2d2d3a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.aptitude-carousel-description {
  font-size: 16px;
  color: #5a5a6e;
  line-height: 1.8;
}

.aptitude-carousel .owl-nav {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 24px;
  padding: 0;
  pointer-events: none;
  z-index: 10;
  margin-top: 30px;
}

.aptitude-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50px !important;
  background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all !important;
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
  position: relative;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer;
  overflow: hidden;
}

.aptitude-carousel .owl-nav button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aptitude-carousel .owl-nav button:hover::before {
  opacity: 1;
}

.aptitude-carousel .owl-nav button i {
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aptitude-carousel .owl-nav button.owl-prev:hover i {
  transform: translateX(-3px) scale(1.1);
}

.aptitude-carousel .owl-nav button.owl-next:hover i {
  transform: translateX(3px) scale(1.1);
}

.aptitude-carousel .owl-nav button:hover {
  background: linear-gradient(135deg, #5a4fcf 0%, #4a3fbf 100%) !important;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
  border-color: rgba(255, 255, 255, 0.3) !important;
}


.aptitude-carousel .owl-nav button:active {
  transform: scale(0.95);
}

.aptitude-carousel .owl-nav button.disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
  background: #b8b7d5 !important;
}

.aptitude-carousel .owl-nav button.disabled:hover {
  transform: scale(1);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
}

/* Ensure navigation is always visible */
.aptitude-carousel .owl-nav {
  opacity: 1 !important;
  visibility: visible !important;
}

.aptitude-carousel .owl-prev,
.aptitude-carousel .owl-next {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Override any default Owl Carousel hiding */
.aptitude-carousel.owl-carousel .owl-nav button.owl-prev,
.aptitude-carousel.owl-carousel .owl-nav button.owl-next {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.aptitude-carousel .owl-dots {
  display: none !important;
}

/* Career Report Content Styles */
.career-report-content {
  padding: 20px 0;
}

.career-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-feature-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.career-feature-item:last-child {
  border-bottom: none;
}

.career-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.career-feature-item:hover .career-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.career-feature-icon i {
  font-size: 28px;
  color: #ffffff;
}

.career-feature-icon.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.career-feature-icon.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.career-feature-icon.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.career-feature-icon.icon-yellow {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.career-feature-icon.icon-pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.career-feature-icon.icon-teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.career-feature-icon.icon-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.career-feature-content {
  flex: 1;
}

.career-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d3a;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .career-feature-item {
    padding: 18px 0;
  }

  .career-feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .career-feature-icon i {
    font-size: 24px;
  }

  .career-feature-title {
    font-size: 18px;
  }

  .ds-box {
    min-height: auto;
  }

}

/* How It Works Section Styles */
.how-it-works-section {
  background: #FBF7F2;
  padding: 80px 0;
  position: relative;
}

.how-it-works-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d2d3a;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.how-it-works-section .section-subtitle {
  font-size: 18px;
  color: #5a5a6e;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.how-it-works-steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.how-it-works-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 23px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}


.step-number-badge {
  position: absolute;
  top: -17px;
  right: -16px;
  width: 50px;
  height: 50px;
  background: #5249DF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(95, 39, 125, 0.3);
}

.step-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 15px 0 18px;
}

.step-icon i {
  font-size: 28px;
  color: #5D53AB;
  background: #efedff;
  border-radius: 50px;
  padding: 12px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d2d3a;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  font-size: 15px;
  color: #5a5a6e;
  text-align: center;
  line-height: 20px;
  margin: 0;
}

@media (max-width: 1200px) {
  .how-it-works-steps {
    gap: 25px;
  }

  .how-it-works-step {
    min-width: 220px;
    max-width: 250px;
    padding: 35px 25px;
  }
}

@media (max-width: 992px) {
  .how-it-works-steps {
    gap: 20px;
  }

  .how-it-works-step {
    min-width: 200px;
    max-width: 240px;
    padding: 30px 20px;
  }

  .step-icon i {
    font-size: 56px;
  }

  .step-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 18px 0;
  }

  .how-it-works-section .section-title {
    font-size: 32px;
  }

  .how-it-works-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .how-it-works-steps {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .how-it-works-step {
    min-width: 100%;
    max-width: 100%;
    padding: 30px 25px;
  }

  .step-icon i {
    font-size: 52px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .how-it-works-section .section-title {
    font-size: 28px;
  }

  .how-it-works-step {
    padding: 25px 20px;
  }

  .step-number-badge {
    width: 45px;
    height: 45px;
    font-size: 16px;
    top: 15px;
    right: 15px;
  }

  .step-icon {
    margin: 15px 0 20px;
  }

  .step-icon i {
    font-size: 48px;
  }

  .step-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .step-description {
    font-size: 14px;
  }
}

/* CTA Box Section Styles */
.cta-box-section {
  padding: 60px 0;
}

.cta-box-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-box-image-wrapper {
  flex: 0 0 45%;
  position: relative;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.cta-box-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  position: relative;
  bottom: -100px;
}

.cta-box-content {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-box-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d2d3a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.cta-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d3a;
}

.cta-plan-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-plan-details {
  font-size: 14px;
  color: #5a5a6e;
  margin-bottom: 20px;
}

.cta-pricing-section {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-current-price {
  font-size: 48px;
  font-weight: 700;
  color: #6c5ce7;
  line-height: 1;
}

.cta-price-label {
  font-size: 14px;
  color: #5a5a6e;
  margin-top: 5px;
}

.cta-original-price {
  font-size: 24px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.cta-discount-badge {
  background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
  color: #6c5ce7;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.cta-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.cta-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2d2d3a;
  line-height: 1.6;
}

.cta-feature-item:last-child {
  margin-bottom: 0;
}

.cta-feature-icon {
  color: #6c5ce7;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cta-button {
  background: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.cta-button:active {
  transform: translateY(0);
}

.blue-tick {
  position: relative;
  padding-left: 0px;
}

.blue-tick.cu-stic li {
  line-height: 20px;
  font-size: 15px;
  margin-bottom: 12px;
}


.blue-tick.cu-stic li::before {
  top: 2px;
  width: 18px;
}


.blue-tick li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.blue-tick li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  background-image: url('../images/small-blue-tick.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 992px) {
  .cta-box-card {
    flex-direction: column;
  }

  .cta-box-image-wrapper {
    flex: 0 0 auto;
    min-height: 300px;
  }

  .cta-box-content {
    padding: 40px 30px;
  }

  .cta-box-title {
    font-size: 28px;
  }

  .cta-current-price {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .cta-box-section {
    padding: 40px 0;
  }

  .cta-box-card {
    border-radius: 16px;
    margin: 0 15px;
  }

  .cta-box-image-wrapper {
    min-height: 250px;
    padding: 30px 20px;
  }

  .cta-box-content {
    padding: 30px 25px;
  }

  .cta-box-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .cta-current-price {
    font-size: 36px;
  }

  .cta-original-price {
    font-size: 20px;
  }

  .cta-pricing-section {
    gap: 10px;
  }

  .cta-feature-item {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .cta-box-content {
    padding: 25px 20px;
  }

  .cta-box-title {
    font-size: 22px;
  }

  .cta-current-price {
    font-size: 32px;
  }

  .cta-original-price {
    font-size: 18px;
  }

  .cta-discount-badge {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .aptitude-image-column {
    flex-direction: row;
    margin-bottom: 20px;
  }

  .cta-box-image-wrapper img {
    bottom: -30px;

  }

  .aptitude-image-item {

    flex: 1;
  }

  .aptitude-image-item img {
    object-fit: cover;
    height: 100%;
  }

  .aptitude-carousel-item {
    padding: 20px 15px;
    min-height: auto !important;
    margin: 0 8px;
    border-radius: 16px;
  }

  .aptitude-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .aptitude-icon-wrapper i {
    font-size: 36px;
  }

  .aptitude-carousel-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .aptitude-carousel-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .aptitude-carousel-wrapper {
    padding: 15px 0 90px 0;
  }

  .aptitude-carousel .owl-nav {
    gap: 12px;
    bottom: -50px;
  }

  .aptitude-carousel .owl-nav button {
    width: 44px;
    height: 44px;
  }

  .aptitude-carousel .owl-nav button i {
    font-size: 22px;
  }

  .aptitude-section .row.align-items-center {
    flex-direction: column;
  }

  .aptitude-section .col-lg-3 {
    margin-bottom: 20px;
  }

  .career-direction-test-hero h1 {
    line-height: 33px;
    font-size: 24px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .aptitude-image-column {
    flex-direction: row;
    margin-bottom: 25px;
  }

  .aptitude-image-item {
    flex: 1;
  }

  .aptitude-carousel-item {
    padding: 25px 18px;
    min-height:auto;
    margin: 0 12px;
  }

  .aptitude-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
  }

  .aptitude-icon-wrapper i {
    font-size: 42px;
  }

  .aptitude-carousel-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .aptitude-carousel-description {
    font-size: 15px;
  }

  .aptitude-carousel-wrapper {
    padding: 18px 0 85px 0;
  }

  .aptitude-carousel .owl-nav {
    gap: 18px;
    bottom: -55px;
  }

  .aptitude-carousel .owl-nav button {
    width: 48px;
    height: 48px;
  }

  .aptitude-carousel .owl-nav button i {
    font-size: 24px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .aptitude-image-column {
    flex-direction: row;
    margin-bottom: 30px;
  }

  .aptitude-image-item {

    flex: 1;
  }

  .aptitude-carousel-item {
    padding: 30px 20px;
    min-height: 380px;
    margin: 0 15px;
  }

  .aptitude-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .aptitude-icon-wrapper i {
    font-size: 45px;
  }

  .aptitude-carousel-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .aptitude-carousel-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .aptitude-carousel-wrapper {
    padding: 20px 0 80px 0;
  }

  .aptitude-carousel .owl-nav {
    gap: 20px;
    bottom: -60px;
  }

  .aptitude-carousel .owl-nav button {
    width: 50px;
    height: 50px;
  }

  .aptitude-carousel .owl-nav button i {
    font-size: 26px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .aptitude-carousel-item {
    padding: 35px 25px;
    min-height: 350px;
    margin: 0 15px;
  }

  .aptitude-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
  }

  .aptitude-icon-wrapper i {
    font-size: 48px;
  }

  .aptitude-carousel-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .aptitude-carousel-description {
    font-size: 15px;
  }

  .aptitude-carousel-wrapper {
    padding: 20px 0 90px 0;
  }

  .aptitude-carousel .owl-nav {
    gap: 22px;
    bottom: -60px;
  }

  .aptitude-carousel .owl-nav button {
    width: 52px;
    height: 52px;
  }

  .aptitude-carousel .owl-nav button i {
    font-size: 28px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .aptitude-carousel-item {
    padding: 26px 20px;
    min-height: 313px;
    margin: 0 15px;
  }

  .aptitude-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
  }

  .aptitude-icon-wrapper i {
    font-size: 35px;
  }

  .aptitude-carousel-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .aptitude-carousel-description {
    font-size: 16px;
  }

  .aptitude-carousel-wrapper {
    padding: 20px 0 70px 0;
  }

  .aptitude-carousel .owl-nav {
    gap: 24px;
    bottom: -60px;
  }

  .aptitude-carousel .owl-nav button {
    width: 56px;
    height: 56px;
  }

  .aptitude-carousel .owl-nav button i {
    font-size: 30px;
  }
}


/*** institute register page ***/

.institute-register-page {
  padding-top: 100px;
  /* Account for fixed header */
  padding-bottom: 0;
  min-height: 100vh;
  background: #f8f9fa;
}

.registration-container {
  display: flex;
  min-height: calc(100vh - 100px);
  background-color: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
}

.registration-container .left-panel {
  width: 35%;
  background: linear-gradient(135deg, #541BCF 0%, #8662E3 100%);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-bottom: 0px;
}

@media (max-width: 767px) {
  .registration-container .left-panel {
    display: none !important;
  }
}

.registration-container .left-panel-content {
  margin-top: 60px;
}

.registration-container .left-panel h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.registration-container .left-panel p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.registration-container .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.registration-container .benefit-item i {
  margin-right: 15px;
  font-size: 20px;
  color: #ffffff;
  margin-top: 3px;
}

.registration-container .benefit-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.registration-container .benefit-item p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.registration-container .right-panel {
  width: 65%;
  padding: 40px;
  background-color: white;
  overflow-y: auto;
}

.registration-container .form-title {
  text-align: center;
  color: #541BCF;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}

.registration-container .form-title i {
  margin-right: 10px;
}

.registration-container .info-alert {
  background: #EDE4FC;
  color: #541BCF;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.registration-container .info-alert svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 2px;
}

.registration-container .info-alert-content {
  flex: 1;
  font-size: 14px;
}

.registration-container .info-alert-close {
  background: none;
  border: none;
  color: #541BCF;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.registration-container .file-upload-area {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: #f9fafb;
  margin-bottom: 10px;
}

.registration-container .file-upload-area:hover {
  border-color: #541BCF;
  background: #EDE4FC;
}

.registration-container .file-upload-area.dragover {
  border-color: #541BCF;
  background: #EDE4FC;
}

.registration-container .file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.registration-container .file-upload-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  color: #666;
}

.registration-container .file-upload-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.registration-container .browse-button {
  color: #541BCF;
  border: 2px solid #541BCF;
  border-radius: 20px;
  padding: 6px 16px;
  background: white;
  font-weight: 600;
  transition: all 0.3s;
}

.registration-container .browse-button:hover {
  background: #541BCF;
  color: white;
}

.registration-container .preview-container {
  margin-top: 20px;
  text-align: center;
}

.registration-container .preview-container img {
  max-height: 128px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.registration-container .custom-input {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s;
}

.registration-container .custom-input:focus {
  outline: none;
  border-color: #541BCF;
  box-shadow: 0 0 0 0.2rem rgba(84, 27, 207, 0.25);
}

.registration-container .form-group {
  margin-bottom: 20px;
}

.registration-container .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.registration-container .form-group textarea.custom-input {
  height: auto;
  min-height: 50px;
  resize: vertical;
}

.registration-container .error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.registration-container .form-group input.invalid,
.registration-container .form-group textarea.invalid,
.registration-container .form-group select.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.registration-container .form-group input.valid,
.registration-container .form-group textarea.valid,
.registration-container .form-group select.valid {
  border-color: #28a745;
}

.registration-container .declaration-checkbox {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.registration-container .declaration-checkbox input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
}

.registration-container .declaration-text {
  font-size: 14px;
}

.registration-container .declaration-text label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.registration-container .declaration-text ol {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 12px;
  color: #666;
}

.registration-container .declaration-text ol li {
  margin-bottom: 8px;
}

.registration-container .declaration-text a {
  color: #541BCF;
  text-decoration: underline;
}


.registration-container .purple-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.registration-container .purple-button i {
  margin-right: 8px;
}

.registration-container .file-format-info {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .registration-container {
    flex-direction: column;
  }

  .registration-container .left-panel,
  .registration-container .right-panel {
    width: 100%;
  }

  .registration-container .left-panel {
    padding: 30px;
    min-height: auto;
  }
}

@media (min-width: 768px) {
  .registration-container .left-panel {
    display: flex !important;
  }
}

/*** institute register page ***/


/** Extracurricular Activities Section ***/

/* Activity Cards Styling (from provided HTML) */
.activity-card {
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: #fff;
  overflow: hidden;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  height: 340px;
  /* fixed card height */
}

.activity-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.activity-card:hover:before {
  opacity: 1;
}

.activity-list {
  padding-left: 0;
  list-style-type: none;
}

.activity-list li {
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.activity-list li:last-child {
  border-bottom: none;
}

.activity-list li a {
  color: #555;
  text-decoration: none;
  display: block;
  padding-left: 0;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: capitalize;
}

.activity-list li:hover {
  padding-left: 8px;
  background: #f8f9fa;
}

.activity-list li:hover a {
  color: #3F37C9;
}

.activities-section .card-header {
  border-bottom: none;
  padding: 20px;
  position: relative;
}

.activities-section .card-header h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.activities-section .card-header h3 i {
  margin-right: 10px;
  font-size: 1.7rem;
  background: #fff;
  border-radius: 50px;
  padding: 7px;
  color: #3f37c9;
}

.activities-section .card-body {
  padding: 15px;
  flex: 1 1 auto;
  overflow: hidden;
}

/* Make activity list scroll when items exceed card space */
.activities-section .activity-list {
  padding-left: 0;
  list-style-type: none;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 8px;
}

.activities-section .activity-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.activities-section .activity-list li a i.bx {
  font-size: 1rem;
  color: #bdbdbd;
  transition: transform 0.18s ease, color 0.18s ease;
  margin-left: 8px;
}

.activities-section .activity-list li:hover a i.bx {
  transform: translateX(4px);
  color: #3F37C9;
}

/* Thin custom scrollbar for webkit browsers */
.activities-section .activity-list::-webkit-scrollbar {
  width: 8px;
}

.activities-section .activity-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.activities-section .activities-section .highlighter,
.activities-section .ext-benefits .highlighter {
  float: inherit;
}

/* Light top gradient overlay for activities section */
.activities-section {
  position: relative;
  z-index: 0;
  background: #c4c4ff;
  background: linear-gradient(0deg, rgba(196, 196, 255, 0) 0%, rgb(249, 249, 255) 100%);
}


.vocational-card {
  background: #FFF4E9C9;
  background: linear-gradient(90deg, rgba(255, 244, 233, 1) 0%, rgba(250, 230, 205, 1) 50%);
  padding: 33px;
  border-radius: 20px;
}

.voc-left .heading-title {
  line-height: 49px;
}

.cards-n {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d7d0d0;
}

.voc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.voc-list li {
  display: flex;
  align-items: start;
  padding: 4px 0;
  color: #222;
  font-weight: 600;
  line-height: 19px;
}

.voc-list li .bx {
  color: #7a6ef8;
  font-size: 18px;
  margin-right: 8px;
}

.extracurricular-tabs {
  background-image: url("{{ static('images/extracurricular-bg.png') }}") !important;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Enhanced tab UI */
.extracurricular-tabs .card {
  overflow: visible;
}



.extracurricular-tabs .list-group-item {
  border: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  padding-right: 1rem;
  transition: all .15s ease-in-out;
}

.extracurricular-tabs .list-group-item:hover {
  background: rgba(98, 0, 238, 0.03);
  transform: translateX(3px);
}

.extracurricular-tabs .list-group-item.active {
  background: linear-gradient(90deg, rgba(98, 0, 238, 0.06), rgba(99, 102, 241, 0.03));
  border-left: 3px solid #6b3df0;
  color: #2b2b2b;
}

.extracurricular-tabs .list-group-item .nav-title {
  font-weight: 700;
}

.extracurricular-tabs .list-group-item .nav-desc {
  font-size: 13px;
  color: #6c6c6c;
  margin-top: 4px;
}

.extracurricular-tabs .tab-content h3 {
  margin-bottom: .75rem;
}

.extracurricular-tabs .tab-content ul li {
  color: rgb(71, 71, 71);
}

.extracurricular-tabs ul li a {
  color: #6b3df0;
}

#list-resources a {
  color: #3F37C9;
  text-decoration: underline !important;
}

/* Make left column sticky on large screens */
@media(min-width:992px) {
  .extracurricular-tabs .col-lg-4 {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }

  /* Fixed height and scrollable left nav on desktop */
  .extracurricular-tabs .list-group {
    height: 450px;
    max-height: 450px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: .5rem;
    /* avoid content touching scrollbar */
  }

  .extracurricular-tabs .list-group-item {
    white-space: normal;
  }
}

/* Mobile: turn the list into a horizontal scrollable nav */
@media(max-width:991px) {
  .extracurricular-tabs .list-group {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 17px 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-direction: row;
  }

  .extracurricular-tabs .list-group-item {
    border-radius: .5rem;
    white-space: normal;
    width: auto;
    min-width: max-content;
    border: 1px solid #d8cbfb;
  }

  .voc-left .heading-title {
    line-height: 33px;
  }


  .extracurricular-tabs .list-group-item .nav-desc {
    display: none;
  }

  .extracurricular-tabs .tab-content {
    padding-top: 1rem;
  }
}

/* Subtle card look for content */
.extracurricular-tabs .card-body {
  background: #fff;
}

.extracurricular-tabs .tab-content p,
.extracurricular-tabs .tab-content li {
  line-height: 1.6;
}

a.list-group-item .bx {
  font-size: 20px;
  color: #6b3df0;
}

/* Tab content scroll area: fixed min/max height on desktop, scroll when content overflows */
.extracurricular-tabs .scroll-nav-tabs {
  min-height: 450px;
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-right: 8px;
  /* keeps content from touching scrollbar */
}

@media (max-width: 991px) {
  .extracurricular-tabs .scroll-nav-tabs {
    min-height: auto;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }


}

@media (max-width: 767px) {
  .activity-card {
    height: auto;
}

#mobileSearchOverlay {
  z-index: 9999 !important;
}
}



/** Extracurricular Activities Section ***/


.custom-bullet-list {
  list-style-type: none;
  padding-left: 0;
}

.custom-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.custom-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 18px;
  background-image: url('../images_new/icons/small-blue-tick.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}


/*** four pillar main page ***/

.four-pillars-hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5FF 100%);
}

.four-pillars-visual-container {
  border-radius: 10px;
  overflow: hidden;
}

.blur-cricle-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(23, 25, 133, 0.1);
  filter: blur(96px);
  -webkit-filter: blur(96px);
  z-index: -1;
  top: -41px;
}

.discovery-modal ul li {
  font-weight: normal;
}

.blur-cricle-two {
  position: absolute;
  width: 532px;
  height: 607px;
  background: rgb(59, 130, 232, 0.35);
  filter: blur(96px);
  -webkit-filter: blur(96px);
  z-index: -1;
  bottom: -41px;
  right: 264px;
}

.four-pillars-hero-section h1 {
  line-height: 47px;
}

.four-pillars-hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.four-pillars-hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  animation: heroFloat 4s ease-in-out infinite;
}

.blue-border-btn {
  border: 1px solid #25a4f2;
  color: #25a4f2;
  background: transparent;
  transition: all 0.3s ease;
}

.blue-border-btn:hover {
  background: rgb(255, 255, 255);
  border-color: #1d8fd9;
  color: #1d8fd9;
  box-shadow: 0 2px 8px rgba(37, 164, 242, 0.25);
  transform: translateY(-5px);
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: statFloat 3s ease-in-out infinite;
  z-index: 2;
}

.hero-stat-card .stat-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-stat-card .stat-icon i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.hero-stat-card.card-1 .stat-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.hero-stat-card.card-2 .stat-icon {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.hero-stat-card.card-3 .stat-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.hero-stat-card.card-4 .stat-icon {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.hero-stat-card .stat-content strong {
  display: block;
  font-size: 18px;
  color: #2d2d3a;
  line-height: 1.2;
}

.hero-stat-card .stat-content span {
  font-size: 12px;
  color: #4b5563;
}

.hero-stat-card.card-1 {
  top: 5%;
  right: -5%;
  animation-delay: 0s;
}

.hero-stat-card.card-2 {
  bottom: 61%;
  left: -10%;
  animation-delay: 0.5s;
}

.hero-stat-card.card-3 {
  bottom: 5%;
  right: 0;
  animation-delay: 1s;
}

.box-in {
  padding: 18px;
  border-radius: 20px;
}

.hero-stat-card.card-4 {
  bottom: 64px;
}

.grading-boxone {
  background: linear-gradient(180deg, #F7F6FF 0%, #E4E2FF 100%);
  border: 1px solid rgb(209, 208, 254);
}

.grading-boxtwo {
  background: linear-gradient(180deg, #FFF9EE 0%, #FFF1D7 100%);
  border: 1px solid rgba(255, 209, 16, 1);
}

.grading-boxthree {
  background: linear-gradient(180deg, #F4FAFF 0%, #D4EDFF 100%);
  border: 1px solid rgba(172, 220, 254, 1);
}

.grading-boxfour {
  background: linear-gradient(180deg, #FFF5ED 0%, #FFEAD8 100%);
  border: 1px solid rgba(255, 184, 119, 1);
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 12px;
  position: relative;
  min-height: 214px;
}

.pillar-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #3f37c9, transparent);
}

.grading-boxtwo .pillar-list::before {
  background: linear-gradient(to right, transparent, #ffd011, transparent);
}

.grading-boxthree .pillar-list::before {
  background: linear-gradient(to right, transparent, #7bc8ff, transparent);
}

.grading-boxfour .pillar-list::before {
  background: linear-gradient(to right, transparent, #ff8a39, transparent);
}

.pillar-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 17px;
  background-image: url('../images/small-blue-tick.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.grading-boxtwo .pillar-list li::before {
  color: #c9a000;
}

.grading-boxthree .pillar-list li::before {
  color: #3b82f6;
}

.grading-boxfour .pillar-list li::before {
  color: #ff8a39;
}

@keyframes statFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991px) {
  .hero-stat-card {
    padding: 10px 12px;
  }

  .hero-stat-card .stat-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 10px;
  }

  .hero-stat-card .stat-icon i {
    font-size: 20px;
  }

  .hero-stat-card .stat-content strong {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-stat-card .stat-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 8px;
  }

  .hero-stat-card .stat-icon i {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-stat-card.card-1 {
    top: 2%;
    right: 0;
  }

  .hero-stat-card.card-2 {
    left: 0;
    bottom: 48%;
  }

  .hero-stat-card.card-3 {
    right: 0;
    bottom: 2%;
  }

  .pillar-list {
    min-height: auto;
  }


  .four-pill-tabs .nav-pills {
    display: grid !important;
    grid-template-columns: repeat(4,1fr);
    overflow-y: scroll;
    justify-content: start !important;
    padding-bottom: 15px !important;
    position: sticky;
    top: 74px;
    z-index: 99999;
    background: #fff;
    padding-top: 11px;
  }

  .four-pill-tabs .nav-pills li {
    white-space: nowrap;
  }
}


.educational-foundation-section {
  background: #ffffff;
  position: relative;
}

.pillars-visual-container {
  background: #f8faff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.pillar-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d3a;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pillars-visual-container {
    padding: 30px 20px;
  }

  .pillars-grid {
    gap: 16px;
  }

  .pillar-card {
    padding: 24px 16px;
  }

  .pillar-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }

  .pillar-title {
    font-size: 14px;
  }
}

.four-pillar-discovery-section {
  background: #ffffff;
  position: relative;
}

.four-pillar-discovery-section .title-two {
  color: #2d2d3a;
}

.four-pillar-discovery-section .text-gray {
  color: #4b5563;
}

.discovery-cards-grid {
  margin-top: 40px;
}

.discovery-cards-grid .row {
  --bs-gutter-x: 1.5rem;
}

.discovery-card {
  width: 100%;
  min-width: 0;
  border-radius: 20px;
  padding: 28px;
  min-height: 273px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.discovery-modal {
  z-index: 9999;
}

.discovery-card.card-1 {
  background: #E8E6FF;
}

.discovery-card.card-2 {
  background: linear-gradient(180deg, #7755EE 0%, #4C2CA9 100%);
}

.discovery-card.card-3 {
  background: #F7A122;
}

.discovery-card.card-4 {
  background: #FFF8E1;
}

.discovery-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.discovery-card.card-1 h3,
.discovery-card.card-3 h3,
.discovery-card.card-4 h3 {
  color: #2d2d3a;
}

.discovery-card.card-2 h3 {
  color: #fff;
}

.discovery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}

.discovery-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.discovery-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 17px;
  background-image: url('../images/small-blue-tick.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.discovery-card.card-2 .discovery-list li::before {
  color: #fff;
}

.discovery-card .learn-more-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid;
  background: transparent;
  align-self: flex-start;
  cursor: pointer;
}

.discovery-card.card-1 .learn-more-btn {
  color: #7755EE;
  border-color: #7755EE;
}

.discovery-card.card-1 .learn-more-btn:hover {
  background: rgb(255, 255, 255);
  color: #5a3fc9;
  border-color: #5a3fc9;
}

.discovery-card.card-2 .learn-more-btn {
  color: #fff;
  border-color: #fff;
}

.discovery-card.card-2 .learn-more-btn:hover {
  background: rgb(255, 255, 255);
  color: #000;
}

.discovery-card.card-3 .learn-more-btn {
  color: #ffffff;
  border-color: #ffffff;
}

.discovery-card.card-3 .learn-more-btn:hover {
  background: rgb(255, 255, 255);
  color: #000;
  border-color: #ffffff;
}

.discovery-card.card-4 .learn-more-btn {
  color: #8B6914;
  border-color: #8B6914;
}

.discovery-card.card-4 .learn-more-btn:hover {
  background: rgb(255, 255, 255);
  color: #000;
  border-color: #6b5010;
}

.four-conclusion-section {
  background: linear-gradient(180deg, #F8F7FF 0%, #EFECFF 100%);
  position: relative;
  overflow: hidden;
}

.four-conclusion-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(119, 85, 238, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.four-conclusion-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(119, 85, 238, 0.12);
  position: relative;
  overflow: hidden;
}

.four-conclusion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7755EE 0%, #3F37C9 100%);
  border-radius: 24px 24px 0 0;
}

.four-conclusion-content {
  max-height: 242px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.four-conclusion-content.expanded {
  max-height: 2000px;
}

.four-conclusion-content .fade-overlay {
  height: 80px;
  margin-top: -80px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.four-conclusion-content.expanded .fade-overlay {
  opacity: 0;
  height: 0;
  margin: 0;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #7755EE 0%, #3F37C9 100%);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(119, 85, 238, 0.3);
}

.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(119, 85, 238, 0.4);
  color: #fff !important;
}

.see-more-btn i {
  transition: transform 0.3s ease;
}

.see-more-btn.expanded i {
  transform: rotate(180deg);
}

.conclusion-quote {
  background: linear-gradient(135deg, rgba(119, 85, 238, 0.08) 0%, rgba(63, 55, 201, 0.05) 100%);
  border-left: 4px solid #7755EE;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #4b5563;
  margin: 24px 0;
}

.conclusion-quote {
  background: linear-gradient(135deg, rgba(119, 85, 238, 0.08) 0%, rgba(63, 55, 201, 0.05) 100%);
  border-left: 4px solid #7755EE;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #4b5563;
  margin: 24px 0;
}

.conclusion-principles {
  counter-reset: principle;
  list-style: none;
  padding-left: 0;
}

.conclusion-principles li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
}

.conclusion-principles li::before {
  counter-increment: principle;
  content: counter(principle);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7755EE 0%, #3F37C9 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.four-conclusion-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(119, 85, 238, 0.15);
}

.four-conclusion-image-fixed {
  height: auto;
  position: sticky;
  top: 24px;
}

.four-conclusion-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.four-conclusion-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.four-conclusion-steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.5;
}

.four-conclusion-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 17px;
  background-image: url('../images/small-blue-tick.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.four-conclusion-final-thought {
  background: linear-gradient(135deg, rgba(119, 85, 238, 0.12) 0%, rgba(63, 55, 201, 0.08) 100%);
  padding: 24px 28px;
  border-radius: 16px;
  border-left: 5px solid #7755EE;
  font-size: 17px;
  font-weight: 600;
  color: #2d2d3a;
  margin: 20px 0;
}

@media (max-width: 991px) {
  .four-conclusion-image-fixed {
    position: static;
  }

  .four-conclusion-image-wrap {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .four-conclusion-card {
    padding: 24px;
  }

  .four-conclusion-content {
    max-height: 240px;
  }

}



/* Make the conclusion image sticky on larger viewports so it stays visible while reading content */
.four-conclusion-image-wrap {
  display: block;
}

.four-conclusion-image-fixed {
  position: sticky;
  top: 20px;
  /* adjust if header height differs */
  align-self: flex-start;
  /* keep it aligned to the top of the column */
  z-index: 2;
  max-height: calc(100vh - 40px);
  overflow: hidden;
}

.four-conclusion-image-fixed img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Keep original static behavior on smaller screens (already present but ensure specificity) */
@media (max-width: 991px) {
  .four-conclusion-image-fixed {
    position: static;
    max-height: none;
  }
}

.learning-approach {
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(213, 213, 213);
  background: linear-gradient(180deg, #FFF 0%, #FAF5FF 100%);
}

.learning-approach h2 {
  margin-bottom: 20px;
  text-align: center;
}

.learning-approach h2 .highlight {
  color: rgba(63, 55, 201, 1);
  font-weight: 700;
}

.approach-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.approach-column {
  flex: 1;
  min-width: 300px;
}

.learning-method,
.study-strategy {
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #D1D0FE;
  background: linear-gradient(180deg, #F9F9FF 0%, #EDEDFF 100%);
}

.coltwo-height .learning-method,
.study-strategy {
  min-height: 335px;
}

.example-box {
  border: 1px solid #ffc107;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  background: linear-gradient(115.92deg, #FFFAF5 29.47%, #FFEAD5 113.93%);
}

.challenges-opportunities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.challenges,
.opportunities {
  flex: 1;
  min-width: 250px;
  background: #f9f9ff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #f1f1ff;
}

.learning-list {
  list-style-type: none;
  padding-left: 0;
}

.learning-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.learning-list.greentick-list li::before,
.learning-list.bluetick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 17px;
  background-image: url('../images/small-blue-tick.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.learning-list.bluetick-list li::before {
  color: #25a4f2;
}

.hebox-height {
  min-height: 398px !important;
}

.pillartwoh {
  min-height: 434px !important;
}

.fourth-hgbox-height {
  min-height: 289px !important;
}

@media (max-width: 767px) {
  .learning-approach {
    padding: 17px;
  }
}

/*** four pillar main page ***/


/** multiple intelligences page ***/

.mi-framework-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.mi-framework-section ul li i {
  font-size: 8px;
  color: #6548eb;
}

.mi-unique-section-content {
  padding: 72px;
  color: white;
  background: rgba(63, 55, 201, 1);
  border-radius: 20px;
}

.mi-unique-section .card {
  background: rgba(233, 237, 255, 1);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.mi-unique-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mi-unique-section .learner-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: rgba(205, 202, 255, 1);
}

.mi-unique-section .learner-icon img {
  width: 30px;
  height: 30px;
}

.mi-matters-section {
  padding: 80px 0;
}

.mi-matters-section .card {
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.in-card-one {
  background: linear-gradient(180deg, #FFFDF6 0%, #FFFAE8 100%);
  border: 1px solid rgba(244, 207, 20, 1);
}

.in-card-two {
  background: linear-gradient(180deg, #FFF6F6 0%, #FFE8E8 100%);
  border: 1px solid rgba(255, 166, 166, 1);
}

.in-card-three {
  background: linear-gradient(180deg, #F6F6FF 0%, #E9E8FF 100%);
  border: 1px solid rgba(170, 166, 255, 1);
}

.in-card-four {
  background: linear-gradient(180deg, #F5F9FF 0%, #E1EEFF 100%);
  border: 0.8px solid rgba(166, 204, 255, 1);
}

.in-card-five {
  background: linear-gradient(180deg, #FFF8FD 0%, #FFE5FA 100%);
  border: 0.8px solid rgba(235, 178, 223, 1);
}

.mi-matters-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mi-matters-section .icon-circle {
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-matters-section .school-icon {
  background: rgba(244, 207, 20, 1);
}

.mi-matters-section .life-icon {
  background-color: rgba(233, 30, 99, 0.2);
}

.mi-matters-section .growth-icon {
  background-color: rgba(33, 150, 243, 0.2);
}

.icon-circle.leadership-icon {
  background: rgba(166, 204, 255, 1);
}

.icon-circle.future-success-icon {
  background: rgba(235, 178, 223, 1);
}

.mi-framework-section.custom-bullet-list {
  list-style-type: none;
  padding-left: 0;
}

.mi-framework-section .custom-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.mi-framework-section .custom-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 18px;
  background-image: url('../images/small-blue-tick.png');
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {

  .mi-framework-section,
  .mi-unique-section,
  .mi-matters-section {
    padding: 50px 0;
  }

  .mi-unique-section-content {
    padding: 11px;
  }

  .menu-link {
    font-size: 16px;
  }



}


/** multiple intelligences page end ***/

#staticDemo {
  z-index: 99999 !important;
}

#videoModal {
  z-index: 999999 !important;
}

/* Back button outline and hover/focus styles */
.back-btn {
  background: transparent;
  border: none;
  color: #3f37c9;
  font-weight: 600;
  padding: 0;
  margin-right: 12px;
  cursor: pointer;
}

.back-btn:hover,
.back-btn:focus,
.back-btn:active {
  outline: 2px solid #cfcfcf;
  outline-offset: 2px;
  box-shadow: none;
}

/* Prefer focus-visible for keyboard users */
:focus-visible {
  outline: 2px solid #cfcfcf;
  outline-offset: 2px;
}


.radial-child-node.radial-node-no-link text {
  text-shadow: inherit !important;
}