/* CSS RESET & BASELINE ------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F8F8F8;
  color: #121212;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
ai, nav, section, article, aside, header, footer, main {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #1C4E34;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

* {
  box-sizing: inherit;
}

/* BRAND FONTS -------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* TYPOGRAPHY --------------------- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  h1, .hero h1 {
    font-size: 2rem;
  }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-weight: 500;
}
p, li {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 12px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: #111;
}
.text-section {
  font-size: 1.07rem;
}

/* CONTAINER ---------------------- */
.container {
  width: 100%;
  max-width: 1060px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER ------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
header img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 2px;
  transition: color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #1C4E34;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: #111;
  color: #fff !important;
  border-radius: 28px;
  padding: 12px 34px;
  margin-left: 12px;
  letter-spacing: 0.01em;
  transition: background 0.17s, box-shadow 0.18s, color 0.16s;
  box-shadow: 0 1px 8px rgba(28,28,28,0.10);
  border: none;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: #111 !important;
  box-shadow: 0 2px 18px rgba(28,28,28,0.16);
  border: 1.5px solid #111;
}
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 10px 28px;
  color: #fff !important;
  background: #232323;
  border-radius: 24px;
  border: none;
  margin-top: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  transition: background 0.17s, color 0.16s;
  box-shadow: 0 1px 6px rgba(32,32,32,0.10);
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #fff;
  color: #222 !important;
  border: 1px solid #232323;
}

/* BURGER MENU (MOBILE) ----------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  top: 21px;
  z-index: 2500;
  background: #111;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 375px;
  height: 100vh;
  background: #212121;
  color: #fff;
  z-index: 4000;
  transform: translateX(105%);
  box-shadow: -6px 0 32px rgba(18,18,18,0.22);
  transition: transform 0.32s cubic-bezier(.23,1,.32,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 16px;
  margin-top: 14px;
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: color .15s;
  padding: 2px 10px;
  border-radius: 6px;
  opacity: 0.91;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #111;
  border: 1px solid #212121;
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 40px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.14s, border-bottom 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EAEAEA;
  border-bottom: 1px solid #fff;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1020px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION ------------------- */
.hero {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  border-radius: 0 0 24px 24px;
  min-height: 270px;
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .hero {
    border-radius: 0 0 14px 14px;
    padding: 28px 0 9px 0;
  }
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 540px;
}
.hero p {
  font-size: 1.16rem;
  color: #353535;
  margin-bottom: 16px;
}

/* SECTION SPACING AND PATTERNS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 600px) {
  section {
    padding: 28px 8px;
    border-radius: 6px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FAFAFA;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 22px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 22px rgba(20,20,20,0.14);
  transform: translateY(-2px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/****************************/ 
/* FEATURES SECTION STYLES */ 
/****************************/ 
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature {
  background: #F6F6F6;
  border: 1.5px solid #E5E5E5;
  border-radius: 13px;
  padding: 24px 16px 20px 16px;
  flex: 1 1 240px;
  max-width: 316px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 9px rgba(32,32,32,0.04);
  transition: box-shadow 0.2s, border 0.2s;
}
.feature img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.feature h3 {
  margin-bottom: 2px;
  color: #1C1C1C;
  font-size: 1.17rem;
}
.feature p {
  color: #444;
  font-size: 1.04rem;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 6px 36px rgba(28,60,45,0.13);
  border: 1.5px solid #C4C4C4;
}

/********************************
  SERVICES CARDS & LISTS         
*********************************/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.service-card {
  flex: 1 1 260px;
  max-width: 308px;
  min-width: 210px;
  background: #F8F8F8;
  border: 1px solid #DADADA;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, border 0.16s, transform 0.11s;
}
.service-card h3 {
  color: #181818;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.service-card p {
  color: #323232;
  margin-bottom: 5px;
  font-size: 0.98rem;
}
.service-price {
  color: #111;
  background: #e9e9e9;
  border-radius: 10px;
  padding: 3px 13px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  align-self: flex-start;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 8px 36px rgba(32,35,36,0.15);
  border: 1.5px solid #C4C4C4;
  transform: translateY(-2px);
}
@media (max-width: 800px) {
  .services-list {
    gap: 14px;
  }
  .service-card {
    padding: 20px 9px;
    min-width: 180px;
    max-width: 100%;
  }
}

/****************************
   TESTIMONIALS              
*****************************/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #F5F5F5;
  border: 1.5px solid #D5D5D5;
  border-radius: 13px;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 1.06rem;
  position: relative;
  transition: box-shadow 0.17s, border 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 9px 32px rgba(40,40,40,0.11);
  border: 1.5px solid #B7B7B7;
}
.testimonial-card p {
  color: #232323;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1.06rem;
}
.testimonial-author {
  color: #888;
  font-size: 0.98rem;
  font-style: italic;
}

/****************************
   FAQ & CHECKLIST          
*****************************/
.faq {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 18px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-top: 18px;
}
.faq h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat';
  color: #232323;
}
.faq p {
  color: #323232;
}
ol {
  margin-bottom: 18px;
}

/****************************
   TRAININGS                
*****************************/
.trainings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.training-item {
  background: #F7F7F7;
  border-radius: 10px;
  border: 1.3px solid #E2E2E2;
  padding: 24px 15px;
  min-width: 220px;
  max-width: 310px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.16s;
}
.training-item span {
  color: #232323;
  font-weight: 600;
}
.training-item:hover,
.training-item:focus-within {
  box-shadow: 0 7px 28px rgba(36,36,36,0.13);
  border: 1.3px solid #b2b2b2;
}

/***************
   TABLES      
****************/
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #F7F7F7;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.comparison-table th, .comparison-table td {
  border: 1px solid #DEDEDE;
  padding: 13px 16px;
  color: #232323;
  text-align: left;
}
.comparison-table th {
  background: #ECECEC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.comparison-table tr:nth-child(even) td {
  background: #F2F2F2;
}
.comparison-table tr:hover td {
  background: #e6e6e6;
}

/*******************
  FOOTER            
********************/
footer {
  background: #202020;
  color: #EFEFEF;
  padding: 40px 0 12px 0;
  box-shadow: 0 -4px 20px rgba(20,20,20,0.15);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 16px 0;
}
.footer-nav a {
  color: #C3C3C3;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
footer p {
  color: #888;
  margin-bottom: 0;
  font-size: 0.95rem;
  text-align: center;
}
footer img {
  height: 32px;
}

/**************
  MAP BOX     
***************/
.map-box {
  border: 1.5px solid #DADAD9;
  padding: 19px;
  border-radius: 10px;
  background: #F6F6F6;
  font-size: 1.04rem;
  color: #363636;
  margin-top: 12px;
  margin-bottom: 12px;
}

/***************
   UTILS        
***************/
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.text-center {text-align: center;}
.flex-row {display: flex; flex-direction: row;}
.flex-col {display: flex; flex-direction: column;}
.gap-20 {gap: 20px;}
.section-title {margin-bottom: 18px;}

/****************
   FORMS        
*****************/
input[type="text"], input[type="email"], textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #CCC;
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
  margin-bottom: 18px;
  background: #FAFAFA;
  color: #181818;
  transition: border-color 0.16s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #181818;
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/****************
   RESPONSIVE   
*****************/
@media (max-width: 900px) {
  .features-grid, .services-list, .testimonial-list, .trainings-list {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .features-grid, .services-list, .testimonial-list, .trainings-list {
    flex-direction: column;
    align-items: stretch;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .card {
    padding: 16px 8px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 500px) {
  .testimonial-card,
  .feature,
  .service-card,
  .training-item {
    min-width: 0;
    padding: 17px 6px;
  }
}

/***********************
   COOKIE CONSENT      
************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #0A0A0A;
  color: #fff;
  box-shadow: 0 -4px 28px rgba(20,20,20,0.19);
  padding: 28px 12px 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  transition: transform .3s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 1px 8px rgba(32,32,32,0.09);
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .accept {
  background: #fff;
  color: #141414;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1C4E34;
  color: #fff;
}
.cookie-banner .reject {
  background: #232323;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #000;
  color: #fff;
  border-color: #141414;
}
.cookie-banner .settings {
  background: #fff;
  color: #1C4E34;
  border: 1.5px solid #1C4E34;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ECECEC;
  color: #141414;
  border-color: #101810;
}
.cookie-banner p {
  color: #EFEFEF;
  max-width: 600px;
  text-align: center;
  font-size: 1rem;
}

/******************************
  COOKIE MODAL                 
*******************************/
.cookie-modal {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 42%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1.04);
  min-width: 320px;
  max-width: 92vw;
  background: #fff;
  color: #121212;
  border-radius: 14px;
  box-shadow: 0 6px 60px rgba(20,20,20,0.18);
  z-index: 10000;
  padding: 34px 26px 24px 26px;
  transition: opacity 0.18s, transform 0.18s;
  opacity: 1;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalIn 0.32s cubic-bezier(0.42,0,0.31,1.62);
}
@keyframes cookieModalIn {
  from {transform: translate(-50%,-70%) scale(0.91); opacity:0;}
  to   {transform: translate(-50%,-50%) scale(1.04); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #121212;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 18px;
}
.cookie-category label {
  color: #171717;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 24px;
  background: #ECECEC;
  border: 1px solid #CDCDCD;
  position: relative;
  transition: background .14s;
  margin-right: 8px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 19px;
  height: 19px;
  background: #bbb;
  border-radius: 50%;
  transition: left 0.18s, background 0.15s;
}
.cookie-toggle input:checked + .slider {
  left: 18px;
  background: #1C4E34;
}
.cookie-category .desc {
  font-size: 0.94rem;
  color: #595959;
  margin-left: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.cookie-modal .close-modal {
  margin-left: auto;
  background: none;
  border: none;
  color: #787878;
  font-size: 2rem;
  position: absolute;
  top: 7px;
  right: 20px;
  cursor: pointer;
  opacity: .91;
}
.cookie-modal .close-modal:hover,.cookie-modal .close-modal:focus {
  color: #1C4E34;
  opacity: 1;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  border: 1.5px solid #bbb;
  background: #fff;
  color: #121212;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .modal-actions .accept {
  background: #1C4E34;
  color: #fff;
}
.cookie-modal .modal-actions .accept:hover,
.cookie-modal .modal-actions .accept:focus {
  background: #111;
  color: #fff;
}

/***************** CUSTOM SCROLL    ***************/
::-webkit-scrollbar {
  width: 8px;
  background: #ECECEC;
}
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
@media (max-width: 530px) {
  .comparison-table th,
  .comparison-table td {
    padding: 9px 7px;
  }
}
/*************************************************
 MONOCHROME SOPHISTICATED: CUSTOM EFFECTS
**************************************************/
.card, .feature, .service-card, .testimonial-card, .training-item {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 11px;
  border: 1.5px solid #E3E3E3;
  background: #FAFAFA;
  transition: box-shadow 0.18s, border 0.17s, transform .14s;
}
.card:hover,
.card:focus-within,
.feature:hover,
.feature:focus-within,
.service-card:hover, .service-card:focus-within,
.testimonial-card:hover, .testimonial-card:focus-within,
.training-item:hover, .training-item:focus-within {
  box-shadow: 0 12px 32px rgba(28,28,28,0.12);
  border: 1.5px solid #ccc;
  transform: translateY(-2px) scale(1.01);
}
/**************************************************/
/* END OF STYLE.CSS */
