/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Elsie:wght@400;900&display=swap");

/* Local Font */

:root {
  --white: #fff;
  --black: #000;
  --primary: #3dd1df;
  --secondary: #333333; 
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

section {
  position: relative;
}

h1,
h2,
h3 {
  font-family: "Elsie", serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--primary);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--white);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 1.0625rem 2.12em;
  border-radius: 50px;
  line-height: normal;
  letter-spacing: 2px;
  border: 2px solid var(--primary);
  min-width: 240px;
  text-align: center;
}

.themeBtn:hover {
  background: var(--black);
  color: var(--white) !important;
  border-color: var(--black);
}

.themeBtn1 {
  background: transparent;
  border-color: var(--white);
}

/* !GLOBAL CSS */

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding-top: 1.5625rem;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover,
.login:hover {
  color: var(--primary);
}

.form-inline {
  margin-left: 2.25rem;
  gap: 2.125rem;
}

.login {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}

.login i {
  font-size: 1.375rem;
  margin-right: 0.625rem;
}

.form-inline ul {
  display: flex;
  gap: 8px;
}

.form-inline ul li a {
  border: 2px solid var(--white);
  width: 42px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: var(--white);
}

.form-inline ul li a:hover {
  background: var(--white);
  color: var(--black);
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 1045px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.homeSlider .slide-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 40%;
  /*background: #1c2b34;*/
}

.slideOne h1 {
  color: var(--white);
  font-size: 5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.slideOne h1 span {
  font-weight: 400;
  position: relative;
}

.slideOne h1 span:before {
  content: "";
  position: absolute;
  background: #fcc3a3;
  width: 198px;
  height: 75px;
  border-radius: 7px;
  z-index: -1;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -1rem;
}

.slideOne h2 {
  color: var(--white);
  font-size: 7.5rem;
  text-transform: uppercase;
  font-weight: 900;
}

.slideOne h2 span {
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}

.slideOne h2 span:before {
  content: "";
  position: absolute;
  background: #c76b98;
  width: 258px;
  height: 101px;
  border-radius: 7px;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -0.5rem;
}

.slideOne p {
  font-size: 1.3125rem;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.slideOne .btn-group {
  gap: 1.375rem;
}

/* !MAIN HERO SLIDER CSS */

/* About Sec Css Start */

.aboutSec {
  background: url(../images/aboutBg.webp) center/cover;
  padding: 7.1875rem 0 14.375rem 0;
}

.aboutContent span {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.75rem;
}

.aboutContent span small {
  background: linear-gradient(45deg, black, transparent);
  width: 150px;
  height: 1px;
}

.secHeading {
  color: #262b2d;
  font-size: 4.375rem;
  line-height: 1.07;
  text-transform: capitalize;
}

.aboutContent p {
  color: #686868;
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 2;
  width: 94%;
  margin: 1rem 0 2rem 0;
}

.aboutContent .themeBtn1 {
  color: #262b2d;
  border-color: #262b2d;
}

.aboutImages {
  text-align: right;
  position: relative;
}

.aboutImages > img {
  border-radius: 275px;
}

.aboutImages figure img {
  position: absolute;
  left: 1rem;
  bottom: 4rem;
  border-radius: 93px 93px 0 88px;
}

.aboutImages:before,
.aboutImages:after {
  content: "";
  position: absolute;
  background: #f09f9c;
  width: 75px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100%;
  top: -1rem;
  left: 4rem;
  animation: pulse 1s infinite ease-in-out alternate;
}

.aboutImages:after {
  width: 115px;
  background: #c76b98;
  left: inherit;
  top: 2rem;
  right: 0rem;
  z-index: -1;
}

.aboutImages figure {
  position: relative;
}

.aboutImages figure:before {
  background: #4c1527;
  content: "";
  position: absolute;
  width: 23px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100%;
  bottom: 2rem;
  right: 0;
  animation: pulse 15s infinite ease-in-out alternate;
}

@keyframes pulse {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.2);
  }
}

/* About Sec Css End */

/* Service Sec Css Start */

.serviceSec {
  padding: 3.4375rem 1.875rem 8rem 1.875rem;
}

.serviceHeading {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5.625rem;
  margin-bottom: 3.75rem;
}

.serviceHeading h2,
.eventHeading h2 {
  line-height: 0.8;
}

.serviceHeading a,
.eventHeading a,
.viewAll a {
  color: #262b2d;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: 2px solid #262b2d;
}

.serviceWrap figure img {
  border-radius: 2.625rem;
}

.serviceContent h3 {
  text-transform: capitalize;
  font-size: 3rem;
  color: #262b2d;
  margin: 1.5rem 0;
}

/* Service Sec Css End */

/* Marque Sec Css Start */

.marqueWrap {
  display: flex;
  justify-content: space-between;
  background: #c76b98;
  padding: 2.1875rem 1rem;
  align-items: baseline;
}

.marqueWrap li {
  display: flex;
  gap: 3.5rem;
}

.marqueWrap li span {
  color: var(--white);
  font-size: 1.5rem;
}

/* Marque Sec Css End */

/* Event Sec Css Start */

.eventSec {
  background: #fff3ed;
  padding: 5.625rem 0 7.5rem 0;
}

.eventHeading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3.75rem;
}

.eventWraps figure {
  overflow: hidden;
  border-radius: 1.25rem;
  cursor: pointer;
}

.eventWraps figure img {
  transition: 0.8s ease;
}

.eventWraps figure:hover img {
  transform: scale(1.1);
}

.eventContent {
  margin-top: 1.2rem;
}

.eventContent h3 {
  text-transform: capitalize;
  font-size: 1.75rem;
  color: #262b2d;
}

.eventContent p {
  color: #505050;
  line-height: 1.625;
  text-transform: capitalize;
  margin-top: 0.875rem;
}

.eventContent a {
  color: #262b2d;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: 2px solid #262b2d;
}

.eventImage {
  position: absolute;
  bottom: 0;
  right: 2rem;
}

/* Event Sec Css End */

/* Testimonial Sec Css Start */

.testimonialSec {
  padding: 5rem 0;
}
.testimonialSec .secHeading {
  margin-bottom: 2rem;
}
.testimonialBox {
  border: 1px solid #8b8b8b;
  padding: 2.5rem 2.5rem 1.375rem 2.5rem;
}

.testimonialBox ul {
  display: flex;
}

.testimonialBox ul li i {
  color: #444444;
  font-size: 0.75rem;
}

.testimonialBox p {
  font-size: 0.9375rem;
  color: var(--black);
  font-style: italic;
  line-height: 1.73;
  margin: 0.75rem 0;
  font-weight: 500;
}

.testimonialBox h4 {
  color: var(--black);
  font-size: 1rem;
  font-weight: bold;
  margin: 0.75rem 0 0 0;
}

.testimonialBox span {
  color: #999999;
  font-size: 0.875rem;
  display: none;
}

.testimonialSlider {
  padding: 2.5rem 0 5rem 0;
}

.testimonialSlider .swiper-pagination,
.videoSlider .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.testimonialSlider .swiper-pagination-bullet,
.videoSlider .swiper-pagination-bullet {
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  opacity: 70%;
  background: #8b8787;
  outline: 1px solid transparent;
  outline-offset: 3px;
  margin: 0 0 !important;
  transition: 0.5s ease;
}

.testimonialSlider .swiper-pagination-bullet-active,
.videoSlider .swiper-pagination-bullet-active {
  background: var(--black);
  opacity: 100%;
  outline-color: var(--black);
}

.testimonialImage {
  position: absolute;
  bottom: -6rem;
  z-index: 1;
}

/* Testimonial Sec Css End */

/* Gallery Sec Css Start */

.gallerySec {
  background: #f3feff;
  padding: 3.125rem 1.875rem 4.375rem 1.875rem;
}

.galleryWrap {
  overflow: hidden;
  border-radius: 0.625rem;
  position: relative;
  cursor: pointer;
}

.galleryContent {
  position: absolute;
  inset: 0;
  background: rgb(61 209 223 / 77%);
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: 0.8s ease;
}

.galleryWrap:hover .galleryContent {
  transform: scale(1);
}

.galleryContent a {
  color: var(--white);
  font-size: 2.5rem;
}

.galleryFlex {
  display: flex;
  justify-content: space-between;
}

.galleryRow {
  display: flex;
  justify-content: space-between;
  margin-top: 1.125rem;
}

.galleryOne .galleryWrap + .galleryWrap {
  margin-top: 1.6875rem;
}

.viewAll {
  text-align: center;
  margin-top: 5rem;
}

/* Gallery Sec Css End */

/* Video Sec Css Start */

.videoSec {
  padding: 5.625rem 0 4.375rem 0;
}

.videoWraps {
  overflow: hidden;
  border-radius: 2.625rem;
  position: relative;
}

.videoWraps:before {
  content: "";
  position: absolute;
  background: var(--black);
  inset: 0;
  opacity: 22%;
}

.videoSlider {
  padding: 1.2rem 0 5rem 0;
}

.videoSec .swiper-button-next:after,
.videoSec .swiper-button-prev:after {
  display: none;
}

.videoSec .swiper-button-next,
.videoSec .swiper-button-prev {
  font-size: 3rem;
  top: 53%;
  color: var(--white);
}

.videoSec .swiper-button-prev {
  left: 20%;
}

.videoSec .swiper-button-next {
  right: 20%;
}

.videoTop {
  position: absolute;
  right: -1rem;
  top: -6rem;
  z-index: -1;
  overflow: hidden;
}

/* Video Sec Css End */

/* Footer Css Start */

footer {
  background: #270f36;
  padding-top: 5.3125rem;
}

.newsForm input {
  background: unset;
  border: unset;
  outline: unset;
  box-shadow: unset;
  color: rgb(250 250 250 / 50%);
}

.newsForm {
  border: 3px solid #cacaca;
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 1.375rem 0 3rem;
}

.newsForm input::placeholder {
  color: rgb(250 250 250 / 50%);
}

.newsForm .themeBtn {
  min-width: 167px;
  outline: unset;
}

.newsLine {
  border-bottom: 1px solid rgb(223 223 224 / 50%);
  padding-bottom: 5rem;
  margin-bottom: 3.125rem;
}

footer h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.links li a {
  color: var(--white);
  text-transform: capitalize;
}

.links li a:hover,
.contactLinks li a:hover span {
  color: var(--primary);
}

.links li + li {
  margin-top: 4px;
}

.contactLinks li a span {
  color: var(--white);
  font-weight: 500;
  text-transform: lowercase;
  margin-left: 0.625rem;
  transition: 0.5s ease;
}

.contactLinks li:nth-child(1) a span {
  font-weight: 600;
}

.contactLinks li + li {
  margin-top: 2.5rem;
}

.copyRight p {
  color: var(--white);
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.copyRight ul {
  display: flex;
  gap: 8px;
  justify-content: end;
}

.copyRight ul li a {
  border: 2px solid var(--white);
  width: 42px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: var(--white);
}

.copyRight ul li a:hover {
  background: var(--white);
  color: var(--black);
}

.copyRight {
  border-top: 1px solid rgb(223 223 224 / 50%);
  margin-top: 6.25rem;
  padding: 1.875rem 0;
}

/* Footer Css End */

/* about inner css */

/* About section css */

.slider--inner {
  width: 1920px;
  height: 700px;
}

.slideOne1 h2 {
  color: var(--white);
  font-size: 7.5rem;
  text-transform: uppercase;
  font-weight: 900;
}

.slideOne1 h2 span {
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}

.slideOne1 h2 span:before {
  content: "";
  position: absolute;
  background: #c76b98;
  width: 258px;
  height: 101px;
  border-radius: 7px;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.aboutContent2 span {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.75rem;
}

.aboutContent2 span small {
  background: linear-gradient(45deg, black, transparent);
  width: 150px;
  height: 1px;
}

.aboutContent2 p {
  color: #686868;
  font-size: 1.125rem;
  text-transform: capitalize;
  line-height: 2;
  width: 95%;
}

.aboutp p {
  color: #686868;
  font-size: 1.125rem;
  text-transform: capitalize;
  line-height: 2;
  width: 102%;
  margin: 1rem 0 2rem 0;
}

.aboutp + p {
  margin: 3rem 0 0 0;
}

/* About section css */

/* about inner css */

/* halotherapy inner */

.slideTwo h2 {
  color: var(--white);
  font-size: 7.5rem;
  text-transform: uppercase;
  font-weight: 900;
}

.slideTwo h2 span {
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}

.slideTwo h2 span:before {
  content: "";
  position: absolute;
  background: #c76b98;
  width: 258px;
  height: 101px;
  border-radius: 7px;
  z-index: -1;
  top: 50%;
  left: 0;
  bottom: 0;
  margin: auto;
}

.therapy {
  padding: 6.063rem 0;
}

.therapy-images img {
  border-radius: 25px;
}

.theraphyContent {
  background-color: #f1f1f1;
  border-radius: 25px;
}

.therapy-images,
.theraphyContent {
    margin-bottom: 35px;
  
}
.theraphyContent {
  margin-top: 150px;
  
}

.theraphyInfo {
  padding: 2.5rem;
}

.theraphyInfo h2 {
  font-size: 2.8125rem;
  text-transform: capitalize;
}

.theraphyInfo h2 span {
  display: block;
}

.theraphyInfo p {
  color: #828282;
  line-height: 1.75;
  width: 105%;
}

/* halotherapy inner */

/* event-inner */

.eventWraps {
  margin-bottom: 30px;
}

/* book&pay inner */

.bookand-pay {
  padding: 92px 0;
}

.price-card {
  border: 1px solid #9a9a9a;
  border-radius: 20px;
  margin-top: 64px;
}

.card-head {
  padding: 83px 26px 25.61px 26px;
}

.card-head h2 {
  font-size: 3.125rem;
  color: #c76b98;
  text-transform: capitalize;
}

.card-head h2 span {
  display: block;
  border-bottom: 1px solid #000;
  line-height: 1;
  padding-bottom: 21px;
}

.card-head p {
  color: #9a9a9a;
  line-height: 1.375;
  width: 90%;
  padding-top: 10px;
}

.card-list li {
  font-family: "Roboto", sans-serif;
  color: #9a9a9a;
  margin-bottom: 20px;
}

.card-list li i {
  color: #c76b98;
  margin-right: 15px;
}

.card-anchor {
  margin: 46px 0 25px 0;
  text-align: center;
}

.card-anchor a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  padding: 21px 105px;
  background-color: #f09f9c;
  border-radius: 110px;
}

/* testimonial inner */

.testimonialBox {
  margin: 0 0 24px 0;
}

/* contact inner */

.contact {
  padding: 148px 0 84px 0;
}

.contact-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dadada;
  padding: 12px 0;
  margin: 95px 0 0 0;
}

.contact-form textarea {
  width: 100%;
  height: 147px;
  border: none;
  border-bottom: 1px solid #dadada;
  margin: 60px 0 0 0;
}

.contact-btn {
  margin: 65px 0 0 0;
  text-align: center;
}

.contact-btn button {
  border: 1px solid #000;
  font-family: "Roboto", sans-serif;
  color: #000;
  padding: 24px 50px;
  font-weight: 600;
  border-radius: 67px;
}

.map iframe {
  width: 1920px;
  height: 692px;
}

.searchPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.5s ease-in-out;
  transform: translate(0, -100%) scale(0, 0);
  opacity: 0;
  z-index: 999999;
}

.searchPopup.open {
  transform: translate(0, 0) scale(1, 1);
  opacity: 1;
}

.searchPopup input[type="search"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  color: var(--white);
  background: #414141bd;
  font-size: 3.125rem;
  line-height: 65px;
  text-align: center;
  border: none;
  padding: 0 1.875rem;
  outline: none;
}

/* .searchPopup .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 61px;
	margin-left: -45px;
	background-color: limegreen;
	border: var(--black);
} */

.searchPopup .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: var(--white);
  opacity: 1;
  padding: 0.75rem 1.25rem;
  font-size: 1.6875rem;
  z-index: 9;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 1.25rem;
  margin-top: 1rem;
}

.login-info {
  width: 100%;
  height: 100%;
  background-color: #c76b98;
}
.popup-img img {
  width: 100%;
}

.login-info {
  display: block;
  place-items: center;
  padding-top: 234px;
}

.login-info h2 {
  font-size: 3.75rem;
  color: #fff;
  margin: 0;
}

.login-info p {
  font-size: 1.25rem;
  color: #fff;
  text-transform: capitalize;
}

.login-info a {
  color: #fff;
  text-transform: capitalize;
  margin-left: 5px;
}

.login-form label {
  line-height: 1;
  margin-top: 40px;
  text-transform: capitalize;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.login-form input {
  width: 490px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 16px 0 16px 16px;
  background-color: #c76b98;
}

.login-form input::placeholder {
  color: #fff;
}

.formBtn {
  margin-top: 40px;
}

.formBtn button {
  padding: 13px 223px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
}

.checkBox {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  width: 50%;
}

.checkbox-info label {
  font-family: "Roboto", sans-serif;
  color: #fff;
  padding-bottom: 15px;
  height: 24px;
  line-height: 1;
}

.info-txt a {
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.login1 {
  width: 50%;
}

.login-anchor {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.login-anchor a {
  width: 155px;
  height: 38px;
  background-color: #fff;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
