  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --rojo: #D6272B;
    --rojo-oscuro: #a81e21;
    --negro: #111111;
    --blanco: #FAFAF8;
    --gris-claro: #F2F0EC;
    --gris-medio: #C8C5BE;
    --gris-texto: #5A5751;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  body {
    font-family: var(--font-body);
    background: var(--blanco);
    color: var(--negro);
    min-height: 100vh;
  }

  /* HERO */
  .hero {
    background: var(--negro);
    color: var(--blanco);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '700+';
    position: absolute;
    right: -20px;
    top: -30px;
    font-family: var(--font-display);
    font-size: 260px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .hero-inner { max-width: 1100px; margin: 0 auto; }
  .hero-tag {
    display: inline-block;
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .hero h1 span { color: var(--rojo); }
  .hero-desc {
    font-size: 17px;
    color: var(--gris-medio);
    max-width: 520px;
    line-height: 1.6;
  }

  /* STATS */
  .stats-bar {
    background: var(--rojo);
    padding: 24px 40px;
  }
  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: var(--blanco);
    line-height: 1;
  }
  .stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
  }
  .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
  }

  /* MAIN CONTENT */
  .main { max-width: 1100px; margin: 0 auto; padding: 50px 40px 80px; }

  /* CONTROLS */
  .controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gris-claro);
  }
  .search-wrap {
    flex: 1;
    min-width: 220px;
    position: relative;
  }
  .search-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gris-medio);
  }
  .search-wrap input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1.5px solid var(--gris-claro);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    background: white;
    color: var(--negro);
    outline: none;
    transition: border-color 0.2s;
  }
  .search-wrap input:focus { border-color: var(--rojo); }
  .search-wrap input::placeholder { color: var(--gris-medio); }

  .filters { display: flex; gap: 6px; flex-wrap: wrap; }
  .filter-btn {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 1.5px solid var(--gris-claro);
    background: white;
    color: var(--gris-texto);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.15s;
  }
  .filter-btn:hover { border-color: var(--negro); color: var(--negro); }
  .filter-btn.active { background: var(--negro); color: var(--blanco); border-color: var(--negro); }
  .filter-btn.active.t3 { background: #2D4A6B; border-color: #2D4A6B; }
  .filter-btn.active.t1 { background: #1A6B4A; border-color: #1A6B4A; }
  .filter-btn.active.t2 { background: #8B5E10; border-color: #8B5E10; }
  .filter-btn.active.ts { background: var(--rojo); border-color: var(--rojo); }

  /* RESULTS COUNT */
  .results-info {
    font-size: 13px;
    color: var(--gris-texto);
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .results-info strong { color: var(--negro); font-weight: 700; }

  /* GRID */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
  }

  .card {
    background: white;
    border: 1px solid var(--gris-claro);
    border-radius: 4px;
    padding: 14px 16px;
    transition: all 0.15s;
    cursor: default;
    animation: fadeIn 0.2s ease;
  }
  .card:hover {
    border-color: var(--gris-medio);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .card-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gris-medio);
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .card-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .card-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 2px;
  }
  .badge-t3 { background: #E8EEF5; color: #2D4A6B; }
  .badge-t1 { background: #E4F2EC; color: #1A6B4A; }
  .badge-t2 { background: #F5EDDF; color: #8B5E10; }
  .badge-ts { background: #FDEAEA; color: var(--rojo-oscuro); }

  /* EMPTY STATE */
  .empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gris-texto);
  }
  .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
  }
  .empty p { font-size: 16px; }

  /* FOOTER CTA */
  .cta-section {
    background: var(--negro);
    padding: 60px 40px;
    text-align: center;
  }
  .cta-inner { max-width: 600px; margin: 0 auto; }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blanco);
    line-height: 0.95;
    margin-bottom: 16px;
  }
  .cta-section h2 span { color: var(--rojo); }
  .cta-section p { color: var(--gris-medio); font-size: 16px; margin-bottom: 28px; }
  .cta-btn {
    display: inline-block;
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
  }
  .cta-btn:hover { background: var(--rojo-oscuro); }

  @media (max-width: 600px) {
    .hero { padding: 50px 20px 40px; }
    .stats-bar { padding: 20px; }
    .stats-inner { gap: 20px; }
    .stat-divider { display: none; }
    .main { padding: 30px 16px 60px; }
    .controls { flex-direction: column; align-items: stretch; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .cta-section { padding: 40px 20px; }
  }
body
{
   background-color: #F5F5F5;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #808080;
   text-decoration: underline;
}
a:hover
{
   color: #000000;
   text-decoration: underline;
}
.wb-theme-header
{
   background-color: #F8F8F8;
   background-image: none;
   border: 1px solid #D2D2D2;
   border-radius: 0px;
   color: #212529;
   --background-color: rgba(248,248,248,1.00);
   --border-color: #D2D2D2;
   --border-width: 1px;
   --color: #212529;
}
.wb-theme-content
{
   background-color: #FFFFFF;
   background-image: none;
   border: 1px solid #DEE2E6;
   border-radius: 0px;
   color: #212529;
   --background-color: rgba(255,255,255,1.00);
   --border-color: #DEE2E6;
   --border-width: 1px;
   --color: #212529;
   --icon-color: #0D6EFD;
   --colorize: invert(36%) sepia(74%) saturate(4827%) hue-rotate(208deg) brightness(100%) contrast(99%);
}
.wb-theme-button, .wb-theme-static
{
   background-color: #0D6EFD;
   background-image: none;
   border: 1px solid #0D6EFD;
   border-radius: 0px;
   color: #FFFFFF;
   --background-color: rgba(13,110,253,1.00);
   --border-color: #0D6EFD;
   --border-width: 1px;
   --color: #FFFFFF;
}
.wb-theme-button:hover
{
   background-color: #0B5ED7;
   background-image: none;
   border: 1px solid #0A58CA;
   border-radius: 0px;
   color: #FFFFFF;
   --background-color: rgba(11,94,215,1.00);
   --border-color: #0A58CA;
   --border-width: 1px;
   --color: #FFFFFF;
}
.wb-theme-button.active, .wb-theme-button:active, .active > .wb-theme-button
{
   background-color: #0A58CA;
   background-image: none;
   border: 1px solid #0A53BE;
   border-radius: 0px;
   color: #FFFFFF;
   --background-color: rgba(10,88,202,1.00);
   --border-color: #0A53BE;
   --border-width: 1px;
   --color: #FFFFFF;
}
.darktheme .wb-theme-header
{
   background-color: #272B2F;
   background-image: none;
   border: 1px solid #424549;
   border-radius: 0px;
   color: #DEE2E6;
   --background-color: rgba(39,43,47,1.00);
   --border-color: #424549;
   --border-width: 1px;
   --color: #DEE2E6;
}
.darktheme .wb-theme-content
{
   background-color: #212529;
   background-image: none;
   border: 1px solid #495057;
   border-radius: 0px;
   color: #DEE2E6;
   --background-color: rgba(33,37,41,1.00);
   --border-color: #495057;
   --border-width: 1px;
   --color: #DEE2E6;
   --icon-color: #0D6EFD;
   --colorize: invert(29%) sepia(82%) saturate(3007%) hue-rotate(209deg) brightness(100%) contrast(99%);
}
.darktheme .wb-theme-button, .darktheme .wb-theme-static
{
   background-color: #0D6EFD;
   background-image: none;
   border: 1px solid #0D6EFD;
   border-radius: 0px;
   color: #FFFFFF;
   --background-color: rgba(13,110,253,1.00);
   --border-color: #0D6EFD;
   --border-width: 1px;
   --color: #FFFFFF;
}
.darktheme .wb-theme-button:hover
{
   background-color: #0B5ED7;
   background-image: none;
   border: 1px solid #0A58CA;
   border-radius: 0px;
   color: #FFFFFF;
   --background-color: rgba(11,94,215,1.00);
   --border-color: #0A58CA;
   --border-width: 1px;
   --color: #FFFFFF;
}
.darktheme .wb-theme-button.active, .darktheme .wb-theme-button:active, .active > .wb-theme-button
{
   background-color: #0A58CA;
   background-image: none;
   border: 1px solid #0A53BE;
   border-radius: 0px;
   color: #FFFFFF;
   --background-color: rgba(10,88,202,1.00);
   --border-color: #0A53BE;
   --border-width: 1px;
   --color: #FFFFFF;
}
#wb_menu19LayoutGrid
{
   clear: both;
   position: fixed;
   left: 0;
   top: 0;
   z-index: 7777;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   box-sizing: border-box;
   margin: 0;
}
#menu19LayoutGrid
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 0;
   margin-right: auto;
   margin-left: auto;
}
#menu19LayoutGrid > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#menu19LayoutGrid > .col-1
{
   flex: 0 0 auto;
}
#menu19LayoutGrid > .col-1
{
   background-color: #0D6EFD;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: flex-start;
   text-align: left;
}
@media (max-width: 320px)
{
#menu19LayoutGrid > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#menu19Button2
{
   box-sizing: border-box;
   line-height: 29px;
   text-decoration: none;
   vertical-align: top;
   border: 0px solid rgba(255,255,255,0.00);
   border-radius: 25px;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: "Open Sans";
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   padding: 8px 10px 8px 10px;
   text-align: center;
   -webkit-appearance: none;
   margin: 0;
}
#menu19Button2:focus
{
   outline: 0;
}
#wb_ResponsiveMenu1
{
   display: block;
   font-family: Arial;
   font-weight: normal;
   text-align: left;
   width: 100%;
   margin: 0;
   z-index: 1111 !important;
}
#ResponsiveMenu1
{
   background-color: #F5F5F5;
   height: 46px;
}
#wb_ResponsiveMenu1 ul
{
   list-style: none;
   margin: 0;
   padding: 0;
   position: relative;
}
#wb_ResponsiveMenu1 ul:after
{
   clear: both;
   content: "";
   display: block;
}
#wb_ResponsiveMenu1 ul li
{
   border-radius: 0;
   display: list-item;
   float: left;
   list-style: none;
   z-index: 9999;
}
#wb_ResponsiveMenu1 ul li i
{
   font-size: 0px;
   width: 0px;
   margin-bottom: 0px;
}
#wb_ResponsiveMenu1 ul li a
{
   background-color: #F5F5F5;
   color: #4F4F4F;
   font-family: Arial;
   font-weight: normal;
   font-size: 15px;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   padding: 15px 15px 15px 15px;
   text-align: center;
}
#wb_ResponsiveMenu1 > ul > li > a 
{
   height: 16px;
}
.ResponsiveMenu1 a 
{
   display: block;
}
#wb_ResponsiveMenu1 li:hover > a, #wb_ResponsiveMenu1 li .active
{
   background-color: #F5F5F5;
   color: #000000;
}
#wb_ResponsiveMenu1 ul ul
{
   display: none;
   position: absolute;
   top: 46px;
}
#wb_ResponsiveMenu1 ul li:hover > ul
{
   display: list-item;
}
#wb_ResponsiveMenu1 ul ul li 
{
   float: none;
   position: relative;
   width: 346px;
}
#wb_ResponsiveMenu1 ul ul li a
{
   background-color: #F5F5F5;
   border: 0px solid #F5F5F5;
   color: #4F4F4F;
}
#wb_ResponsiveMenu1 ul ul li:hover > a, #wb_ResponsiveMenu1 ul ul li .active
{
   background-color: #F5F5F5;
   color: #000000;
}
#wb_ResponsiveMenu1 ul ul li i 
{
   margin-right: 0px;
   vertical-align: middle;
}
#wb_ResponsiveMenu1 ul ul li a 
{
   padding-top: 15px;
   padding-right: 15px;
   padding-bottom: 15px;
   text-align: left;
   vertical-align: middle;
}
#wb_ResponsiveMenu1 ul ul ul li 
{
   left: 346px;
   position: relative;
   top: -46px;
}
#wb_ResponsiveMenu1 .arrow-down 
{
   display: inline-block;
   width: 0;
   height: 0;
   margin-left: 1px;
   vertical-align: middle;
   border-top: 4px solid #4F4F4F;
   border-right: 4px solid transparent;
   border-left: 4px solid transparent;
   border-bottom: 0 dotted;
}
#wb_ResponsiveMenu1 .arrow-left 
{
   display: inline-block;
   width: 0;
   height: 0;
   margin-left: 1px;
   vertical-align: middle;
   border-left: 4px solid #4F4F4F;
   border-top: 4px solid transparent;
   border-bottom: 4px solid transparent;
   border-right: 0 dotted;
}
#wb_ResponsiveMenu1 li:hover > a .arrow-down, #wb_ResponsiveMenu1 li .active .arrow-down
{ 
   border-top-color: #000000;
}
#wb_ResponsiveMenu1 ul ul li:hover > a .arrow-left, #wb_ResponsiveMenu1 ul ul li .active .arrow-left
{ 
   border-left-color: #000000;
}
#wb_ResponsiveMenu1 .toggle,[id^=ResponsiveMenu1-submenu]
{
   display: none;
}
@media all and (max-width:768px) 
{
#wb_ResponsiveMenu1
{
   margin: 0;
   text-align: left;
}
#wb_ResponsiveMenu1 ul li a, #wb_ResponsiveMenu1 .toggle
{
   font-size: 15px;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   padding: 15px 15px 15px 15px;
}
#wb_ResponsiveMenu1 .toggle + a
{
   display: none !important;
}
.ResponsiveMenu1 
{
   display: none;
   z-index: 9999;
}
#ResponsiveMenu1 
{
   background-color: transparent;
}
#wb_ResponsiveMenu1 > ul > li > a 
{
   height: auto !important;
   margin: 0;
}
#wb_ResponsiveMenu1 .toggle 
{
   display: block;
   background-color: #F5F5F5;
   color: #4F4F4F;
   padding: 0 15px 0 15px;
   line-height: 47px;
   text-decoration: none;
   border: none;
   position: relative;
}
#wb_ResponsiveMenu1 .toggle:hover
{
   background-color: #F5F5F5;
   color: #000000;
}
[id^=ResponsiveMenu1-submenu]:checked + ul 
{
   display: block !important;
}
#ResponsiveMenu1-title
{
   height: 46px !important;
   line-height: 46px !important;
   text-align: left;
}
#wb_ResponsiveMenu1 ul li 
{
   display: block;
   width: 100% !important;
   text-align: left;
}
#wb_ResponsiveMenu1 ul ul .toggle,
#wb_ResponsiveMenu1 ul ul a 
{
   padding: 0 30px;
}
#wb_ResponsiveMenu1 a:hover,
#wb_ResponsiveMenu1 ul ul ul a 
{
   background-color: #F5F5F5;
   color: #4F4F4F;
}
#wb_ResponsiveMenu1 ul li ul li .toggle,
#wb_ResponsiveMenu1 ul ul a 
{
   background-color: #F5F5F5;
   color: #4F4F4F;
}
#wb_ResponsiveMenu1 ul ul ul a 
{
   padding: 15px 15px 15px 45px;
}
#wb_ResponsiveMenu1 ul li a 
{
   text-align: left;
}
#wb_ResponsiveMenu1 ul li a br 
{
   display: none;
}
#wb_ResponsiveMenu1 ul li i 
{
   margin-right: 0px;
}
#wb_ResponsiveMenu1 ul ul 
{
   float: none;
   position: static;
}
#wb_ResponsiveMenu1 ul ul li:hover > ul,
#wb_ResponsiveMenu1 ul li:hover > ul 
{
   display: none;
}
#wb_ResponsiveMenu1 ul ul li 
{
   display: block;
   width: 100%;
}
#wb_ResponsiveMenu1 ul ul ul li 
{
   position: static;
}
#ResponsiveMenu1-icon 
{
   display: block;
   position: absolute;
   right: 15px;
   top: 11px;
   user-select: none;
}
#ResponsiveMenu1-icon span 
{
   display: block;
   margin-top: 4px;
   height: 2px;
   background-color: #4F4F4F;
   color: #4F4F4F;
   width: 24px;
}
#wb_ResponsiveMenu1 ul li ul li .toggle:hover
{
   background-color: #F5F5F5;
   color: #000000;
}
#wb_ResponsiveMenu1 .toggle .arrow-down 
{
   border-top-color: #4F4F4F;
}
#wb_ResponsiveMenu1 .toggle:hover .arrow-down, #wb_ResponsiveMenu1 li .active .arrow-down
{
   border-top-color: #000000;
}
#wb_ResponsiveMenu1 ul li ul li .toggle .arrow-down 
{
   border-top-color: #4F4F4F;
}
#wb_ResponsiveMenu1 ul li ul li .toggle:hover .arrow-down, #wb_ResponsiveMenu1 ul li ul li .active .arrow-down
{
   border-top-color: #000000;
}
}
#wb_header9LayoutGrid
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   height: 100vh;
   background-color: transparent;
   background-image: url('images/sudadera modelo college.png');
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#header9LayoutGrid
{
   box-sizing: border-box;
   height: 100vh;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 100px 0 100px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1140px;
}
#header9LayoutGrid > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 0px;
   padding-left: 0px;
   position: relative;
}
#header9LayoutGrid > .col-1
{
   flex: 0 0 auto;
}
#header9LayoutGrid > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 768px)
{
#header9LayoutGrid > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#header9LayoutGrid-overlay
{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 0px;
   background-color: #000000;
   opacity: 0.49;
}
#wb_footer24Card4
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0 0 30px 0 ;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   text-align: left;
}
#footer24Card4-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#footer24Card4-card-item0
{
   box-sizing: border-box;
   margin: 0 0 25px 0 ;
   padding: 0;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 19px;
}
#footer24Card4-card-item1
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card4-card-item1 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card4-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card4-card-item2 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card4-card-item3
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card4-card-item3 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card4-card-item4
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card4-card-item4 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card4-card-item5
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card4-card-item5 a
{
   color: inherit;
   text-decoration: none;
}
#wb_footer24Card7
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0 0 30px 0 ;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   text-align: left;
}
#footer24Card7-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#footer24Card7-card-item0
{
   box-sizing: border-box;
   margin: 0 0 25px 0 ;
   padding: 0;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 19px;
}
#footer24Card7-card-item1
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card7-card-item1 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card7-card-item1 i
{
   color: #FFFFFF;
   margin-right: 8px;
   text-align: center;
   vertical-align: top;
   font-size: 15px;
   width: 15px;
}
#footer24Card7-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card7-card-item2 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card7-card-item2 i
{
   color: #FFFFFF;
   margin-right: 8px;
   text-align: center;
   vertical-align: top;
   font-size: 16px;
   width: 16px;
}
#footer24Card7-card-item3
{
   box-sizing: border-box;
   margin: 0;
   padding: 0 0 16px 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card7-card-item3 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card7-card-item3 i
{
   color: #FFFFFF;
   margin-right: 8px;
   text-align: center;
   vertical-align: top;
   font-size: 16px;
   width: 16px;
}
#footer24Card7-card-item4
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card7-card-item4 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card7-card-item4 i
{
   color: #FFFFFF;
   margin-right: 8px;
   text-align: center;
   vertical-align: top;
   font-size: 16px;
   width: 16px;
}
#wb_footer24Card1
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0 0 30px 0 ;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   text-align: left;
}
#footer24Card1-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#footer24Card1-card-item0
{
   box-sizing: border-box;
   margin: 0 0 25px 0 ;
   padding: 0;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 19px;
}
#footer24Card1-card-item1
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
   line-height: 19.5px;
}
#wb_footer24Card3
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0 0 30px 0 ;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   text-align: left;
}
#footer24Card3-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#footer24Card3-card-item0
{
   box-sizing: border-box;
   margin: 0 0 25px 0 ;
   padding: 0;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 19px;
}
#footer24Card3-card-item0 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item1
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item1 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item2 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item3
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item3 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item4
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item4 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item5
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item5 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item6
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item6 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item7
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item7 a
{
   color: inherit;
   text-decoration: none;
}
#footer24Card3-card-item8
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   color: #DCDCDC;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 15px;
}
#footer24Card3-card-item8 a
{
   color: inherit;
   text-decoration: none;
}
#wb_footer24Card2
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0 0 30px 0 ;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   text-align: left;
}
#footer24Card2-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#footer24Card2-card-item0
{
   box-sizing: border-box;
   margin: 0 0 25px 0 ;
   padding: 0;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 19px;
}
#footer24Card2-card-item1
{
   display: inline-block;
   height: 33px;
   box-sizing: border-box;
   margin: 0 4px 4px 0 ;
   border: 1px solid #8A8A8F;
   border-radius: 50%;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
}
#footer24Card2-card-item1 a
{
   color: inherit;
   display: block;
   padding: 9px 10px 9px 10px;
   text-decoration: none;
}
#footer24Card2-card-item1 i
{
   margin-right: 0px;
   text-align: center;
   vertical-align: top;
   font-size: 13px;
   width: 13px;
}
#footer24Card2-card-item2
{
   display: inline-block;
   height: 33px;
   box-sizing: border-box;
   margin: 0 4px 4px 0 ;
   border: 1px solid #8A8A8F;
   border-radius: 50%;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
}
#footer24Card2-card-item2 a
{
   color: inherit;
   display: block;
   padding: 9px 10px 9px 10px;
   text-decoration: none;
}
#footer24Card2-card-item2 i
{
   margin-right: 0px;
   text-align: center;
   vertical-align: top;
   font-size: 13px;
   width: 13px;
}
#footer24Card2-card-item3
{
   display: inline-block;
   height: 33px;
   box-sizing: border-box;
   margin: 0 4px 4px 0 ;
   border: 1px solid #8A8A8F;
   border-radius: 50%;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
}
#footer24Card2-card-item3 a
{
   color: inherit;
   display: block;
   padding: 9px 10px 9px 10px;
   text-decoration: none;
}
#footer24Card2-card-item3 i
{
   margin-right: 0px;
   text-align: center;
   vertical-align: top;
   font-size: 13px;
   width: 13px;
}
#footer24Card2-card-item4
{
   display: inline-block;
   height: 33px;
   box-sizing: border-box;
   margin: 0 4px 4px 0 ;
   border: 1px solid #8A8A8F;
   border-radius: 50%;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
}
#footer24Card2-card-item4 a
{
   color: inherit;
   display: block;
   padding: 9px 10px 9px 10px;
   text-decoration: none;
}
#footer24Card2-card-item4 i
{
   margin-right: 0px;
   text-align: center;
   vertical-align: top;
   font-size: 13px;
   width: 13px;
}
#footer24Card2-card-item5
{
   display: inline-block;
   height: 33px;
   box-sizing: border-box;
   margin: 0 4px 4px 0 ;
   border: 1px solid #8A8A8F;
   border-radius: 50%;
   background-color: transparent;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
}
#footer24Card2-card-item5 a
{
   color: inherit;
   display: block;
   padding: 9px 10px 9px 10px;
   text-decoration: none;
}
#footer24Card2-card-item5 i
{
   margin-right: 0px;
   text-align: center;
   vertical-align: top;
   font-size: 13px;
   width: 13px;
}
#footer24Card2-card-item6
{
   display: inline-block;
   height: 16px;
   box-sizing: border-box;
   margin: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   background-color: transparent;
   background-image: none;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
}
#footer24Card2-card-item6 a
{
   color: inherit;
   display: block;
   padding: 0;
   text-decoration: none;
}
#wb_footer24Heading1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   vertical-align: top;
   margin: 0 0 25px 0 ;
   padding: 0;
   text-align: left;
}
#footer24Heading1
{
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 19px;
   margin: 0;
   text-align: left;
   text-transform: none;
}
#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text1 div
{
   text-align: left;
}
#wb_Text1
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text2 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text2
{
   color: #DCDCDC;
   font-family: Arial;
   font-weight: 400;
   font-size: 16px;
   line-height: 18px;
}
#wb_Text2 p, #wb_Text2 ul
{
   margin: 0;
   padding: 0;
}
#wb_Text2
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text3 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text3 div
{
   text-align: left;
}
#wb_Text3
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text4 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text4 div
{
   text-align: left;
}
#wb_Text4
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text5 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text5 div
{
   text-align: left;
}
#wb_Text5
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text6 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text6 div
{
   text-align: left;
}
#wb_Text6
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_header3Heading
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   vertical-align: top;
   margin: 0;
   padding: 50px 50px 25px 50px;
   text-align: center;
}
#header3Heading
{
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 64px;
   margin: 0;
   text-align: center;
   text-transform: none;
}
#wb_LayoutGrid1
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#LayoutGrid1
{
   box-sizing: border-box;
   padding: 0;
   margin-right: auto;
   margin-left: auto;
}
#LayoutGrid1 > .row
{
   margin-right: 0;
   margin-left: 0;
}
#LayoutGrid1 > .row > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 0px;
   padding-left: 0px;
   position: relative;
}
#LayoutGrid1 > .row > .col-1
{
   float: left;
}
#LayoutGrid1 > .row > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 100%;
   text-align: left;
}
#LayoutGrid1:before,
#LayoutGrid1:after,
#LayoutGrid1 .row:before,
#LayoutGrid1 .row:after
{
   display: table;
   content: " ";
}
#LayoutGrid1:after,
#LayoutGrid1 .row:after
{
   clear: both;
}
@media (max-width: 480px)
{
#LayoutGrid1 > .row > .col-1
{
   float: none;
   width: 100%;
}
}
#wb_header3LayoutGrid
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   height: 100vh;
   background-color: transparent;
   background-image: url('images/Kronix sudaderas.png');
   background-repeat: no-repeat;
   background-position: center center;
   background-attachment: fixed;
   background-position: 50% 0;
   background-size: cover;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#header3LayoutGrid
{
   box-sizing: border-box;
   height: 100vh;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1140px;
}
#header3LayoutGrid > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#header3LayoutGrid > .col-1
{
   flex: 0 0 auto;
}
#header3LayoutGrid > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-end;
   align-self: stretch;
   align-items: flex-end;
   justify-content: center;
   text-align: center;
}
@media (max-width: 480px)
{
#header3LayoutGrid > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_footer24LayoutGrid
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #5D5D5E;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#footer24LayoutGrid
{
   box-sizing: border-box;
   padding: 100px 15px 70px 15px;
   margin-right: auto;
   margin-left: auto;
   max-width: 1140px;
}
#footer24LayoutGrid > .row
{
   margin-right: -15px;
   margin-left: -15px;
}
#footer24LayoutGrid > .row > .col-1, #footer24LayoutGrid > .row > .col-2, #footer24LayoutGrid > .row > .col-3, #footer24LayoutGrid > .row > .col-4
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#footer24LayoutGrid > .row > .col-1, #footer24LayoutGrid > .row > .col-2, #footer24LayoutGrid > .row > .col-3, #footer24LayoutGrid > .row > .col-4
{
   float: left;
}
#footer24LayoutGrid > .row > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: left;
}
#footer24LayoutGrid > .row > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: left;
}
#footer24LayoutGrid > .row > .col-3
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: left;
}
#footer24LayoutGrid > .row > .col-4
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: left;
}
#footer24LayoutGrid:before,
#footer24LayoutGrid:after,
#footer24LayoutGrid .row:before,
#footer24LayoutGrid .row:after
{
   display: table;
   content: " ";
}
#footer24LayoutGrid:after,
#footer24LayoutGrid .row:after
{
   clear: both;
}
@media (max-width: 480px)
{
#footer24LayoutGrid > .row > .col-1, #footer24LayoutGrid > .row > .col-2, #footer24LayoutGrid > .row > .col-3, #footer24LayoutGrid > .row > .col-4
{
   float: none;
   width: 100% !important;
}
}
#wb_header9Heading
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   vertical-align: top;
   margin: 0;
   padding: 0 0 15px 0;
   text-align: center;
}
#header9Heading
{
   color: #FFFFFF;
   font-family: Arial;
   font-weight: bold;
   font-style: normal;
   font-size: 53px;
   margin: 0;
   text-align: center;
   text-transform: none;
}
#wb_header9Text 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0 0 15px 0 ;
   text-align: center;
}
#wb_header9Text
{
   color: #FFFFFF;
   font-family: Verdana;
   font-weight: 400;
   font-size: 24px;
   line-height: 29.5px;
}
#wb_header9Text p, #wb_header9Text ul
{
   margin: 0;
   padding: 0;
}
#wb_header9Text
{
   display: block;
   margin: 0 0 15px 0 ;
   box-sizing: border-box;
   width: 100%;
}
#wb_header9Icon1
{
   background-color: transparent;
   background-image: none;
   border: 2px solid #FFFFFF;
   border-radius: 50%;
   text-align: center;
   margin: 8px 8px 8px 8px;
   padding: 20px 20px 20px 20px;
   vertical-align: top;
   display:inline-block;
   position:relative;
}
#header9Icon1
{
   height: 28px;
   width: 28px;
   display: flex;
   flex-wrap: nowrap;
   justify-content: center;
}
#header9Icon1 i
{
   color: #FFFFFF;
   display: inline-block;
   font-size: 28px;
   line-height: 28px;
   vertical-align: middle;
}
#wb_header9Icon1:hover #header9Icon1 i
{
   color: #FFFFFF;
}
#wb_header9Icon2
{
   background-color: transparent;
   background-image: none;
   border: 2px solid #FFFFFF;
   border-radius: 50%;
   text-align: center;
   margin: 8px 8px 8px 8px;
   padding: 20px 20px 20px 20px;
   vertical-align: top;
   display:inline-block;
   position:relative;
}
#header9Icon2
{
   height: 28px;
   width: 28px;
   display: flex;
   flex-wrap: nowrap;
   justify-content: center;
}
#header9Icon2 i
{
   color: #FFFFFF;
   display: inline-block;
   font-size: 28px;
   line-height: 28px;
   vertical-align: middle;
}
#wb_header9Icon2:hover #header9Icon2 i
{
   color: #FFFFFF;
}
#wb_header9Icon3
{
   background-color: transparent;
   background-image: none;
   border: 2px solid #FFFFFF;
   border-radius: 50%;
   text-align: center;
   margin: 8px 8px 8px 8px;
   padding: 20px 20px 20px 20px;
   vertical-align: top;
   display:inline-block;
   position:relative;
}
#header9Icon3
{
   height: 28px;
   width: 28px;
   display: flex;
   flex-wrap: nowrap;
   justify-content: center;
}
#header9Icon3 i
{
   color: #FFFFFF;
   display: inline-block;
   font-size: 28px;
   line-height: 28px;
   vertical-align: middle;
}
#wb_header9Icon3:hover #header9Icon3 i
{
   color: #FFFFFF;
}
