/* CSS RESET & NORMALIZE */
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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7F9FB;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #25314D;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a {
  color: #3284be;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #20457C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.4em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}


/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20457C;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; color: #3971a3; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p {
  margin-bottom: 18px;
  color: #2a364d;
  font-size: 1rem;
}
strong, b { font-weight: 700; color: #1e2547; }
small {
  font-size: 0.95em;
  color: #7a89b0;
}


/* CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #F3F6FA;
  box-shadow: 0 2px 10px rgba(80, 137, 182, 0.09);
  display: flex;
  flex-direction: column;
}


/********************
 * HEADER & NAVBAR *
 ********************/
header {
  width: 100%;
  background: #fafbfc;
  border-bottom: 1.5px solid #e7eaf3;
  padding: 0;
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #20457C;
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7EFF8;
  color: #398ccb;
}
.main-nav .cta-primary {
  color: #fff !important;
  background: #20457C;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(32,69,124,0.10);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.26s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #3971A3;
  color: #fff;
  box-shadow: 0 6px 32px rgba(32,69,124,0.13);
}


/*************
 * BURGER MENU
 *************/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #20457C;
  font-size: 2rem;
  border: none;
  padding: 8px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: box-shadow 0.13s;
  z-index: 1101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e7eff8;
  box-shadow: 0 2px 10px rgba(32,69,124,0.10);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; height: 100vh;
  background: linear-gradient(120deg,#f5f7fa 70%,#e8f7f5 100%);
  box-shadow: 0 8px 32px rgba(32, 69, 124, 0.17);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding: 26px 22px 0 22px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #20457C;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 12px;
  padding: 6px 10px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #20457C;
  font-weight: 700;
  background: #F3F6FA;
  padding: 14px 18px;
  border-radius: 12px;
  text-align: left;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7EFF8;
  color: #3971A3;
}

/****************
 * HERO SECTION *
 ****************/
.hero {
  background: linear-gradient(120deg, #F5F7FA 80%, #E7EFF8 100%);
  padding: 48px 0 38px 0;
  margin-bottom: 40px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 64px 0 rgba(32, 69, 124, 0.06);
  display: flex;
  align-items: center;
  min-height: 220px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #20457C;
  font-size: 2.3rem;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(209, 226, 246, 0.3);
}
.hero p {
  color: #30436c;
  font-size: 1.15rem;
}

/**********************
 * FEATURES & SERVICES *
 **********************/
.features, .services, .faq, .comparison, .about, .team, .legal, .blog-list, .confirmation, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #F3F6FA;
  box-shadow: 0 2px 10px rgba(80, 137, 182, 0.09);
  display: flex;
  flex-direction: column;
}
.features h2, .services h2, .faq h2, .comparison h2, .about h2, .team h2, .blog-list h2, .confirmation h2, .contact h2 {
  color: #20457C;
  letter-spacing: 0.01em;
}
.features ul, .services ul, .team ul, .faq ul, .about ul, .blog-list ul {
  list-style: disc inside;
  margin-bottom: 20px;
  margin-left: 10px;
  color: #476ca4;
  font-size: 1rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.features li, .services li, .team li, .faq li, .about li, .blog-list li {
  margin-bottom: 10px;
  padding-left: 2px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: left;
}
.features .feature-grid > div {
  flex: 1 1 220px;
  background: #fafdff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(102,175,210,0.11);
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.features .feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
  opacity: 0.95;
}

/**********************
 * CARD/STYLED SECTION *
 **********************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(80,137,182,0.11);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  transition: box-shadow 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(102, 175, 210, 0.19);
}

.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(209, 226, 246, 0.19);
  padding: 26px 28px;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
  min-width: 260px;
  max-width: 600px;
  color: #1b2340;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #233661;
  margin-bottom: 8px;
}
.testimonial-card .testimonial-meta {
  font-size: 1rem;
  color: #20457C;
  font-weight: 600;
  margin-bottom: 0px;
}
.testimonial-card .star-rating {
  color: #ffc840;
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

/*********************
 * CTA BUTTONS & LINKS
 *********************/
.cta-primary, .cta-secondary {
  border: none;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 12px 28px;
  cursor: pointer;
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(32, 69, 124, 0.11);
  transition: background .17s, color .18s, box-shadow .21s, transform 0.175s;
  outline: none;
}
.cta-primary {
  background: #20457C;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #446aad;
  color: #fff;
  box-shadow: 0 8px 36px 0 rgba(32,69,124,0.16);
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: #F3F6FA;
  color: #20457C;
  border: 2px solid #20457C;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #e7eff8;
  color: #3971A3;
}

/******************
 * TABLE STYLES
 ******************/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0 24px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(114, 164, 208, 0.08);
  overflow: hidden;
}
thead {
  background: #E7EFF8;
  color: #20457C;
}
thead tr {
  border: 0;
}
th, td {
  text-align: left;
  padding: 15px 14px;
  font-size: 1rem;
  color: #28519C;
  border-bottom: 1px solid #f0f2f9;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody td {
  color: #2a364d;
}

/*******************
 * FOOTER
 *******************/
footer {
  background: #E7EFF8;
  border-top: 1.5px solid #cfd6e7;
  padding: 34px 0 28px 0;
  margin-top: 40px;
}
footer .container {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #20457C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  opacity: 0.91;
  padding: 8px 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #398ccb;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #685a29;
  font-size: 1rem;
  margin-top: 10px;
  min-width: 220px;
}
.footer-contact a {
  color: #20457C;
  font-weight: 700;
  text-decoration: none;
}
.footer-brand img {
  height: 52px;
  margin-top: 4px;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  height: 26px;
  width: 26px;
  opacity: 0.9;
  transition: filter 0.19s, opacity 0.19s;
}
.footer-social img:hover {
  filter: brightness(1.2);
  opacity: 1;
}

/**************
 * LEGAL PAGES
 **************/
.legal {
  margin-top: 42px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(164,184,215,0.13);
  color: #274275;
}
.legal h1 {
  color: #20457C;
  font-size: 2.3rem;
}
.legal h2 {
  color: #3971A3;
  font-size: 1.2rem;
  margin-top: 20px;
}
.legal ul li {
  margin-bottom: 8px;
}

/****** BLOG LIST ******/
.blog-list h2 {
  color: #20457C;
}
.blog-list ul li {
  background: #fafdff;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(80,137,182,0.07);
  margin-bottom: 18px;
  padding: 20px 16px 12px 18px;
}
.blog-list h3 {
  font-size: 1.15rem;
  color: #20457C;
  margin-bottom: 8px;
}
.blog-list h3 a {
  color: #20457C;
  text-decoration: none;
}
.blog-list h3 a:hover, .blog-list h3 a:focus {
  text-decoration: underline;
  color: #398ccb;
}

/***** CONFIRMATION (THANK YOU) *****/
.confirmation .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}
.confirmation h1 {
  margin-bottom: 12px;
}
.confirmation a.cta-primary {
  margin-top: 20px;
}

/***************
 * RESPONSIVE *
 ***************/
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .footer-brand { display: none; }
  .footer-contact { font-size: .96rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.21rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .container { padding: 0 8px; }
  .content-wrapper { max-width: 100%; padding: 0 2px; }
  .section, .features, .services, .faq, .comparison, .about, .team, .legal, .blog-list, .cta, .contact, .confirmation {
    padding: 24px 5px;
    margin-bottom: 34px;
  }
  .features .feature-grid, .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .footer-nav { flex-direction: column; gap: 10px; }
  .footer-contact { margin-bottom: 10px; }
  .hero { padding: 30px 0 22px 0; border-radius: 0 0 24px 24px; }
  .mobile-menu { padding-right: 2vw; }
  .blog-list ul li { padding: 17px 5px 10px 14px; }
  .testimonial-card { padding: 16px 10px; margin-bottom: 12px; }
  table, thead, tbody, th, td, tr { font-size: 0.93rem; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.13rem; }
}

/*****************
 * MICRO EFFECTS *
 *****************/
.section, .features, .services, .faq, .comparison, .about, .team, .legal, .blog-list, .cta, .contact, .confirmation {
  transition: box-shadow 0.19s, background 0.22s;
}
.section:hover, .features:hover, .services:hover, .faq:hover, .comparison:hover, .about:hover, .team:hover, .legal:hover, .blog-list:hover, .cta:hover, .contact:hover, .confirmation:hover {
  box-shadow: 0 7px 40px 0 rgba(180,208,232,0.13);
}
.card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.21s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(169,214,255,0.18);
  transform: translateY(-1.5px) scale(1.009);
}

/*************************
 * COOKIE CONSENT BANNER *
 *************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  color: #3a3354;
  padding: 22px 16px 18px 16px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 32px rgba(207, 179, 94, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.29s;
  min-height: 70px;
  width: 98vw;
  max-width: 660px;
  left: 50%;
  transform: translateX(-50%);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1.05rem;
  color: #443e25;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  padding: 10px 18px;
  outline: none;
  cursor: pointer;
  background: #F8ECA6;
  color: #694d03;
  box-shadow: 0 0.5px 3px rgba(207, 179, 94, 0.10);
  transition: background 0.13s, color 0.1s;
}
.cookie-banner-btn.cookie-accept {
  background: #DCA800;
  color: #fff;
}
.cookie-banner-btn.cookie-accept:hover, .cookie-banner-btn.cookie-accept:focus {
  background: #c69400;
}
.cookie-banner-btn.cookie-reject {
  background: #E7EFF8;
  color: #20457C;
}
.cookie-banner-btn.cookie-reject:hover, .cookie-banner-btn.cookie-reject:focus {
  background: #cfd6e7;
  color: #22497d;
}
.cookie-banner-btn.cookie-settings {
  background: #fffbe7;
  color: #856924;
  border: 1px solid #ebd06a;
}
.cookie-banner-btn.cookie-settings:hover, .cookie-banner-btn.cookie-settings:focus {
  background: #fff7da;
}

/**************
 * COOKIE MODAL *
 **************/
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(53,53,53,0.26);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 425px;
  width: 92vw;
  padding: 32px 22px 18px 22px;
  box-shadow: 0 4px 38px 0 rgba(32,42,84,0.15);
  display: flex;
  flex-direction: column;
  z-index: 3101;
  animation: modalIn 0.33s;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(44px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 { font-size: 1.21rem; color: #20457C; } 
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 19px 0 10px 0;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: #20457C;
  width: 18px;
  height: 18px;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #20457C;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
  margin-top: 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #20457C;
  cursor: pointer;
  z-index: 3200;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 14vw 3vw 24px 3vw;
    max-width: 90vw;
  }
}

/*******************
 * FOCUS INDICATOR *
 *******************/
:focus-visible {
  outline: 2px solid #20457C;
  outline-offset: 1.5px;
}

/***************
 * ACCESSIBILITY
 ***************/
[tabindex]:focus {
  outline: 2px solid #20457C !important;
  outline-offset: 2px;
}

/***************
 * PASTEL COLORS BACKGROUND/SHADES
 ***************/
html, body {
  background: #F3F6FA;
}
.section, .features, .services, .legal, .team, .about, .blog-list, .cta, .faq, .comparison, .contact, .confirmation {
  background: #F5F7FA;
  box-shadow: 0 3px 30px 0 rgba(209, 226, 246, 0.06);
}
.card, .testimonial-card {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(220, 232, 255, 0.13);
}
h1, h2, h3 { color: #20457C; }
p, span, td, th, li { color: #274275; }


/*****************
 * UI SOFTNESS
 *****************/
.card, .testimonial-card, .cookie-banner, .cookie-modal, .features .feature-grid > div, .blog-list ul li {
  border-radius: 14px 28px 18px 20px;
}
h1, h2, h3, .cta-primary, .cta-secondary {
  border-radius: 9px 18px 7px 11px;
}

/*******************
 * UTILITIES
 *******************/
.mb-2 { margin-bottom: 16px!important; }
.mb-3 { margin-bottom: 24px!important; }
.mt-2 { margin-top: 16px!important; }
.mt-3 { margin-top: 24px!important; }
.pt-2 { padding-top: 16px!important; }
.pt-3 { padding-top: 24px!important; }
.text-center { text-align: center!important; }
.flex { display: flex!important; }
.flex-col { flex-direction: column!important; }

/*****************
 * ANIMATIONS
 *****************/
.cta-primary, .cta-secondary, .main-nav a, .mobile-nav a {
  transition: background 0.19s, color 0.19s, box-shadow 0.21s, padding 0.11s, transform 0.19s;
}

/*******************
 * Z-INDEX
 *******************/
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal, .cookie-modal-backdrop { z-index: 3100; }

/*******************
 * MINIMUM SPACING
 *******************/
.features .feature-grid > div,
.card, .testimonial-card, .blog-list ul li,
.footer-contact, .footer-nav a, .footer-social img {
  margin-bottom: 20px;
}
.features .feature-grid > div:last-child, .card:last-child, .testimonial-card:last-child, .blog-list ul li:last-child { margin-bottom: 0; }

/*******************
 * VISUAL HIERARCHY (SOFT DREAMY PASTEL)
 *******************/
.hero, .cta {
  background: linear-gradient(120deg, #F5F7FA 75%, #E7EFF8 100%);
  border-radius: 0 0 44px 44px;
}

/*******************
 * FORMS (for future expansion)
 *******************/
input, select, textarea {
  border-radius: 9px;
  border: 1.2px solid #bfd0ea;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #ffffff;
  transition: border 0.18s;
  margin-bottom: 18px;
  color: #1f334d;
}
input:focus, select:focus, textarea:focus {
  border-color: #20457C;
  outline: none;
}

::-webkit-input-placeholder { color: #aabddc; opacity: 1; }
::-moz-placeholder { color: #aabddc; opacity:1; }
:-ms-input-placeholder { color: #aabddc; opacity:1; }
::placeholder { color: #aabddc; opacity:1; }

/*************
 * END *
 *************/
