/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


/* Typography */
/*----------------------------------------------*/

h2,
.h2 {
  font-size: 2em;
  line-height: 1.4;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 1.1em;
  line-height: 1.4;
}

h1 a,
h2 a,
h3 a,
h4 a {
  font-weight: inherit;
  color: inherit;
}

p {
  font-family: var(--body-font);
  font-size: 1.8rem;
  line-height: 1.7;
}

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

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
html {
  font-size: 62.5%;
}

/*  Default Style */
body {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #ffffff;
  --primary-color: #c9a488;
  --dark-color: #000;
  --light-color: #fff;
  --primary-light-color: #f5f1ee;
  --heading-font: "Oswald", Georgia, serif;
  --header-height: 100px;
  --header-height-min: 80px;
  /* Fonts */
  --body-font: "Roboto", sans-serif;
  --heading-font: "Oswald", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
::selection {
  background: var(--primary-light-color);
  color: var(--dark-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary-light-color);
  color: var(--dark-color);
  text-shadow: none;
}
a {
  text-decoration: none;
}

:before,
:after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.containers {
  max-width: 94%;
  margin: auto;
}


.box {
  display: flex;
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-item-center {
  align-items: center;
}

.text-primary {
  color: var(--primary-color) !important;
}


header,
section,
footer {
  display: block;
  width: 100%;
}

/*--- Section And Elements Title
  -----------------------------------------------*/

.section-title {
  position: relative;
  font-size: 4rem;
  font-weight: 300;
  --heading-font: "Oswald", Georgia, serif;
  margin-bottom: 5rem;
}

/**********************************/
/* HEADET SECTION */
/**********************************/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.header.fixed {
  transition: all 0.5s ease;
  background-color: var(--light-color);
  box-shadow: 0 0 8px #cccccc;
}

.header .logo {
    padding: 0 1.5rem;
    width: 200px;
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
}
header .logowhite{
  display: inline-block;
}
header .logoblack{
  /* display: none; */
  /* visibility: hidden; */
}
.header.fixed .logoblack{
  /* display: block; */
  /* visibility: visible; */
  
}
.header.fixed .logowhite{
  display: none;
  visibility: hidden;
}
.header .logo img {
  width: 15rem;
}
.header .hamburger-btn {
  height: 34px;
  width: 40px;
  border-radius: 3px;
  border: 1px solid var(--light-color);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  display: none;
}

.header.fixed .hamburger-btn {
  border-color: #000000;
  background-color: #000000;
}

.header .hamburger-btn span {
  display: block;
  height: 1px;
  width: 16px;
  background-color: var(--light-color);
  position: relative;
  transition: all 0.5s ease;
}


.header .hamburger-btn span:before,
.header .hamburger-btn span:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  right: 0;
  background-color: var(--light-color);
}

.header .hamburger-btn span:before {
  top: -6px;
}

.header .hamburger-btn span:after {
  top: 6px;
}

.header .nav {
  padding: 0 15px;
}

.header .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav ul li {
  display: inline-block;
  margin-left: 2rem;
}

.header .nav ul li a {
  display: block;
  color: var(--dark-color);
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.5s ease-in;
}
.header .nav ul li a,
.header .nav ul li a:after,
.header .nav ul li a:before {
  transition: all .5s;
}
/* stroke */
.header .nav ul li a {
  position: relative;
}
.header .nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #c9a488;
  height: 1px;
}
.header .nav ul li a:hover:after {
  width: 100%;
}

.header .button a {
  padding: .7rem 3rem;
  border-radius: 3rem;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #c9a488;
  color: var(--dark-color);
}
.header.fixed .button a {
  color: var(--dark-color);
  background: transparent;
}
.header.fixed .nav ul li a {
  color: #555555;
}

/**********************************/
/* HOME SECTION */
/**********************************/
.home-section {
  min-height: 100vh;
  position: relative;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/DSC01539.JPG); */
  background-position: center center;
  background-size: cover;
}
.classes-text{
  color: var(--light-color);
}
.home-section .hero-text{
  margin-top: 17rem;
  padding:  7rem;
  color: var(--dark-color);
}
.home-section .hero-text a{
  font-size: 1.5rem;
  border: 1px solid #c9a488;
  background-color: #fffcf8;
  color: black;
  margin-top: 20px;
}
.home-section .hero-text small{
  border-color: #c9a488 !important;
}
.home-section .hero-text h1{
  font-family: 'Playball', cursive !important;
  font-size: 7rem;
  font-weight: 500;
}
.home-section .banner-image{
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-section .banner-image img{
  max-width: 90%;
  margin-top: 18rem;
  margin-right: 10rem;
}

.home-section .classes-students-imgs {
  display: flex;
  padding: 2rem;
  align-items: center;
  padding-left: 7rem;
  margin-top: -8rem;
}
.home-section .student-img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #f6e9ed;
}

.home-section .student-img:last-child {
  margin-right: 0;
}

.home-section .classes-text {
  margin-left: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #000000;
}
.home-section .classes-text span {
  align-self: center;
  color: #c9a488;
  font-weight: 700;
}
.hero-cta .button{
  padding: .7rem 3rem;
  margin-right: 10px;
  border-radius: 3rem;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #c9a488;
  color: var(--dark-color);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: box-shadow 0.16s ease;
}
.hero-cta .play-icon{
  margin: 0 5px;
  color: var( --primary-color);
}

/**********************************/
/* ABOUT-US SECTION */
/**********************************/
.about-us .Click-here{
  padding:  70px;
  font-size: 1.5rem;
  border: 1px solid #c9a488;
  background-color: #fffcf8;
  color: black;
  margin-top: 20px;
}
.about-img{
  border-radius: 2rem;
  /* margin-right: 1rem; */
  max-width: 90%;
}

/**********************************/
/* EVENT SECTION */
/**********************************/
.event-section ul li a{
  padding: 3rem;
}
.event-section iframe{
  width: 33rem;
  height: 23rem;
}
.tab-content iframe
{
  border-radius: 20px;
}

.event-section small{
  border: 1px solid #c9a488;
}
.event-section .text-center a{
border: 1px solid #c9a488 !important;
}


/**********************************/
/* CLASSES SECTION */
/**********************************/

.classes-section {
  padding-bottom: 5rem;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.class-card {
  border-radius: 9px;
  box-shadow: 0 2.4rem 3.6rem rgba(0, 0, 0, 0.12);
  overflow: hidden;

  transition: transform 0.5s;
}

.class-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 4.8rem rgba(0, 0, 0, 0.1);
}

.class-img {
  width: 100%;
}

.classes-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.types-box {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.students-type {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
}

.adults {
  background-color: #f7e658;
}

.teenagers {
  background-color: #f7aace;
}

.children {
  background-color: #a1e5f2;
}

.classes-name {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3.2rem;
}

.class-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.class-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.classes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.classes-type {
  font-size: 1.8rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.type-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--primary-color);
}

.see-all-box {
  display: flex;
  justify-content: center;
}

.see-all-link:link,
.see-all-link:visited {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--primary-color);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;

  transition: all 0.3s;
}

.see-all-link:hover {
  border-bottom: 1px solid transparent;
}

.see-all-link:active {
  box-shadow: 0 0 0 0.8rem #d38fa6;
}

/**********************************/
/* SOCIAL EVENTS AND SECTION */
/**********************************/

.testimonials-section {
  background-color: #e9dacf;
  display: grid;
  grid-template-columns: 55fr 45fr;
  justify-content: center;
  align-items: center;
}
.testimonials-section iframe {
  border-radius: 10px;
  width: 60rem;
  height: 37rem;
  margin-left: 3rem;
}
.testimonials-section .youtube-video {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials-container {
  display: block;
  padding: 2rem 6rem;
}

.testimonials-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem 3rem;
}

.testimonial-img {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 100px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #686868;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.6rem;
  gap: 1.6rem;
}

.gallery-img img {
  display: block;
  transition: all 0.4s;
}

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

.gallery-img {
  overflow: hidden;
}

/**********************************/
/* Tariner's Section */
/**********************************/

.people-section {
  padding: 8rem 0rem;
  background-color: #f3f2f1;
}

.people-section .people-item {
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.people-section .people-item-inner {
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
}

.people-section .people-item-inner img {
  min-width: 100%;
  object-fit: cover;
  box-shadow: 0 0 10px #cccccc;
  margin-top: -4rem;
  transition: all 0.5s ease;
}

.people-section .people-item-inner:hover img {
  transform: scale(0.95);
}

.people-section .people-item-inner h4 {
  font-size: 1.6rem;
  color: #000000;
  font-weight: 500;
  margin: 20px 0 5px;
  text-transform: capitalize;
}

.people-section .people-item-inner p {
  font-size: 1.6rem;
  color: #555555;
  font-weight: 500;
  margin: 0 0 1rem;
  text-transform: capitalize;
}

.people-section .people-item-inner .social-links {
  text-align: center;
  padding: 1rem 0;
}

.people-section .people-item-inner .social-links a {
  display: inline-block;
  margin: 0 2.rem;
}

.people-section .people-item-inner .social-links a i {
  height: 3.5rem;
  width: 3.5rem;
  line-height: 3rem;
  border: 2px solid #e9dacf;
  text-align: center;
  display: block;
  border-radius: 50%;
  transition: 0.5s ease;
  color: var(--primary-color) !important;
  font-size: 2rem;
}

.people-section .people-item-inner .social-links a:hover i {
  color: #f3f2f1;
}

/**********************************/
/*  Testimonial SECTION */
/**********************************/

.swiper-slide {
  text-align: center;
  font-size: 1.8rem;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 5rem;
}

.swiper-client-msg {
  padding: 5rem 8rem;
  background-color: var(--third);
  border-radius: 10px;
  text-align: left;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}
.section-testimonial .swiper-slide{
 padding: 1rem;
}
.swiper-client-msg::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  border: 5rem solid var(--third);
  border-color: transparent;
  border-top-color: var(--third);
}

.swiper-client-msg p::before {
  content: "\f10d";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e9dacf;
}

.swiper-client-msg p::after {
  content: "\f10e";
  position: absolute;
  bottom: 0%;
  right: 5%;
  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e9dacf;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-client-data {
  display: flex;
  align-items: center;
  justify-items: start;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 3.2rem;
}
.swiper-client-data p{
    color: var(--para);
    line-height: 1.8rem;
    font-size: 1.8rem;
    word-spacing: 0.1rem;
}
.swiper-client-data figure{
  display: inline-block;
}
.swiper-client-data img {
  max-width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 0.5rem solid #e9dacf;
}

.swiper-client-data p:first-child {
  font-weight: bold;
  color: var(--heading);
}



/**********************************/
/* WEDDING POPCORN SECTION */
/**********************************/

.gallery-section {
  padding: 3rem 0 0px;
  margin-bottom: 10rem;
}
.section-header{
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .gallery-item {
  padding: 1.5rem;
}
.wedding-popcorn__logo {
  width: 20rem;
  margin-bottom: 3rem;
}
.wedding-popcorn__logo img {
  width: 100%;
}

.gallery-section .gallery-item-inner {
  overflow: hidden;
  cursor: pointer;
}

.gallery-section .gallery-item-inner img {
  width: 100%;
  height: 23rem;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 0.5s ease;
  border-radius: 2rem;
}

.gallery-section .gallery-item-inner:hover img {
  transform: scale(1);
}

/* gallery popup */
.gallery-popup {
  cursor: zoom-out;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1099;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.gallery-popup.open {
  display: flex;
}

.gallery-popup img.gp-img {
  width: auto;
  height: auto;
  max-width: 100%;
  padding: 4rem 0;
}

.gallery-popup .gp-container {
  position: relative;
  cursor: auto;
}

.gallery-popup .gp-counter {
  display: block;
  height: 4rem;
  color: #ffffff;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 4rem;
  font-weight: bold;
  cursor: auto;
}

.gallery-popup .gp-close {
  display: block;
  height: 4rem;
  width: 4rem;
  color: #ffffff;
  font-size: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 3.8rem;
  overflow: hidden;
  cursor: zoom-out;
}

.gallery-popup .gp-controls {
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
  height: 4rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.gallery-popup .gp-controls .prev,
.gallery-popup .gp-controls .next {
  display: inline-block;
  margin: 0 1rem;
}

.gallery-popup .gp-controls .prev i,
.gallery-popup .gp-controls .next i {
  color: #ffffff;
  font-size: 2rem;
  display: block;
  height: 3rem;
  width: 3rem;
  text-align: center;
  line-height: 3rem;
  cursor: pointer;
  border-radius: .2rem;
  transition: all 0.5s ease;
}

.gallery-popup .gp-controls .prev:hover i,
.gallery-popup .gp-controls .next:hover i {
  background-color: rgba(0, 0, 0, 0.8); 
}
.swiper-button-prev:after,.swiper-button-next:after{
  color: #ffffff !important;
} 
.swiper-button-prev, .swiper-button-next{
  width: 5rem !important;
}
.mySwiper [class^="swiper-button-"]::after,.mySwiper1 [class^="swiper-button-"]::after{
  font-size: 3rem;
}
.swiper-pagination-bullet{
background-color: #c9a488 !important;
}
.mySwiper1 .swiper-pagination-bullet{
  background-color: #c9a488 !important;
  }
  

/**********************************/
/* Footer Section */
/**********************************/
.footer{
  background-color: #e9dacf;
}
.footer .footer-logo img{
    width: 50%;
    margin-top: 5px;
    margin-bottom: 20px;
}
.footer .footer-text p{
  font-size: 1.5rem;
  color: #504e4e;
  padding: -10px 20px;
}

.footer .footer-text{
  font-size: 1.5rem;
  color: #504e4e;
  margin: .3rem 0;
}
.footer .fotter-title{
  font-weight: 900 !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 2rem !important;
}
.footer .text-body {
  color: #504e4e !important;
  margin-bottom: 0;
}
.footer
 .fa,.fas {
  font-weight: 900;
}
.footer .phone-icon{
  transform: rotate(90deg);
}
.footer .container{
  max-width: 100% !important; 
  padding: 0 5rem;
}
.footer .footer-item h1{
  font-size: 3.5rem !important;
  font-weight: 400 !important;
  font-family: 'Playball', cursive !important;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 5.125rem;
  height: 5.125rem;
  border: 0.125rem solid transparent;
  padding: 1.2rem;
  text-align: center;
  color: #fefefe;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 50%;
  transition: all 0.5s ease;
  margin-right: 2rem;
  margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover,
.rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fa-facebook-f,
.fa-youtube,
.fa-instagram,
.fa-whatsapp {
  font-size: 2.5rem;
}
.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}
.rounded-social-buttons .social-button.facebook:hover,
.rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}
.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}
.rounded-social-buttons .social-button.youtube:hover,
.rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}
.rounded-social-buttons .social-button.whatsapp {
  background: #25D366 ;
}
.rounded-social-buttons .social-button.whatsapp:hover,
.rounded-social-buttons .social-button.whatsapp:focus {
  color: #25D366;
  background: #fefefe;
  border-color: #25D366;
}
.rounded-social-buttons .social-button.instagram {
  background: #F46899;
}
.rounded-social-buttons .social-button.instagram:hover,
.rounded-social-buttons .social-button.instagram:focus {
  color: #F46899;
  background: #fefefe;
  border-color: #F46899;
}

.form-popup-bg {
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}
.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.form-container {
  background-color: #2d3638;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  position:relative;
  padding: 4rem;
  color: #fff;
}
.close-button {
  background:none;
  color: #fff;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none
}
.close-button:hover {
  background: var(--light-color);
  border-radius: 50%;
  color: #000;
}
.form-popup-bg:before{
  content:'';
  background-color: #fff;
  opacity: .25;
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
form .form-group{
  display: block !important;
}
form .form-group input{
  max-width: 90% !important;
}
.form-container form .submit-btn{
  background-color: #ffffff;
  width: 10rem;
  padding: .5rem;
  border-radius: .5rem;
}
