/*---------------------------------------------------------------------
//                                                                   //
//                             ACCUEIL                               //
//                                                                   //
---------------------------------------------------------------------*/


body.home {
    background-color: #c4e0f2;
}

/*------------------------------- HEADER */
.home__header {
    position: relative;
    height: 100vh;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home__header__centerer {
    padding: 0px 10%;
    text-align: center;
}

.home__header__logo svg {
    width: 90%;
    max-width: 447px;
    height: auto;
}

.home__header__logo svg path {
    fill: #15384c;
}

.home__header__title {
    font-size: 2.6rem;
    line-height: 1.4em;
    margin-top: .9em;
    font-weight: 200;
}

.home__header.revealOnScroll .home__header__logo {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity .5s linear, transform .7s ease-out;
}

.home__header.revealOnScroll .home__header__title {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .5s linear .3s, transform .7s ease-out .3s;
}
.home__header.revealOnScroll.reveal .home__header__logo, .home__header.revealOnScroll.reveal .home__header__title {
    opacity: 1;
    transform: none;
}

.home__header__arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -22px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 7;
}

.home__header__arrow__graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/scrollarrow.png) 50% 50% no-repeat;
    background-size: contain;
    pointer-events: none;
    
    -webkit-animation: 3s linear 0s infinite arrowanim;
    animation: 3s linear 0s infinite arrowanim;
}

.home__header__arrow__graphic--2 {
    background-image: url(../img/scrollarrow-yellow.png);
    -webkit-filter: drop-shadow(0px 0px 12px #000);
    filter: drop-shadow(0px 0px 12px #000);
}

@media screen and (min-width:600px) {
    .home__header__title {
        font-size: 3.6rem;
    }
}

@media screen and (min-height:500px) {
    .home__header__arrow {
        bottom: 40px;
        margin-left: -33px;
        width: 66px;
        height: 66px;
    }
}

@-webkit-keyframes arrowanim {
  0% { top: 0%; }
  50% { top: 0%; }
  85% { top: -10%; }
  90% { top: 10%; }
  95% { top: -5%; }
  100% { top: 0%; }
}

@keyframes arrowanim {
  0% { top: 0%; }
  50% { top: 0%; }
  85% { top: -10%; }
  90% { top: 10%; }
  95% { top: -5%; }
  100% { top: 0%; }
}

/*------------------------------- INTRO */
.home__intro {
    position: relative;
    overflow-x: clip;
}

.home__intro__gallery {
    position: relative;
    aspect-ratio: 1120/720;
    background-color: #15384c;
}


.home__intro__gallery .commonslick {
    position: absolute;
}

.home__intro__text {
    padding: 40px 20px;
}


.home__intro__text.revealOnScroll {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity .5s linear, transform .7s;
}
.home__intro__text.revealOnScroll.reveal {
    opacity: 1;
    transform: none;
}

.home__intro__text h1, .home__intro__text h2 {
    font-family: 'fields-display', Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    line-height: 1em;
}

/*------------------------------- 3 PILIERS */

.home__intertitle {
    padding: 0px 20px 40px;
    font-size: 2.4rem;
    text-align: center;
}

.home__pilars {
    text-align: center;
}

.home__pillar__img {
    padding: 75px;
}
.home__pillar__img img {
    max-height: 260px;
    max-width: 100%;
    width: auto;
}

.home__pillar__title {
    padding: 75px 20px;
    font-size: 3.6rem;
    font-weight: 500;
}

.home__pillar:nth-child(1) .home__pillar__img {
    background: #fcefb1;
}

.home__pillar:nth-child(1) .home__pillar__title {
    background-color: #15384c;
    color: #fcefb1;
}

.home__pillar:nth-child(2) .home__pillar__img {
    background: #fcefb1;
}

.home__pillar:nth-child(2) .home__pillar__title {
    background-color: #db5142;
    color: #fcefb1;
}

.home__pillar:nth-child(3) .home__pillar__img {
    background: #c4e0f2;
}

.home__pillar:nth-child(3) .home__pillar__title {
    background-color: #15384c;
    color: #c4e0f2;
}

.home__pillar.revealOnScroll .home__pillar__img img {
    opacity: 0;
    transition: opacity .3s linear, transform .5s ease-out;
}

.home__pillar.revealOnScroll .home__pillar__title span {
    opacity: 0;
    transition: opacity .3s linear .2s, transform .5s ease-out .2s;
}

.home__pillar.revealOnScroll:nth-child(odd) .home__pillar__img img, .home__pillar.revealOnScroll:nth-child(even) .home__pillar__title span {
    transform: translateY(-120px);
}
.home__pillar.revealOnScroll:nth-child(even) .home__pillar__img img, .home__pillar.revealOnScroll:nth-child(odd) .home__pillar__title span {
    transform: translateY(120px);
}

.home__pillar.revealOnScroll.reveal .home__pillar__img img, .home__pillar.revealOnScroll.reveal .home__pillar__title span {
    opacity: 1;
    transform: none;
}

/*------------------------------- OUTRO */

.home__outro {
    padding: 40px 20px;
}

.home__outro__text p {
    margin-bottom: 2em;
}

.home__outro__text p:last-child {
    margin-bottom: 0;
}

.home__outro__text h1, .home__outro__text h2, .home__outro__text h3, .home__outro__text h4, .home__outro__text h5, .home__outro__text h6  {
    font-size: 2.4rem;
    margin-bottom: .5em;
    font-weight: 500;
}

/*------------------------------- RESPONSIVE */

@media screen and (min-width:992px) {

    /*------------------------------- INTRO */
    .home__intro {
        display: flex;
        align-items: stretch;
    }

    .home__intro__gallery {
        flex: 1 1 50%;
    }

    .home__intro__text {
        padding: 80px;
        align-self: center;
        flex: 1 1 50%;
    }

    .home__intro__text h1, .home__intro__text h2 {
        font-size: 4.8rem;
    }

    /*------------------------------- 3 PILIERS */
    .home__intertitle {
        padding: 40px 20px;
        font-size: 3.6rem;
    }

    .home__pilars {
        display: flex;
        flex-wrap: wrap;
    }

    .home__pillar {
        display: flex;
        flex: 1 1 33.33%;
        flex-direction: column;
    }
    
    .home__pillar:nth-child(even) {
        flex-direction: column-reverse;
    }

    .home__pillar__img, .home__pillar__title {
        min-height: 420px;
        padding: 75px 80px;
    }

    .home__pillar__title {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .home__pillar.revealOnScroll:nth-child(3n+2) .home__pillar__img img {
        transition-delay: .2s;
    }
    .home__pillar.revealOnScroll:nth-child(3n+2) .home__pillar__title span {
        transition-delay: .4s;
    }
    
    .home__pillar.revealOnScroll:nth-child(3n+3) .home__pillar__img img {
        transition-delay: .4s;
    }
    .home__pillar.revealOnScroll:nth-child(3n+3) .home__pillar__title span {
        transition-delay: .6s;
    }

    /*------------------------------- OUTRO */
    .home__outro {
        padding: 100px 0px;
    }

    .home__outro__center {
        width: 66.667%;
        margin: 0 auto;
    }

    .home__outro__text h1, .home__outro__text h2, .home__outro__text h3, .home__outro__text h4, .home__outro__text h5, .home__outro__text h6  {
        font-size: 3.6rem;
    }
}

@media screen and (min-width:1280px) {

    /*------------------------------- INTRO */
    .home__intro__gallery {
        flex: 1 1 66.66%;
    }

    .home__intro__text {
        flex: 1 1 33.33%;
    }
}

/*---------------------------------------------------------------------
//                                                                   //
//                           PHILOSOPHIE                             //
//                                                                   //
---------------------------------------------------------------------*/
body.page-template-template-philosophie {
    background-color: #fcefb1;
}

/*------------------------------- INTRO */

.philoheader {
    position: relative;
    height: 100vh;
    height: 100svh;
}

.philoheader__gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.philoheader__gallery .slick-list {
    z-index: 1;
}

.philoheader__gallery .slick-dots {
    z-index: 4;
}

/*.philoheader::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    max-height: 475px;
    z-index: 2;
    background: linear-gradient(0deg,rgba(219, 81, 66, .3) 0%, rgba(219, 81, 66, 0) 100%);
}

.philoheader::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(219, 81, 66, .3);
}*/

.philoheader__title {
    position: absolute;
    left: 64px;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'fields-display', Georgia, 'Times New Roman', Times, serif;
    font-size: 4rem;
    color:#fcefb1;
    text-align: center;
    z-index: 3;
    line-height: 1.2em;
    font-weight: 600;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.67);
}

.philoheader.revealOnScroll .philoheader__title {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .5s linear, transform .7s ease-out;
}

.philoheader.revealOnScroll.reveal .philoheader__title {
    opacity: 1;
    transform: translateY(-50%);
}

.philopart2 {
    position: relative;
    padding: 40px 20px;
    color: #db5142;
    overflow-x: clip;
}

.philolist__line {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
}

.philolist__number {
    position: relative;
    font-family: 'fields-display', Georgia, 'Times New Roman', Times, serif;
    font-size: 8rem;
    text-align: center;
    width: 20%;
    min-width: 60px;
    max-width: 80px;
    line-height: 1em;
    font-weight: 600;
    overflow: hidden;
}

.philolist__parttx {
    flex: 1 1 0px;
}

.philolist__parttx h2 {
    font-weight: 400;
    font-size: 2.8rem;
    padding-bottom: .5em;
    line-height: 1.2em;
}

.philolist__line.revealOnScroll .philolist__number {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .5s linear, transform .7s ease-out;
}

.philolist__line.revealOnScroll .philolist__parttx h2 {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .5s linear .1s, transform .7s ease-out .1s;
}

.philolist__line.revealOnScroll .philolist__text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s linear .2s, transform .7s ease-out .2s;
}

.philolist__line.revealOnScroll.reveal .philolist__number, .philolist__line.revealOnScroll.reveal .philolist__parttx h2, .philolist__line.revealOnScroll.reveal .philolist__text {
    opacity: 1;
    transform: none;
}

/*------------------------------- RESPONSIVE */

@media screen and (min-width:992px) {
    .philoheader__title {
        font-size: 6rem;
        left: 80px;
        right: 80px;
    }
    .philopart2 {
        padding: 100px 0px;
    }

    .philopart2__center {
        width: 66.667%;
        margin: 0 auto;
    }

    .philolist__number {
        font-size: 12rem;
        width: 12.5%;
        min-width: 120px;
    }

    .philolist__parttx h2 {
        font-size: 3.6rem;
    }
}

/*---------------------------------------------------------------------
//                                                                   //
//                            DIFFERENCE                             //
//                                                                   //
---------------------------------------------------------------------*/
body.page-template-template-difference {
    background-color: #15384c;
    color: #c4e0f2;
}

/*------------------------------- INTRO */
.differenceheader {
    position: relative;
    padding: 100px 20px 40px;
    text-align: center;
    background-color: #15384c;
    color: #c4e0f2;
}

.differenceheader__picto {
    display: block;
    margin: 0 auto 20px;
    width: 50%;
    max-width: 260px;
}

.differenceheader__title {
    font-family: 'fields-display', Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    line-height: 1.25em;
    margin-bottom: .625em;
    font-weight: 600;
}

.differenceheader__text a {
    transition: color .3s;
}

.differenceheader__text a:hover, .differenceheader__text a:focus {
    color: #FFF;
}

.differenceheader__text h2, .differenceheader__text h3, .differenceheader__text h4, .differenceheader__text h5, .differenceheader__text h5 {
    font-weight: 400;
    font-size: 2.8rem;
    padding-bottom: .5em;
    line-height: 1.2em;
}

.differenceheader__text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.differenceheader__text li::before {
    content: '\2022';
    margin-right: .3em;
}

.differenceheader.revealOnScroll .differenceheader__picto {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity .5s linear, transform .5s ease-out;
}

.differenceheader.revealOnScroll .differenceheader__title {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .5s linear .2s, transform .5s ease-out .2s;
}

.differenceheader.revealOnScroll .differenceheader__text {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity .5s linear .2s, transform .5s ease-out .2s;
}


/*------------------------------- LISTE */
.differencelist__block {
    padding: 40px 20px;
    text-align: center;
}

.differencelist__block:nth-child(even) {
    background-color: #c4e0f2;
    color: #15384c;
}

.differencelist__number {
    font-family: 'fields-display', Georgia, 'Times New Roman', Times, serif;
    font-size: 8rem;
    font-weight: 600;
    line-height: 1em;
    font-weight: 600;
}

.differencelist__parttx {
    margin-top: 20px;
}

.differencelist__parttx h2,.differencelist__parttx h3,.differencelist__parttx h4,.differencelist__parttx h5,.differencelist__parttx h6 {
    font-weight: 400;
    font-size: 2.8rem;
    padding-bottom: 1.6em;
    line-height: 1.2em;
}

.differencelist__block.revealOnScroll .differencelist__number {
    transform: rotate(179deg) scale(0);
    transition: transform .5s;
}
.differencelist__block:nth-child(even).revealOnScroll .differencelist__number {
    transform: rotate(-179deg) scale(0);
}

.differencelist__block.revealOnScroll .differencelist__parttx {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity .5s linear .2s, transform .5s ease-out .2s;
}

.differencelist__block.revealOnScroll.reveal .differencelist__number, .differencelist__block.revealOnScroll.reveal .differencelist__parttx,.differenceheader.revealOnScroll.reveal .differenceheader__picto, .differenceheader.revealOnScroll.reveal .differenceheader__title, .differenceheader.revealOnScroll.reveal .differenceheader__text {
    opacity: 1;
    transform: none;
}

@media screen and (min-width:640px) {
    .differencelist {
        display: flex;
        flex-wrap: wrap;
    }

    .differencelist__block {
        flex: 1 1 50%;
        padding: 100px 70px;
    }

    .differencelist__block:nth-child(even) {
        padding-top: 200px;
        background-color: inherit;
        color: inherit;
    }

    .differencelist__block:nth-child(4n+2), .differencelist__block:nth-child(4n+3) {
        background-color: #c4e0f2;
        color: #15384c;
    }
}

@media screen and (min-width:992px) {
    .differenceheader {
        padding: 100px 0px;
    }

    .differenceheader__center {
        width: 50%;
        margin: 0 auto;
    }

    .differenceheader__title {
        font-size: 4.8rem;
    }

    .differenceheader__text h2, .differenceheader__text h3, .differenceheader__text h4, .differenceheader__text h5, .differenceheader__text h5 {
        font-size: 3.6rem;
    }

    .differencelist__block {
        flex: 1 1 33.33%;
    }

    .differencelist__block:nth-child(even) {
        padding-top: 100px;
    }

    .differencelist__block:nth-child(3n+2) {
        padding-top: 200px;
    }

    .differencelist__number {
        font-size: 12rem;
    }

    .differencelist__parttx h2,.differencelist__parttx h3,.differencelist__parttx h4,.differencelist__parttx h5,.differencelist__parttx h6 {
        font-size: 3.6rem;
    }

    .differencelist__block:nth-child(4n+2), .differencelist__block:nth-child(4n+3) {
        background-color: inherit;
        color: inherit;
    }

    .differencelist__block:nth-child(even) {
        background-color: #c4e0f2;
        color: #15384c;
    }
}

@media screen and (min-width:1240px) {

    .differencelist__block {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/*---------------------------------------------------------------------
//                                                                   //
//                           PRISE EN MAIN                           //
//                                                                   //
---------------------------------------------------------------------*/
body.page-template-template-priseenmain {
    background-color: #db5142;
    color: #fcefb1;
}

body.page-template-template-priseenmain .differenceheader {
    background-color: #db5142;
    color: #fcefb1;
}

.priseenmainlist__block {
    position: relative;
    overflow-x: clip;
}

.priseenmainlist__block:nth-child(odd) {
    background-color: #fcefb1;
    color: #db5142;
}

.priseenmainlist__block:nth-child(even) {
    background-color: #db5142;
    color: #fcefb1;
}

.priseenmainlist__number {
    padding: 20px 20px;
    text-align: center;
}

.priseenmainlist__number div {
    font-family: 'fields-display', Georgia, 'Times New Roman', Times, serif;
    font-size: 8rem;
    font-weight: 600;
    line-height: 1em;
    font-weight: 600;
}

.revealOnScroll .priseenmainlist__number div {
    opacity: 0;
    transform: scale(2);
    transition: opacity .4s linear, transform .5s ease-in;
}

.revealOnScroll.reveal .priseenmainlist__number div {
    opacity: 1;
    transform: none;
}

.priseenmainlist__title {
    padding: 40px 20px;
    text-align: center;
}

.priseenmainlist__title h2 {
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2em;
    word-break: break-word;
}

.priseenmainlist__picto {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 20px auto 0;
}

.priseenmainlist__picto:first-child {
    margin-top: 0;
}

.revealOnScroll .priseenmainlist__title {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity .4s linear, transform .5s ease-in;
}

.revealOnScroll.reveal .priseenmainlist__title {
    opacity: 1;
    transform: none;
}

.priseenmainlist__block:nth-child(odd) .priseenmainlist__title {
    background-color: #db5142;
    color: #fcefb1;
}

.priseenmainlist__block:nth-child(even) .priseenmainlist__title {
    background-color: #fcefb1;
    color: #db5142;
}

.priseenmainlist__text {
    padding: 40px 20px;
}

.revealOnScroll .priseenmainlist__text * {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .4s linear, transform .5s ease-in;
}

.revealOnScroll.reveal .priseenmainlist__text * {
    opacity: 1;
    transform: none;
}

.priseenmainlist__text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.priseenmainlist__text li::before {
    content: '\2022';
    margin-right: .3em;
}

.outrotext {
    padding: 40px 20px 0px;
    text-align: center;
}

.outrotext a {
    transition: color .3s;
}

.outrotext a:hover, .outrotext a:focus {
    color: #FFF;
}

@media screen and (min-width:640px) {

    .priseenmainlist__block {
        display: flex;
        flex-wrap: wrap;
    }

    .priseenmainlist__number div {
        font-size: 12rem;
    }

    .priseenmainlist__number, .priseenmainlist__title {
        aspect-ratio: 1;
        flex: 1 1 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .priseenmainlist__text {
        flex: 0 0 100%;
    }
}

@media screen and (min-width:992px) {
    .priseenmainlist__number, .priseenmainlist__title {
        flex: 1 1 30%;
        padding: 20px;
    }

    .priseenmainlist__text {
        flex: 1 1 40%;
        padding: 20px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .priseenmainlist__title h2 {
        font-size: 3.6rem;
    }

    .outrotext {
        padding: 40px 100px 0px;
    }
}

@media screen and (min-width:1240px) {
    .priseenmainlist__number, .priseenmainlist__title {
        flex: 1 1 25%;
    }

    .priseenmainlist__text {
        flex: 1 1 50%;
        padding: 20px 100px;
    }
}

/*---------------------------------------------------------------------
//                                                                   //
//                              CONTACT                              //
//                                                                   //
---------------------------------------------------------------------*/
body.page-template-template-contact {
    background-color: #15384c;
    color: #c4e0f2;
}

.differenceheader__form {
    margin-top: 50px;
}

.differenceheader__form label, .differenceheader__form .wpcf7-form-control-wrap {
    display: block;
}

.labelcontainer {
    position: relative;
    margin-top: 20px;
}

.labelcontainer label {
    position: absolute;
    left: 20px;
    top: 22px;
    color : #15384c;
    font-size: 2.4rem;
    line-height: 1em;
    transition: transform .2s, top .2s, font-size .2s;
    pointer-events: none;
    z-index: 2;
}

.labelcontainer.typing label, .labelcontainer.validate label {
    top: 10px;
    font-size: 1.2rem;
    transform: none;
}

.differenceheader__form input[type="text"], .differenceheader__form input[type="email"], .differenceheader__form input[type="phone"], .differenceheader__form textarea {
    width: 100%;
    resize: none;
    padding: 25px 20px 15px;
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 200;
    border: none;
    outline: none;
}

.differenceheader__form p {
    margin: 0;
}

.differenceheader__form .wpcf7-list-item {
    margin: 20px 0 0;
    display:  block;
}

.differenceheader__form .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.differenceheader__form .wpcf7-list-item input[type="checkbox"] {
    flex: 0 0 20px;
    margin: 8px 10px 0 0;
    width: 20px;
    height: 20px;
}

.differenceheader__form .wpcf7-list-item .wpcf7-list-item-label {
    flex: 1 1 0px;
}

.submitarea {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.submitarea p {
    position: relative;
}

.submitarea input {
    display: inline-block;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: .02em;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    color: #c4e0f2;
    min-height: 50px;
    padding: 2px 30px;
    padding: 2px 30px;
    --box-shadow-color: #c4e0f2;
    margin: 0px 0px 5px 5px;
    text-transform: uppercase;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: .02em;
    background: #db5142;
    box-shadow: -5px 5px 0px 0px #15384c;
    -webkit-box-shadow: -5px 5px 0px 0px #15384c;
    -moz-box-shadow: -5px 5px 0px 0px #15384c;
    box-shadow: -5px 5px 0px 0px var(--box-shadow-color);
    -webkit-box-shadow: -5px 5px 0px 0px var(--box-shadow-color);
    -moz-box-shadow: -5px 5px 0px 0px var(--box-shadow-color);
    transition: background .3s, box-shadow .3s, color .3s;
}

.submitarea input:hover, .submitarea input:focus {
    background: #c4e0f2;
    color: #db5142;
    --box-shadow-color: #db5142;
}

.submitarea .wpcf7-spinner {
    pointer-events: none;
    margin: 0;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -2px;
}