/*!
Theme Name: Dunk
Theme URI: https://thedunk.it
Author: Simone Simola
Author URI: https://thedunk.it
Description: The Dunk's default theme. A simple, clean, and modern WordPress theme designed for readability and ease of use.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
Text Domain: dunk
*/

.debug-grid [class*="col"] {
  border: 1px solid red;
}

:root {
  --accent-color: #fee000; /* colore per dark mode */
}

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

body.light-mode {
  --accent-color: #000000; /* colore per light mode */
}

body.dark-mode {
  --accent-color: #fee000; /* colore per light mode */
}

/* Transizione */
body,
header,
footer,
.navbar,
.navbar a,
footer a {
  /* transition: background-color 0.4s ease, color 0.4s ease; */
  transition: all 0.4s ease-in-out;
}

html,
body {
  font-family: "Space Grotesk", sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 80px; /* per correggere il fatto che l'header è fisso */
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  height: auto;
}

main {
  flex: 1 0 auto;
}

body.dark-mode a {
  color: #ffee00;
  opacity: 1;
  transition: opacity 0.4s ease;
  text-decoration: none;
}

body.dark-mode a:hover {
  color: #ffee00;
  opacity: .4;
  transition: opacity 0.2s ease;
}

body.light-mode a {
  color: #898989;
  opacity: 1;
  transition: opacity 0.4s ease;
  text-decoration: none;
}

body.light-mode a:hover {
  color: #898989;
  opacity: .4;
  transition: opacity 0.2s ease;
}


footer {
  flex-shrink: 0;
  font-size: 0.9em;
}

/* FOOTER MENU - base style */
footer .nav {
  gap: 0.5rem;
  flex-wrap: wrap;
}

footer .nav li {
  position: relative;
  display: inline-block;
}

footer .nav li:not(:last-child)::after {
  content: "|";
  margin: 0 0.1rem 0 0.6rem;
  color: currentColor;
  opacity: 0.5;
}

/* link base */
footer .nav a {
  color: #898989;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-weight: 400;
}

/* hover effetto opaco */
footer .nav a:hover,
footer .nav a:focus {
  opacity: 0.6;
}

/* light mode override */
body.light-mode footer .nav a {
  color: #898989;
}

body.light-mode footer .nav li:not(:last-child)::after {
  color: #898989;
  opacity: 0.6;
}

/* Dark Mode */
body.dark-mode {
  background-color: #0d0d0d;
  color: #898989;
  background-size: cover;
  background-attachment: fixed;
  background-image: url("/wp-content/themes/dunk/assets/img/background_dark.webp");
  background-position-y: top;
  background-repeat: no-repeat;
}

body.dark-mode footer {
	background-color: #000000;
}

body.dark-mode .navbar,
body.dark-mode footer {
  color: #898989;
}

body.dark-mode .navbar a,
body.dark-mode footer a {
  color: #898989;
}

/* Light Mode */
body.light-mode {
  background-color: #ffffff;
  color: #898989;
  background-size: cover;
  background-attachment: fixed;
  background-image: url("/wp-content/themes/dunk/assets/img/background_light.webp");
  background-position-y: top;
  background-repeat: no-repeat;
}

body.light-mode footer {
	background-color: #ffffff;
}

body.light-mode .navbar,
body.light-mode footer {
  color: #898989;
}

body.light-mode .navbar a,
body.light-mode footer a {
  color: #212529;
}

h1,
h2,
h3 {
  font-weight: 100;
}

strong,
b {
  font-weight: 600;
}

/* Stile base dell’header */
body.dark-mode .mobile-menu-overlay {
	background: rgba(0, 0, 0, 0.95);
}

body.light-mode .mobile-menu-overlay {
	background: rgba(255, 238, 0, 0.95);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}
#site-header.sticky-active {
  /* background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px); */
}

.navbar a {
  font-weight: 500;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.3s ease, color 0.3s ease;
  text-align: center;
}

/* Hover: opacizza leggermente */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  opacity: 0.6;
  color: var(--accent-color, #fee000); /* se usi una variabile */
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color, #fee000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .current-menu-item > .nav-link::after {
  transform: scaleX(1);
}

/* Active (pagina corrente) */
.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .nav-link.active {
  opacity: 1;
  font-weight: 600;
  color: var(--accent-color, #fee000);
}

.theme-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.theme-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.theme-toggle-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.theme-icon {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-btn:hover .theme-icon {
  opacity: 0.6;
  transform: rotate(360deg);
}

.theme-toggle-btn:active .theme-icon {
  opacity: 1; /* reset al click */
}


/* Colore icona hamburger */
.navbar-toggler {
	border: none;
}

.navbar-toggler:focus {
	box-shadow: none;
}

body.dark-mode .burger-line {
  background-color: #fff;
}

body.light-mode .burger-line {
  background-color: #000;
}

.custom-burger {
  width: 40px;
  height: 32px;
  position: relative;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Allinea tutto a sinistra */
  gap: 6px;
  z-index: 999;
}

.burger-line {
  height: 2px;
  background-color: var(--accent-color);
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

/* Lunghezze */
.line1, .line3 {
  width: 28px;
}
.line2 {
  width: 20px;
}

/* Stato attivo */
.custom-burger.open .line1 {
  transform: translateY(8px) rotate(45deg);
}

.custom-burger.open .line2 {
  opacity: 0;
}

.custom-burger.open .line3 {
  transform: translateY(-8px) rotate(-45deg);
}


.my-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 1em;
  font-weight: 500;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s ease;
}

body.dark-mode .my-btn {
  color: #000000 !important;
  background-color: #fee000;
}
body.light-mode .my-btn {
  color: #ffffff !important;
  background-color: #000000;
}

.my-btn:hover {
  opacity: 0.5;
}

/* .img-dark {
  display: none;
} */
body.dark-mode .img-dark {
  display: block;
}
body.dark-mode .img-light {
  display: none;
}

body.light-mode .img-light {
  display: block;
}
body.light-mode .img-dark {
  display: none;
}

.tag-label {
  color: #fee000;
  font-family: "Space Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 50px;
}

.section-text-image h2, 
.section-text-image h2 p {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 100; 
  font-size: 50px;
  line-height: 55px;
}

body.light-mode .section-text-image h2  {
	color: #0d0d0d
}

body.dark-mode .section-text-image h2  {
	color: #ffffff;
}

body.light-mode .tag-label {
  color: #000000;
}

body.dark-mode .tag-label {
  color: #fee000;
}

.section-text-image h3, 
.section-text-image h3 p {
	font-size: 30px !important;
	line-height: 34px;
}

.section-text-image p {
	font-size: 18px;
	line-height: 26px;
	font-weight: 100;
}

.section-text h2, 
.section-text h2 p {
  font-family: "Space Grotesk";
  font-size: 30px;
  line-height: 34px;
  font-style: normal;
  font-weight: 100;
}

.section-text h3, 
.section-text h3 p {
	font-size: 30px;
	line-height: 34px;
}

.section-text p,
.section-text p span {
	/* font-size: 14px;
	line-height: 14px;
	font-weight: 100; */
}

.align-left {
  display: block;
  margin-left: 0;
  margin-right: auto;
}

.align-right {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.number {
  font-size: 70px;
  line-height: 70px;
  font-weight: 500;
}

.number span {
  font-weight: 100;
}

.number-text {
  /* do nothing */
}


.section-skills-carousel {
  padding: 60px 0;
}


.section-skills-carousel h3, 
.section-skills-carousel h3 p {
	font-size: 30px;
}

.section-skills-carousel p {
	font-size: 20px;
	font-weight: 100;
}

body.dark-mode .section-skills-carousel-title {
  color: #fee000;
}

body.light-mode .section-skills-carousel-title {
  color: #000000;
}

.section-skills-carousel-title {
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 10px;
}

body.dark-mode .section-skills-carousel-text {
  color: #898989;
}

body.light-mode .section-skills-carousel-text {
  color: #898989;
}

.section-skills-carousel-text {
  font-size: 18px;
  font-weight: 100;
}

.section-skills-carousel-list ul {
  list-style: none; /* rimuove i bullet di default */
  padding-top: 20px;  /* elimina il padding sinistro */ 
  padding-left: 0;  /* elimina il padding sinistro */
  margin: 0;
}

.section-skills-carousel-list ul li {
  position: relative;
  padding-left: 1.5em; /* spazio per il cerchietto */
  margin-bottom: 0.5em;
}

body.dark-mode .section-skills-carousel-list ul li::before {
  border: 1px #fee000 solid;
}

body.light-mode .section-skills-carousel-list ul li::before {
  border: 1px #898989 solid;
}

.section-skills-carousel-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6em;
  height: 0.6em;
  background-color: transparent;
  border-radius: 50%;
}




.section-two-column-text ul {
  list-style: none; /* rimuove i bullet di default */
  padding-top: 20px;  /* elimina il padding sinistro */ 
  padding-left: 0;  /* elimina il padding sinistro */
  margin: 0;
}

.section-two-column-text ul li {
  position: relative;
  padding-left: 1.5em; /* spazio per il cerchietto */
  margin-bottom: 0.5em;
}

body.dark-mode .section-two-column-text ul li::before {
  border: 1px #fee000 solid;
}

body.light-mode .section-two-column-text ul li::before {
  border: 1px #898989 solid;
}

.section-two-column-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6em;
  height: 0.6em;
  background-color: transparent;
  border-radius: 50%;
}



.section-text-image ul {
  list-style: none; /* rimuove i bullet di default */
  padding-top: 20px;  /* elimina il padding sinistro */ 
  padding-left: 0;  /* elimina il padding sinistro */
  margin: 0;
}

.section-text-image ul li {
  position: relative;
  padding-left: 1.5em; /* spazio per il cerchietto */
  margin-bottom: 0.5em;
}

body.dark-mode .section-text-image ul li::before {
  border: 1px #fee000 solid;
}

body.light-mode .section-text-image ul li::before {
  border: 1px #898989 solid;
}

.section-text-image ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6em;
  height: 0.6em;
  background-color: transparent;
  border-radius: 50%;
}




body.dark-mode .number-huge-behind {
  color: #ffffff;
}

body.light-mode .number-huge-behind {
  color: #000000;
}

.number-huge-behind {
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  font-size: 300px;
  font-weight: 900 !important;
  line-height: 300px;
  font-weight: 100;
  color: #ffffff;
}

body.dark-mode .section-title {
  color: #fee000;
}

body.light-mode .section-title {
  color: #000000;
}

.section-title {
  font-size: 30px !important;;
  font-style: normal;
  font-weight: 600;
  padding-top: 60px;
}

.section-text, .section-text p {
  font-size: 20px !important;;
}










.fade-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  max-width: 100%;
}

.fade-img.active {
  opacity: 1;
  position: relative;
}

body.dark-mode .carousel-content-wrapper {
	border-left: 5px #fee000 solid;
	padding-left: 30px;
}

body.light-mode .carousel-content-wrapper {
	border-left: 5px #000000 solid;
	padding-left: 30px;
}

#carousel-image-wrapper {
	padding-right: 30px;
}

.carousel-controls {
  margin-top: 40px;
}

.custom-pagination {
  display: flex;
  justify-content: flex-start; /* allinea a sinistra */
  gap: 12px;
}

body.dark-mode .custom-pagination .swiper-pagination-bullet {
	border: 2px solid #fee000;
}

body.light-mode .custom-pagination .swiper-pagination-bullet {
	border: 2px solid #000000;
}

.custom-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  opacity: 0.4;
  transition: all 0.3s ease;
}

body.dark-mode .custom-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color, #fee000);
}

body.light-mode .custom-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color, #000000);
}

.custom-pagination .swiper-pagination-bullet-active {
  width: 38px;
  border-radius: 4px;
  opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px !important;
}

/* Arrow style */
.custom-prev img,
.custom-next img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.custom-prev.disabled,
.custom-next.disabled {
  opacity: 0.1;
  pointer-events: none;
}

.section-form-masthead {
	padding: 150px 0 !important;
}

body.dark-mode .section-form-masthead {
	background-color: #fee000;
}

body.light-mode .section-form-masthead {
	background-color: #CCCCCC;
}

body.dark-mode .section-form-masthead a {
  color: #000000;
  opacity: 1;
  transition: opacity 0.4s ease;
  text-decoration: none;
}

body.dark-mode .section-form-masthead a:hover {
  color: #000000;
  opacity: .4;
  transition: opacity 0.2s ease;
}

body.light-mode .section-form-masthead a {
  color: #000000;
  opacity: 1;
  transition: opacity 0.4s ease;
  text-decoration: none;
}

body.light-mode .section-form-masthead a:hover {
  color: #000000;
  opacity: .4;
  transition: opacity 0.2s ease;
}

.bg-full-width {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.section-form-masthead .title {
	color:#000000;
	font-size: 60px;
	line-height: 60px;
	font-weight: 100;
	padding-bottom: 50px;
}

.section-form-masthead .text {
	color:#000000;
	font-size: 30px;
	line-height: 40px;
	font-weight: 100;
	padding-bottom: 50px;
}

body.dark-mode .section-form-masthead .input-field {
  border: 2px solid #000000;
}

body.light-mode .section-form-masthead .input-field {
  border: 2px solid #000000;
}

.section-form-masthead .input-field {
  font-size: 20px;
  height: 70px;
  background-color: transparent;
  color: inherit;
  border-radius: 10px;
  padding: 0 1rem;
}

body.dark-mode .custom-checkbox {
  color: #fee000;
}

body.dark-mode .custom-checkbox {
  color: #000000;
}

.form-check {
	padding-left: 0;
}

.input-outline {
  height: 70px;
  border: 2px solid #000;
  border-radius: 8px;
  background-color: transparent;
  font-size: 1.2rem;
  padding: 0 1rem;
  color: #000;
}

.input-outline:focus {
  border: 2px solid #aa9600;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.input-outline::placeholder {
  color: #999;
}

.custom-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.custom-checkbox-input {
  width: 50px;
  height: 50px;
  appearance: none;
  border: 2px solid #000000;
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin: 0;
  flex-shrink: 0; 
}

.custom-checkbox-input:checked::after {
  content: "✔︎";
  position: absolute;
  font-size: 24px;
  color: #000000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.custom-checkbox-input.is-invalid,
.was-validated .custom-checkbox-input:invalid {
  border-color: #dc3545;
}

.custom-checkbox-label, .custom-checkbox-label a {
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  cursor: pointer;
  margin-bottom: 0;
}

.custom-checkbox-label p {
    margin-top: 0;
    margin-bottom: 0;
}

.invalid-feedback {
  font-size: 0.875rem;
  color: #dc3545;
  margin-top: 0.25rem;
}

.privacy-error {
  display: none;
  color: #dc3545; /* rosso Bootstrap */
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.was-validated .custom-checkbox-input:invalid ~ .invalid-feedback,
.custom-checkbox-input:invalid.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-label, .form-check-label, .custom-checkbox a {
  font-size: 14px;
  color: #000000;
}

body.dark-mode .btn-form {
  background-color: #000000;
  color: #fee000;
}

body.light-mode .btn-form {
  background-color: #000000;
  color: #ffffff;
}

.btn-form {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 25px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-form:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}


.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

body.dark-mode .work-filters .btn {
  color: #fee000;
}

body.light-mode .work-filters .btn {
  color: #000000;
}

.work-filters .btn {
  font-size: 12px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.work-filters .btn:hover {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}



.work-card {
  position: relative;
  height: auto;
}

.work-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

.work-image {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: auto;
}

.work-card:hover .work-image {
  transition: transform 0.9s ease;
  transform: scale(1.25);
}

body.dark-mode .work-card h3 {
  color: #ffffff;
}

body.light-mode .work-card h3 {
  color: #000000;
}

.work-card h3 {
  font-size: 24px;
  font-weight: 100 !important;
  margin-bottom: 10px;
}

body.dark-mode .badge {
  color: #fee000;
  border-color: #fee000 !important;
}

body.light-mode .badge {
  color: #000000;
  border-color: #000000 !important;
}

.badge {
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.badge:hover {
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.mini-badge {
	padding-left: 0;
}



.section-works {
  /* do nothing here */
}

body.dark-mode .section-works h2 {
	color: #ffffff;
}

body.light-mode .section-works h2 {
	color: #000000;
}

.section-works h2 {
	font-weight: 400;
}

body.dark-mode .section-works p {
	color: #898989;
}

body.light-mode .section-works p {
	color: #000000;
}

.section-works p {
	font-size: 20px !important;
}

.client-logo img {
  display: flex;
  max-width: 130px !important;
  margin-bottom: 20px;
}

body.dark-mode .logo-client-dark {
  display: block;
}
body.dark-mode .logo-client-light {
  display: none;
}

body.light-mode .logo-client-light {
  display: block;
}
body.light-mode .logo-client-dark {
  display: none;
}


.section-wide-image {
	/* do nothing */
}

body.dark-mode .section-wide-image .img-dark {
  display: block;
}
body.dark-mode .section-wide-image .img-light {
  display: none;
}

body.light-mode .section-wide-image .img-light {
  display: block;
}
body.light-mode .section-wide-image .img-dark {
  display: none;
}




.section-clients .img-fluid {
  max-width: 70%;
}




.section-404 h2, 
.section-404 h2 p {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 100; 
  font-size: 50px;
  line-height: 55px;
}

body.light-mode .section-404 h2  {
	color: #0d0d0d
}

body.dark-mode .section-404 h2  {
	color: #ffffff;
}

.section-404 h3, 
.section-404 h3 p {
	font-size: 30px !important;
	line-height: 34px;
}

.section-404 p {
	font-size: 18px;
	line-height: 26px;
	font-weight: 100;
}








@media (max-width: 991.98px) {
	body.dark-mode {
		background-size: auto;
		background-attachment: fixed;
		background-image: url("/wp-content/themes/dunk/assets/img/background_mobile_dark.webp");
		background-position-y: top;
		background-repeat: no-repeat;
	}

	body.light-mode {
		background-size: auto;
		background-attachment: fixed;
		background-image: url("/wp-content/themes/dunk/assets/img/background_mobile_light.webp");
		background-position-y: top;
		background-repeat: no-repeat;
	}

	.navbar-collapse {
		/* background-color: rgba(0, 0, 0, 0.9); */
		padding: 2rem 1rem;
		z-index: 9999;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
	}

	.navbar-nav .nav-link {
		color: #fff !important;
		font-size: 1.25rem;
		padding: 0.5rem 1rem;
	}

	#mainMenu.collapse.show {
		/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
	}

	body.dark-mode .navbar-nav .nav-link {
		color: #ffffff !important;
	}

	body.light-mode .navbar-nav .nav-link {
		color: #000000 !important;
	}

	.navbar-nav .nav-link {
		font-size: 1.5rem;
		padding: 1rem 0;
		display: block;
		text-align: center;
	}

	.navbar-nav .nav-link:hover {
		color: #fee000;
	}

	.navbar-nav .nav-link::after {
		background-color: transparent;
	}

	.navbar .theme-toggle-btn {
		display: block;
	}

	.section-text-image h2, .section-text-image h2 p {
		font-size: 30px;
		line-height: 35px;
	}

	.section-form-masthead .title {
		font-size: 40px;
		line-height: 40px;
	}


	.section-form-masthead img.align-right {
		margin-right: auto;
	}





}