/*-------------------- Main Layout --------------------*/
main {
  min-height: 100vh;
}

/*-------------------- Intro Section --------------------*/
.intro {
  max-width: 100%;
  min-height: 86vh;
  /* overflow: hidden; */
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
  opacity: 0.8;
}

.introtxt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-60%);
}

.introtxt h3 {
  color: rgba(var(--secondary-color), 1);
  font-size: 20px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  line-height: 25px;
}

.introtxt h1 {
  color: rgba(var(--primary-color), 1);
  font-size: 140px;
  line-height: 98px;
  font-weight: 1000;
  margin-bottom: 10px;
  font-family: "Ancizar Sans", sans-serif;
  text-align: left;
}

.introtxt p {
  color: rgba(var(--secondary-color));
  font-size: 17px;
  text-align: left;
  margin-left: 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins", sans-serif;
  width: 30vw;
}

.introtxt .button1 a {
  background: rgba(var(--primary-color), 1);
  color: rgba(var(--secondary-color));
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  line-height: 70px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  /* Prevent text wrapping */
  min-width: 200px;
  /* Ensure minimum width for the button */
  text-align: center;
  /* Ensure the text aligns properly */
}

.introtxt .button1 a:hover {
  background-color: rgba(var(--secondary-color));
  color: rgba(var(--primary-color), 1);
  font-size: 20px;
}

/*-------------------- SVG Transitions --------------------*/
.custom-shape-divider-bottom-1753270822 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1753270822 svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 31px;
}

.custom-shape-divider-bottom-1753270822 .shape-fill {
  fill: rgba(var(--primary-color));
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1753270822 svg {
    width: calc(140% + 1.3px);
    height: 54px;
  }
}

/*-------------------- Slider --------------------*/

.carousel1 {
  background-color: #800000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  font-family: "DM Sans", sans-serif;
  overflow: hidden;
  /* make sure .list and .swipe are positioned relative to this */
}

.carousel1 .list {
  /* height: 200px; */
  width: 100%;
  max-width: 600px;
  position: relative;
  aspect-ratio: 16/16;
  /* top: 0;
  left: 50%;
  transform: translate(-50%, 30%); */
}

.carousel1 .list li {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  opacity: 0.25;
  transition: transform 1s, opacity 1s;
  list-style: none;
}

.carousel1 .list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* Position states */
.carousel1 .list .act {
  opacity: 1;
  z-index: 2;
  transform: translateX(-50%) scale(1);
}

.carousel1 .list .prev,
.carousel1 .list .next {
  cursor: pointer;
}

.carousel1 .list .prev {
  transform: translateX(-580px) scale(0.85);
}

.carousel1 .list .next {
  transform: translateX(-20px) scale(0.85);
}

/* Off-screen (hidden) cards */
.carousel1 .list .hide {
  transform: translateX(-580px) scale(0.75);
}

.carousel1 .list .new-next {
  transform: translateX(480px) scale(0.75);
}

.carousel1 .list .hide,
.carousel1 .list .new-next {
  opacity: 0;
}

/* Swipe area (invisible but interactive) */
.swipe {
  width: 300px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/*-------------------- Explore Section --------------------*/
.explore {
  position: relative;
  background-image: url("/assets/img/Home/Background-imgs/BG1.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 17px;
  padding-top: 65px;
  padding-bottom: 160px;
  z-index: 1;
}

.explore::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(128, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  /* Color filter with low opacity */
  opacity: 0.8;
  /* Apply opacity to the background */
  z-index: -1;
  /* Ensure the background is behind the content */
}

.explore .collumn_explore {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.explore .header_explore {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
  background: rgba(31, 4, 4, 0.5);
  padding: 4px;
}

.explore .header_explore h1 {
  font-size: 2.3rem;
  color: rgba(var(--gold-color), 1);
  font-weight: 700;
}

.explore .header_explore p {
  font-size: 1.2rem;
  color: rgba(var(--text-white), 1);
  max-width: 600px;
  margin: 0 auto;
}

.explore .row_explore {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
}

.explore .container {
  background-color: rgba(var(--primary-color), 0.8);
  width: 100%;
  max-width: 400px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  margin: 0px;
}

.explore .container:hover {
  transform: scale(1.05);
}

.explore .container>.imgcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.2rem;
  height: 300px;
  overflow: hidden;
}

.explore .container>.imgcontainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore .container h1 {
  font-size: 1.6rem;
  text-align: center;
  color: rgba(var(--gold-color), 1);
  margin: 20px 10px 0;
  font-weight: 600;
}

.explore .container p {
  font-size: 1rem;
  text-align: center;
  color: white;
  padding: 0 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/*------------- News & Events -------------*/
.newsEvents {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask5430%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient5431%26quot%3b)'%3e%3c/rect%3e%3cpath d='M0 0L395.23 0L0 231.38z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M0 231.38L395.23 0L831.6500000000001 0L0 382.40999999999997z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M0 382.40999999999997L831.6500000000001 0L1040.73 0L0 451.46999999999997z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M0 451.46999999999997L1040.73 0L1156.8700000000001 0L0 485.01z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M1440 560L1121.28 560L1440 283.78z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M1440 283.78L1121.28 560L551.92 560L1440 162.34999999999997z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M1440 162.34999999999997L551.92 560L433.79999999999995 560L1440 161.37999999999997z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M1440 161.37999999999994L433.79999999999995 560L379.99999999999994 560L1440 127.22999999999993z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask5430'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='50%25' y1='100%25' x2='50%25' y2='0%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient5431'%3e%3cstop stop-color='rgba(41%2c 0%2c 0%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(96%2c 0%2c 0%2c 1)' offset='0.15'%3e%3c/stop%3e%3cstop stop-color='rgba(119%2c 21%2c 21%2c 1)' offset='0.33'%3e%3c/stop%3e%3cstop stop-color='rgba(149%2c 10%2c 10%2c 1)' offset='0.52'%3e%3c/stop%3e%3cstop stop-color='rgba(110%2c 0%2c 0%2c 1)' offset='0.69'%3e%3c/stop%3e%3cstop stop-color='rgba(107%2c 11%2c 11%2c 1)' offset='0.87'%3e%3c/stop%3e%3cstop stop-color='rgba(54%2c 6%2c 6%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
}

.news-image {
  margin-top: 4.5rem;
  object-fit: cover;
  width: 100%;
  height: 85%;
}

.see-more-link {
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more-link:hover {
  background-color: #fff;
  color: #000;
}

/*---------------- Basic Ed.----------------*/
.bgimgBE1 {
  background: url("/assets/img/backgrounds/bg2.jpg") no-repeat center center/cover;
  height: 100%;
  position: absolute;
  /* Positioned at the top of the section */
  width: 100%;
  z-index: -1;
  /* Place it behind the overlay */
  opacity: 0.7;
  /* You can adjust this value based on contrast */
}

.container-box {
  text-align: center;
  padding: 20px;
  background-color: #eee;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.container-box img {
  max-width: 100%;
  height: auto;
}

.container-box:hover {
  transform: translateY(-10px);
  background-color: rgba(var(--primary-color), 0.85);
  color: rgba(var(--text-white), 1);
}

/*----------------College Dep.----------------*/
.bgimgC1 {
  background: url(/assets/img/backgrounds/bg1.JPG) no-repeat center 27% / 2200px;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0.7;
}

.programs-section {
  position: relative;
  overflow: hidden;
}

.blurred-text-container {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.background-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/logo/Logo.png") center center no-repeat fixed;
  background-size: 400px;
  opacity: 0.6;
  z-index: -1;
}

.program-container {
  background-color: rgba(128, 0, 0, 0.8);
  aspect-ratio: 9 / 14;
  border-radius: 10px;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-container:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.program-container img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.program-content {
  flex-grow: 1;
}

.btn-custom {
  background-color: #a05252;
  color: #fff;
  border: none;
}

.btn-custom:hover {
  background-color: #8b3e3e;
  color: #fff;
}

.full-width-section {
  display: none;
  background-color: rgba(var(--primary-color), 0.4);
  padding: 2rem;
  position: relative;
  color: #501f1f;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #501f1f;
}

.subjects {
  background: #eeeeeecb;
  width: 300px;
  padding-top: 12px;
  border-radius: 5px;
  margin-top: 3px;
}

/* -------------------- Admission -------------------- */
.bgimgAd1 {
  background: rgba(var(--primary-color), 1);
  height: 25vh;
  display: flex;
  align-items: center;
}

.dropdowntabs .section-header {
  width: 100%;
  max-width: 100%;
  margin: 0.3rem auto 3px auto;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: rgba(var(--primary-color), 1);
  color: white;
  border-radius: 0;
}

.collapse-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  background: #bdbdbd;
  overflow: hidden;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(-5px);
}

.collapse.show.collapse-content {
  opacity: 1;
  transform: translateY(0);
}

.arrow {
  width: 2.25rem;
  height: 2.25rem;
  transition: transform 0.35s ease;
  margin-left: 0.5rem;
  color: #fff;
}

.arrow-rotated {
  transform: rotate(180deg);
}

.collapse-content p {
  text-align: left;
  margin: 0;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdowntabs h2 {
  margin: 0;
  font-size: 1.25rem;
  display: inline;
}

.custom-header h1,
.custom-header p {
  color: #fff;
}

/* ------------------- Contact Us ------------------- */

main.Contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
}

main.Contact-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  width: 800px;
  gap: 100px;
}

.contacttxt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  gap: 20px;
}

.map {
  width: 100%;
  max-width: 1900px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contacttxt h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contacttxt .contact p {
  margin: 5px 0;
}

/* ------------------- about us ------------------- */


.aboutus .aboutus-container {
  width: 100%;
  height: 45vh;
  background-image: url("/assets/img/Home/Background-imgs/BG1.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
}

.aboutus .aboutus-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.aboutus .aboutus-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #f0f0f0;
  padding: 0 20px;
}

.aboutus .aboutus-dropdown.open {
  max-height: 100vh;
  padding: 20px;
}

.aboutus button.learn-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  z-index: 1;
  position: relative;
}

.aboutus .button-text {
  background: #282936;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.aboutus .learn-more:hover .button-text {
  background: #1e1f26;
}

.aboutus .arrow-icon {
  margin-top: 10px;
  width: 16px;
  height: 16px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.aboutus .arrow-up {
  transform: rotate(-135deg);
}

.aboutus .img-history {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

.aboutus .img-history .col-12 {
  display: inline-block;
  float: none;
  white-space: normal;
  vertical-align: top;
}

@media (max-width: 768px) {
  .aboutus .img-history .row {
    flex-wrap: nowrap;
    gap: 10px;
  }
}


/*---- message of president ----*/
.message-content {
  max-height: 20rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.message-content.visible {
  opacity: 1;
}

.message-content.expanded {
  max-height: none;
}

.message-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.message-content.expanded::after {
  opacity: 0;
}

.see-more {
  color: blue;
  cursor: pointer;
  margin-top: 1em;
  display: block;
  text-align: center;
}

.sticky-parent {
  position: relative;
}

.sticky-img {
  position: sticky;
  top: 2rem;
}

.left-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.right-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.right-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

object {
  width: 200px;
  height: auto;
}

/* ------------- School description ------------- */
.pSize {
  width: 85%;
}

/* ------------------- Gallery ------------------- */

.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  margin: auto;
  max-height: 600px;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: white;
}

.fade-section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade-section.active {
  display: block;
  opacity: 1;
}

.btn-modern {
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, #800000, #b30000);
  color: white;
  font-weight: 500;
  font-size: 1em;
  transition: all 0.3s ease;
}

.btn-modern.active {
  background: none;
  font-size: 1.4em;
  color: black !important;
}

.btn-modern:hover {
  transform: translateY(-2px);
}

#who-we-are {
  background: #eee;
}

/* ------------------- facilities ------------------- */

.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.gallery-title {
  text-align: center;
  margin-top: 30px;
  font-size: 2rem;
  font-weight: bold;
}

.swiper,
.swiper-wrapper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hymn {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask3342%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient3343%26quot%3b)'%3e%3c/rect%3e%3cpath d='M0 0L512.46 0L0 175.16z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M0 175.16L512.46 0L894.0600000000001 0L0 209.45999999999998z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M0 209.45999999999998L894.0600000000001 0L1200.8400000000001 0L0 415.66999999999996z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M0 415.66999999999996L1200.8400000000001 0L1283.71 0L0 482.15999999999997z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M1440 560L1310.93 560L1440 384.02z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M1440 384.02L1310.93 560L1186.75 560L1440 306.46z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M1440 306.46000000000004L1186.75 560L632.3 560L1440 294.67z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M1440 294.67L632.3 560L251.32999999999993 560L1440 221.48000000000002z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask3342'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='84.72%25' y1='139.29%25' x2='15.28%25' y2='-39.29%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient3343'%3e%3cstop stop-color='rgba(87%2c 30%2c 30%2c 1)' offset='0.05'%3e%3c/stop%3e%3cstop stop-color='rgba(128%2c 48%2c 48%2c 1)' offset='0.13'%3e%3c/stop%3e%3cstop stop-color='rgba(172%2c 55%2c 55%2c 1)' offset='0.17'%3e%3c/stop%3e%3cstop stop-color='rgba(200%2c 162%2c 162%2c 1)' offset='0.38'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='0.64'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}