:root {
  /* Colors
  ____________________*/
  --color-primary: #25ab75;
  --color-primary-dark: #208c61;
  --color-bg-primary: #DCDCDC;
  --color-bg-secondary: #242424;
  --color-bg-footer: #151515;
  --color-white: #ffffff;
  --color-text: #676767;
  --color-border: #373737;

  /* Font & Typography
  ___________________*/
  --ff-body: "Space Grotesk", sans-serif;
  /* font sizes */
  --fs-sm: 1.4rem;
  --fs-md: 1.6rem;
  --fs-lg: 2rem;
  --fs-xl: 2.4rem;
  --fs-xxl: 3.2rem;
  --fs-biggest: clamp(3rem, 8vw, 5rem);
  /* font weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: bold;

  /* z-index
  ___________________*/
  --zindex-menu: 1000;
  /* --zindex-fixed: 1010; */

  /* With & Height 
  ------------------*/
  --width-container: 98rem;
  --height-header: 10rem;
  --height-header--scroll: 9rem;

  /* Transition and box shadow*/
  --transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 0px 4px 10px #25ab752e;
}

/* CSS Reset
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  color: var(--color-bg-secondary);
  font-weight: var(--fw-bold);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
ul,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
}


.ho img {
  max-width: 90%;
  display: block;
  padding-left: 9px;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: normal;
}

main {
  overflow: hidden;
}

body {
  background-color: var(--color-bg-primary);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-top: var(--height-header);
  line-height: 1.2;
}

/* Reusable CSS
--------------------------------------------------------------*/
.container {
  width: 98%;
  max-width: var(--width-container);
  margin: auto;
}

/* .section {
  padding: 4px 0;
} */

.section__header {
  margin: 4rem 0;
  text-align: center;
}

.section__title {
  font-size: var(--fs-xl);
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  position: relative;
}

.section__subtitle::after {
  position: absolute;
  content: "";
  width: 7.5%;
  height: 0.5rem;
  background-color: var(--color-primary);
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.d-grid {
  display: grid;
  gap: 3rem;
  padding-left: 6px;

}
.
.btnss {
   padding: 1.5rem 4rem;
  /* color: var(--color-white); */
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  margin: 0.8pc;
  margin-left: 0px;
  border-radius: 6px


}
.btn {
  padding: 1.5rem 4rem;
  /* color: var(--color-white); */
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  margin: 0.8pc;
  margin-left: 0px;
  border-radius: 6px;
}

.btnz {
padding: 0.5rem 5rem;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  margin: 0; /* remove huge margin */
  border-radius: 6px;
  display: inline-block;
}

.btns {
  /* display: inline-block; */
  padding: 1.5rem 5rem;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  margin: 0.9pc;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  /* background-color: var(--color-white); */
  color: #208c61;
  padding: 10px 20px;
  font-weight: bold;
}


.btn--secondary {
  background-color: var(--color-white);
  color: #676767;


}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
}

/* Header
--------------------------------------------------------------*/
.header {
  background-color: var(--color-bg-primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: var(--height-header);
  z-index: var(--zindex-menu);
  transition: var(--transition);
}

.header--scroll {
  height: var(--height-header--scroll);
  box-shadow: var(--box-shadow);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav__brand {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  padding-left: 5px;
}

.nav__brand i {
  color: var(--color-bg-footer);
}

.nav__list {
  display: flex;
  column-gap: 3rem;
}

.nav__link {
  /* transition: var(--transition); */
}

.nav__link:hover {
  /* color: var(--color-primary); */
}

/* Base styling */
.nav__toggle {
  display: none;
  font-size: var(--fs-xl);
  color: var(--color-primary);
  transition: var(--transition);
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1000;
  margin-top: 30px;
}

/* Hover effect */
.nav__toggle:hover {
  color: var(--color-white);
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }
}


@media screen and (max-width: 968px) {
  .nav__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 4rem;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-primary);
    display: none;
    justify-content: center;
    transition: var(--transition);
  }

  .nav__menu--open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .nav__brand,
  .nav__toggle {
    z-index: var(--zindex-fixed);
  }
}

/* Hero
--------------------------------------------------------------*/
.hero__wrapper {
  min-height: calc(100vh - var(--height-header));
  padding: 5rem 0;
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: var(--fs-biggest);
  margin-bottom: 5rem;
  position: relative;
}

.hero__title::after {
  position: absolute;
  content: "";
  background-color: var(--color-primary);
  width: 13rem;
  height: 0.5rem;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__description {
  margin-bottom: 5rem;
  letter-spacing: 1px;
}

.hero__info {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.hero__info-number {
  font-size: var(--fs-xxl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero__info-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}



/* About
--------------------------------------------------------------*/
.about__content {
  max-width: 50rem;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
}

.about__title {
  font-size: var(--fs-xxl);
  margin-bottom: 3rem;
}

.sv {
  font-size: 19px;
}

.usp {
  border-left: 5px solid #16c79e;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  animation: slideIn 1s ease forwards;
  opacity: 0;
}

.usp:nth-child(1) {
  animation-delay: 0.2s;
}

.usp:nth-child(2) {
  animation-delay: 0.4s;
}

.company {
  font-weight: 700;
  font-size: 1.5rem;
  color: #34495e;
}

.role {
  font-weight: 500;
  font-style: italic;
  margin: 0.3rem 0 0.6rem;
  color: #7f8c8d;
  letter-spacing: 0.02em;
}

.duration {
  font-size: 0.9rem;
  color: #95a5a6;
  margin-bottom: 1rem;
  font-weight: 600;
}

.details {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }

  from {
    opacity: 0;
    transform: translateX(-30px);
  }
}

.about__description {
  /* margin-bottom: 3rem; */
  color: #828282;
  line-height: 25px;
  font-family: var(--ff-body);
  margin-bottom: 5rem;
  letter-spacing: 1px;
}

.skills {
  justify-self: center;
}

.skills__title {
  font-size: var(--fs-lg);
  text-align: center;
  margin-bottom: 3rem;
}

.skills__wrapper {
  display: flex;
  justify-content: center;
  /* padding-left: 30%;  */
  gap: 2rem;
  line-height: 2.8rem;
}

.skills__content {
  background-color: #dcdcdc;
  box-shadow: var(--box-shadow);
  padding-left: 3rem;
  padding-right: 4rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  transition: background-color 0.6s ease, transform 0.6s ease;
}

.skills__content:hover {
  box-shadow: 0 10px 25px rgba(38, 195, 69, 0.21);
  transform: scale(1.02);
}

/* @media skills__content  (max-width: 767px) { */
/* Your styles for tablets here */
/* } */

.skills__item {
  margin-bottom: 1rem;
}

.skills__subtitle {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

.skills__item i {
  color: #25ab75
}

/* Qualification
--------------------------------------------------------------*/
.qualification__wrapper {
  margin-bottom: 5rem;
}

.qualification__content {
  row-gap: 5rem;
}

.qualification__name {
  display: flex;
  column-gap: 1rem;
  font-size: var(--fs-lg);
  margin-bottom: 5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-left: 5px;
}

.qualification__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  margin-bottom: 1rem;
  font-weight: bold;
}

.qualification__description {
  margin-bottom: 1rem;
}

.qualification__date {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 34px;
}

.qualification__footer {
  border-top: 1px solid var(--color-border);
  margin-top: 10rem;
  padding-top: 4rem;
  text-align: center;
}

.qualification__footer-text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: black;
  margin-bottom: 2rem;
}

/* Services
--------------------------------------------------------------*/
.service__card {
  background-color: var(--color-bg-secondary);
  box-shadow: var(--box-shadow);
  padding: 5rem 3.5rem;
  width: 100%;
  max-width: 30rem;
  justify-self: center;
  transition: var(--transition);
}

.service__card:hover {
  background-color: var(--color-primary);
}

.service__card:hover .service__link {
  color: var(--color-white);
}

.service__icon {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.service__title {
  font-size: var(--fs-lg);
  margin-bottom: 3rem;
}

/* Projects
--------------------------------------------------------------*/
.project__content {
  width: 100%;
  max-width: 30rem;
  justify-self: center;
}

.project__img {
  margin-bottom: 2rem;
  border-radius: 23px;
  /* width: 320px;   
  height: 215px;   */
}

.project__title {
  color: black;
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
}

.project__description {
  margin-bottom: 5rem;
}

.project__link {
  font-size: var(--fs-sm);
  line-height: 34px;
  text-transform: uppercase;
  color: white;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  transition: var(--transition);
}

.project__link:hover {
  color: var(--color-primary);
  column-gap: 2rem;
  font-weight: bold;
}


.project__description {
  margin-bottom: 5rem;
}

.project__links {
  font-size: var(--fs-sm);
  line-height: 34px;
  text-transform: uppercase;
  color: white;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  transition: var(--transition);
  margin-top: -40px;
}

.project__links:hover {
  color: var(--color-primary);
  column-gap: 2rem;
  font-weight: bold;
}

/* Testimonials
--------------------------------------------------------------*/
.testimonial__card {
  background-color: var(--color-bg-secondary);
  box-shadow: var(--box-shadow);
  padding: 3rem 5rem;
  width: 100%;
  max-width: 50rem;
  text-align: center;
  justify-self: center;
  margin-bottom: 2rem;
}

.testimonial__img {
  max-width: 10rem;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 3rem;
}

.testimonial__description {
  color: var(--color-white);
  margin-bottom: 3rem;
}

.testimonial__name {
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}

.testimonial__occupation {
  font-size: var(--fs-sm);
}

/* testimonial slide */
.testimonial__wrapper .swiper-wrapper {
  padding-bottom: 5rem;
}

.testimonial__wrapper .swiper-pagination-bullets {
  justify-content: space-around;
}

.testimonial__wrapper .swiper-pagination-bullet {
  background-color: var(--color-text);
  border-radius: 0;
  width: 3rem;
  height: 0.5rem;
}

.testimonial__wrapper .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* Contact
--------------------------------------------------------------*/
.contact__wrapper {
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
  text-align: center;
}

.contact__btn {
  padding-bottom: 30px;
}

.contact__title {
  font-size: var(--fs-xxl);
  margin-bottom: 2rem;
}

.contact__content {
  max-width: 45rem;
  margin: auto;
}

.contact__description {
  margin-bottom: 2rem;
}

/* Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--color-bg-footer);
  padding: 5rem 0;
}

.footer__wrapper {
  border-bottom: 1px solid var(--color-bg-secondary);
  padding: 5rem 0;
  gap: 5rem;
}

.footer__title {
  font-size: var(--fs-lg);
  margin-bottom: 2rem;
  color: #8b8b8b;
}

.footer__social-list {
  display: flex;
  gap: 3rem;
}

.footer__social-link {
  font-size: 2rem;
  color: var(--color-white);
  transition: var(--transition);
}

.footer__contact {
  font-size: var(--fs-lg);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  text-decoration: underline;
  transition: var(--transition);
}

.footer__social-link:hover,
.footer__contact:hover {
  color: var(--color-primary);
}

.footer__copyright {
  font-size: var(--fs-sm);
  text-align: center;
  padding-top: 3rem;
}

/* Scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-text);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary);
}

/* Breakpoints
--------------------------------------------------------------*/

/* Medium devices*/
@media screen and (min-width: 560px) {
  .service__wrapper {
    grid-template-columns: repeat(2, 250px);
    justify-content: center;
  }

  .qualification__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualification__footer {
    text-align: initial;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .qualification__footer-text {
    margin: 0;
  }

  .project__wrapper {
    grid-template-columns: repeat(2, 250px);
    justify-content: center;
  }

  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .hero__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .hero__content {
    text-align: initial;
  }

  .hero__title::after {
    transform: none;
    left: 0;
  }

  .hero__info {
    justify-content: initial;
  }

  /* .hero__img {
    justify-self: flex-end;
    width: 100%;
    max-width: 1600px;
    height: 450px;
    object-fit: cover;
    border-radius: 21px;
  } */
  .hero__img {
    justify-self: flex-end;
    width: 100%;
    max-width: 1600px;
    height: 450px;
    object-fit: cover;
    border-radius: 21px;
    display: block;
    max-width: 100%;
    transition: box-shadow 0.4s ease, transform 0.6s ease;
  }

  .hero__img:hover {
    box-shadow: 0 10px 25px #25ab7547;
    transform: scale(1.02);
  }
}

/* Large devices */

@media screen and (min-width: 968px) {

  .about__wrapper,
  .skills__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__content {
    margin: 0;
  }

  .about__content,
  .skills__title,
  .skills__wrapper {
    text-align: initial;
  }

  .qualification__content,
  .service__wrapper,
  .project__wrapper,
  .skills__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contact__content {
    margin: 0;
    text-align: initial;
  }

  .footer__wrapper,
  .skills__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}



.hero__img:hover {
  animation: shake 1.5s;
  animation-iteration-count: 2;
}

/* 
.hero__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-left: 7px; */


.py {
  color: green;
}

.full {
  background-color: black;
}

.uv {
  color: #25ab75;
}

.uvs {
  color: #dcdcdc;
  background-color: #25ab75;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
  /* line-height: 0cm; */
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.lo {
  color: #25ab75;
}

.ew {
  font-weight: bold;
}

.link {
  color: #25ab75;
  font-weight: bold;
  /* padding-left: 38%; */
  padding-top: 2%;
}

.link:hover {
  color: white;
}

.links {
  color: #676767;
  font-weight: bold;
  text-align: center;
}

.links:hover {
  color: #25ab75;
  /* font-weight: bold; */
}


.section__subtitle::after {
  position: absolute;
  content: "";
  width: 6%;
  height: 0.5rem;
  background-color: var(--color-primary);
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}


.section__subtitles {
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  position: relative;
}

.section__subtitles::after {
  position: absolute;
  content: "";
  width: 72%;
  height: 0.5rem;
  background-color: var(--color-primary);
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}


.section__subtitless {
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  position: relative;
  color: #6c6c6c;
}

.section__subtitless::after {
  position: absolute;
  content: "";
  width: 87%;
  height: 0.5rem;
  background-color: var(--color-primary);
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.head {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(0, 0, 0);
}

/* //Custom cursor import  */

.custom-cursor {
  cursor: url('/head.png') 4 2, auto;
}

.custom-cursors {
  cursor: url('/cursor\ golld.png') 4 2, auto;
}

.custom-cursorss {
  cursor: url('/pink\ cursor.png') 4 2, auto;
}

.custom-cursorsss {
  cursor: url('/cursor\ \ rrlr4.png') 4 2, auto;
}

.custom-cursorssss {
  cursor: url('/precision.png') 4 2, auto;
}

.custom-cursorsssss {
  cursor: url('/navigation.png') 4 2, auto;
}

.custom-cursorsc {
  cursor: url('/newle.png') 4 2, auto;
}

/* 
.skills__wrappers {
  display: flex;
  justify-content: center; 
  gap: 8rem;
  line-height: 2.5rem;
} 


.linkss {
  color: #25ab75;
  font-weight: bold; 
  padding-top: 8%; 
} */

.skills__wrappers {
  display: flex;
  justify-content: center;
  gap: 8rem;
}

.lord-icon-wrapper {
  width: 254px;
  height: 99px;
  margin-right: 156px;
  margin-bottom: 17px;
}

@media (max-width: 768px) {
  .skills__wrapper {
    flex-direction: column;
  }
}



.contact-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}


.contact-buttons .btn {
  background-color: #25ab75;
  border-radius: 3px;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  transition: var(--transition);
}

.contact-buttons .btn:hover {
  /* background-color: #ffffff; */
  /* color: #25ab75; */
  padding: 20px 20px;
  transition: var(--transition);

}

@media screen and (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-buttons .btn {
    width: 75%;
    text-align: center;
    object-position: center;
    margin-bottom: 10px;
    margin-left: 15%;
  }
}




.profile-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 100px auto;
}

#person {
  width: 100%;
  height: 100%;
  transition: transform 0.1s linear;
}

.xy {
  object-fit: cover;
  filter: brightness(86%);
  transform: scale(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.xy:hover {
  transform: scale(1.08);
  filter: brightness(100%);
}

:root {
  --accent-green: #4ade80;
  /* emerald (adjust if needed) */
  --text-color: #0f172a;
  /* dark text for light backgrounds */
  --font-size: 18px;
}

.bio-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 16px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text-color);
  font-size: var(--font-size);
  line-height: 1.6;
}

.bio-block p {
  margin: 0;
}

.bio-block strong {
  font-weight: 700;
}

.bio-block strong.green {
  color: var(--accent-green);
}

/* small responsive tweak */
@media (max-width: 480px) {
  :root {
    --font-size: 16px;
  }

  .bio-block {
    padding: 10px;
  }
}



a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.text-black {
  color: #000;
}

.content {
  padding: 7rem 0;
}

.heading {
  font-size: 2.5rem;
  font-weight: 900;
}

.form-control {
  border: none;
  background: #f3f3f3;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
  background: #f3f3f3;
}

.col-form-label {
  color: #000;
}

.btn,
.form-control,
.custom-select {
  height: 50px;
}

.custom-select:active,
.custom-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}

.btn {
  border: none;
  border-radius: 4px !important;
}

.btn.btn-primary {
  background: #000;
  color: #fff;
  padding: 15px 20px;
}

.btn:hover {
  color: #fff;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.box {
  padding: 40px;
  background: #fff;
  -webkit-box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
  box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
}

.box h3 {
  font-size: 14px;
  margin-bottom: 30px;
  text-align: center;
}

label.error {
  font-size: 12px;
  color: red;
}

#message {
  resize: vertical;
}

#form-message-warning,
#form-message-success {
  display: none;
}

#form-message-warning {
  color: #B90B0B;
}

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}
