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;
    outline: 0;
    font-size: 100%;
    color: #333;
    vertical-align: baseline;
}

body {
    font-family: 'Noto Serif JP',"YuMincho,'Yu Mincho', 'Hiragino Mincho ProN','serif'serif";
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

main {
    width: 100vw;
    overflow: hidden;
}


/* ヘッダー */

#header {
    background-color: white;
    box-shadow: 0 2px 5px #252A3625;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header__inner {
    padding: 0 35px;
    display: flex;
    align-items: center;
    height: inherit;
    position: relative;
    margin: 0 auto;
    justify-content: space-between;
}

.header-catch {
    font-size: 15px;
    white-space: nowrap;
}

@media screen and (max-width:1400px) {
    .header__inner {
        padding: 0 10px;
    }
}


/* ヘッダーのロゴ部分 */

.header-logo {
    width: 200px;
}

.header__title {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width:1400px) {
    .header {
        height: 100px;
    }
    .header__logo {
        width: 200px;
    }
}

.header__title img {
    display: block;
    width: 100%;
    height: 100%;
}


/* ヘッダーのナビ部分 */

.header__nav {
    position: absolute;
    right: 0;
    /* left: 0; */
    top: 0;
    width: 35%;
    min-width: 320px;
    height: 100vh;
    transform: translateX(100%);
    /* background-color: #252A36; */
    background-color: #d3f4ff;
    opacity: 0.95;
    transition: ease .4s;
}

@media screen and (min-width:1400px) {
    .header__nav {
        position: static;
        transform: initial;
        background-color: inherit;
        height: inherit;
        display: flex;
        justify-content: flex-end;
        width: fit-content;
    }
}

@media screen and (min-width:1400px) {
    .header__nav .nav__items {
        position: relative;
        display: flex;
        align-items: center;
        height: initial;
        gap: 30px;
    }
}

@media screen and (min-width:1440px) {
    .nav__items {
        gap: 30px;
    }
}

.header__nav .nav-items {
    position: relative;
    top: 15%;
    transform: translate(0%, 0%);
    padding: 0;
}

@media screen and (min-width:1400px) {
    .header__nav .nav-items {
        position: inherit;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }
}


/* ナビのリンク */

.nav-items__item {
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-switcher li {
    padding: 0 5px;
}

.lang-switcher li a {
    font-size: 16px;
    letter-spacing: 1px;
}

@media screen and (max-width:1400px) {
    .nav-items__item {
        display: block;
    }
    .header__nav {
        overflow-y: scroll;
    }
    .lang-switcher {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lang-switcher li {
        width: 50%;
        padding: 0;
    }
    .lang-switcher li a {
        text-align: center;
        display: block;
        font-size: 16px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

.nav-items__item:hover {
    border-bottom: 2.5px solid #001f3d;
}

.nav-items__item.active>a {
    margin-bottom: 0;
}

.nav-items__item>a {
    position: relative;
    height: 100%;
    color: #252A36;
    width: 100%;
    display: flex;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    /* margin-top: 40px; */
    transition: 0.2s;
}

.nav-items__item:last-child a {
    margin-bottom: 0;
}

@media screen and (min-width:1400px) {
    .nav-items__item a {
        margin-bottom: 0;
        margin-top: 0;
        padding: 0;
        font-size: 18px;
    }
}

@media screen and (max-width:1400px) {
    .nav-items__item a {}
}


/* ハンバーガーメニュー */

.header__hamburger {
    width: 52px;
    height: 100%;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9998;
    cursor: pointer;
}

@media screen and (min-width:1400px) {
    .hamburger {
        display: none;
    }
}


/* ハンバーガーメニューの線 */

.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: #252a36;
    position: relative;
    transition: ease .4s;
    display: block;
}

.hamburger.active span {
    background-color: #001f3d;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 8px 0;
}

.hamburger span:nth-child(3) {
    top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */

.header__nav.active {
    transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}


/* ２階層目 */


/*2階層目を持つliの矢印の設定*/

@media screen and (max-width:1400px) {
    .dropdown-mark {
        display: block;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg);
    }
    .nav-items__item:hover {
        border-bottom: none;
    }
    .dropdown-button {
        content: '';
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0;
        width: 66px;
        height: 66px;
        background-color: #001f3d;
        transition: 0.3s;
    }
}


/*3階層目を持つliの矢印の設定*/

@media screen and (max-width:1400px) {
    .dropdown-mark {
        content: '';
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        transition: 0.3s;
    }
    .has-child.active .dropdown-mark {
        transform: rotate(-45deg);
    }
    .has-child.active .dropdown-button {
        background-color: #ff4b54;
    }
}


/*== 2・3階層目の共通設定 */


/*下の階層を持っているulの指定*/

nav li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 4;
    /*形状を指定*/
    background: #001f3d;
    width: 180px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
}

nav li.has-child:last-child ul {
    right: 0;
    left: unset;
}


/*hoverしたら表示*/

nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}


/*ナビゲーションaタグの形状*/

nav li.has-child ul li:first-child {}

nav li.has-child ul li a {
    box-sizing: border-box;
    padding: 15px 20px;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: block;
    font-weight: bold;
}

nav li.has-child ul li:last-child a {
    border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
    background: white;
    color: #001f3d;
}

@media screen and (max-width:1400px) {
    /* nav {
        padding: 0;
    }
    nav ul {
        display: block;
    } */
    nav li.has-child ul,
    nav li.has-child ul ul {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        /*JSで制御するため一旦表示*/
        opacity: 1;
        /*JSで制御するため一旦表示*/
        display: none;
        /*JSのslidetoggleで表示させるため非表示に*/
        transition: none;
        /*JSで制御するためCSSのアニメーションを切る*/
    }
    .header nav>ul:first-child>li:first-child a {
        border-top: 1px solid #ccc;
    }
    .header nav ul li a,
    .header .lang-switcher li a {
        border-bottom: 1px solid #ccc;
    }
    .header .lang-switcher li a:first-child {
        border-right: 1px solid #ccc;
    }
    /*矢印の位置と向き*/
    .dropdown-mark {
        /* right: 50px; */
    }
    .dropdown-mark {
        transform: rotate(-45deg);
        /* right: 50px; */
    }
    .dropdown-mark {
        transform: rotate(135deg);
    }
}

#js-hamburger~.hamburger-demo-cover {
    display: none;
    transition: 0.2s;
}

#js-hamburger.active~.hamburger-demo-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: block;
    z-index: -1;
}

@media screen and (min-width:1400px) {
    #js-hamburger~.hamburger-demo-cover,
    #js-hamburger.active~.hamburger-demo-cover {
        display: none;
    }
}


/* 共通部分 */

section {
    padding: 120px 0;
}

.section-heading {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width:768px) {
    section{
        padding: 80px 0;
    }
    .section-heading {
        font-size: 24px;
    }
}


/* ボタン */

.link-button {
    margin-top: 20px;
}

.link-button a {
    background: #000;
    color: #fff;
    display: block;
    width: 310px;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
    transition: .2s;
}

.link-button a:hover {
    opacity: 0.8;
}

.back-link-button {
    margin-top: 20px;
}

.back-link-button a {
    background: #000;
    color: #fff;
    display: block;
    width: 310px;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
    transition: .2s;
}

.back-link-button a:hover {
    opacity: 0.8;
}

@media screen and (max-width:360px) {
    .link-button a,
    .back-link-button a {
        width: 80%;
    }
}


/* メインビジュアル */

#slider {
    position: relative;
    width: 100vw;
    height: calc(100vh - 100px);
    overflow: hidden;
}


/* #slider img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; transition: .8s; width: 100%; display: block; height: auto; -moz-transform: scale(1.3); -webkit-transform: scale(1.3); -ms-transform: scale(1.3); transform: scale(1.3); }
*/

.mv-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s;
}

.mv-slider-item1 {
    background-image: url('../img/mv-bg1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv-slider-item1 h1 {
    text-align: center;
    margin-top: 35vh;
    font-size: 38px;
    font-weight: normal;
}

.mv-slider-item1 p {
    width: 50%;
    min-width: 300px;
    margin: 20px auto 0 auto;
    font-size: 20px;
}

.mv-slider-item2 {
    background-image: url('../img/mv-bg2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.mv-slider-item2-inner {
    padding: 70px 120px;
    background-color: #ffffff99;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    height: fit-content;
    margin-top: 30vh;
}

.mv-slider-item2 h1 {
    font-size: 32px;
    font-weight: normal;
}

.mv-slider-item.show {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    width: 100%;
    display: block;
    height: 100%;
    transition: 0.8s;
}

.mv-slider-item .link-button a {
    pointer-events: none;
}

.mv-slider-item.show .link-button a {
    pointer-events: unset;
}

.sp-only {
    display: none;
}

@media screen and (min-width:1200px) {
    .mv-slider-item2 {
        background-position: 52% -145px;
        background-size: 145%;
    }
}

@media screen and (max-width:768px) {
    .sp-only {
        display: block;
    }
    .mv-slider-item1 h1 {
        font-size: 30px;
        margin-top: 20vh;
    }
    .mv-slider-item1 p {
        font-size: 16px;
    }
    .mv-slider-item2 {
        background-image: url('../img/mv-bg2.jpg');
        background-position: 52% center;
        background-repeat: no-repeat;
        background-size: 350%;
        text-align: center;
    }
    .mv-slider-item2-inner {
        margin: auto;
        width: 90%;
        max-width: 400px;
        box-sizing: border-box;
        margin-top: 26vh;
        padding: 35px 5%;
    }
}


/* アバウト */

.about {
    text-align: center;
}

.about p {
    line-height: 2.5em;
    margin-bottom: 50px;
}

@media screen and (max-width:768px) {
    .about p {
        width: 85%;
        margin: auto;
    }
}


/* サービス */

.project {
    width: 100%;
}


/* スライダー */

.slider {
    margin: 30px auto 0;
    /* max-width: 500px; */
    width: 100%;
    height: 520px;
}

.slick-img {
    width: calc(100%/3) !important;
    overflow: hidden;
}

.slider {
    margin: 30px auto 0;
    width: 100%;
}

.slick-list {
    overflow: visible;
    padding: 0 !important;
}

.slick-track {
    width: 100%;
}

.project-block {
    position: relative;
    display: block;
    height: 520px;
    width: 100%;
}

.project-block1:after,
.project-block2:after,
.project-block3:after,
.project-block4:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
    z-index: -2;
    background-position: center;
    background-repeat: no-repeat;
}

.project-block:before {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.project-block4:after {
    background-image: var(--thumbnail-url);
}

.project-block1:after {
    background-image: url('../img/service-thumbnail.jpg');
}

.project-block2:after {
    background-image: url('../img/story-thumbnail.png');
}

.project-block3:after {
    background-image: url('../img/global-thumbnail.jpeg');
}

.project-block4:hover:after,
.project-block1:hover:after,
.project-block2:hover:after,
.project-block3:hover:after {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.project-block-inner {
    position: absolute;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    bottom: 0;
}

.project-block-inner h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.project-block-inner p {
    font-size: 20px;
}

.project-block-inner p span {
    font-size: 14px;
}

@media screen and (max-width:768px) {
    .project .slider {
        height: unset;
    }
    .project .project-block {
        /* width: 320px; */
        height: 300px;
        position: relative;
    }
    .project .slick-img {
        /* width: unset !important; */
        width: 100vw !important;
        height: 300px;
    }
    .project .slick-list {
        /* padding: unset !important; */
        /* width: 80%; */
    }
    .project .project-block-inner p {
        font-size: 14px;
    }
    .project .slick-dots {
        margin-bottom: -10px;
    }
}


/*  */

.service-block-container {
    display: flex;
    width: 95%;
    max-width: 800px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    gap: 20px 5%;
    margin: 100px auto;
}

.service-block {
    display: block;
    width: 33%;
    aspect-ratio: 1/1;
    height: auto;
    position: relative;
}

.service-block-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    overflow: hidden;
}

.service-block-img-bg {
    position: relative;
}

.service-block-img-bg:after {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    position: absolute;
    content: "";
    display: block;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    transition: all .5s ease-out;
    /* z-index: -1; */
    background-position: center;
    background-repeat: no-repeat;
}

.service-block-img1 .service-block-img-bg:after {
    background-image: url('../img/hotel-marketing-thumbnail.jpg');
}

.service-block-img2 .service-block-img-bg:after {
    background-image: url('../img/repitte-beauty-thumbnail.png');
}

.service-block-img3 .service-block-img-bg:after {
    background-image: url('../img/cloud-bpo-thumbnail.jpg');
}

.service-block-img-bg:hover:after {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.service-block h3 {
    text-align: center;
    font-weight: normal;
    margin-top: 10px;
}

@media screen and (max-width:768px) {
    .service-block-container {
        width: 90%;
        max-width: 600px;
        margin: 100px auto;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .service-block {
        width: 47.5%;
    }
}


/*  */

.recruit {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.recruit-content {
    background-image: url('../img/gray-bg.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.recruit-content p {
    text-align: center;
    font-weight: bold;
}

.recruit .link-button {
    margin-top: -60px;
    z-index: 1;
}

@media screen and (max-width:768px) {
    .recruit-content {
        height: 200px;
    }
    .recruit-content p {
        width: 90%;
        margin: 30px auto auto auto;
    }
}

.recruit-band {
    /* margin: 100px auto; */
    background-image: url('../img/recruit-banar.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    z-index: -1;
}

.recruit-band:before {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.recruit-band p {
    position: relative;
    color: white;
    text-align: center;
    top: 35%;
}

.recruit-band p:first-child {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.vision p {
    font-weight: bold;
    line-height: 2.5em;
    margin: 30px auto;
    font-size: 16px;
}

.member-interview {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-image: url('../img/member-interview-bg.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
    z-index: 0;
    text-align: center;
}

.member-interview h3 {
    color: white;
    padding-top: 100px;
    font-size: 30px;
    z-index: 1;
}

.member-interview .link-button {
    position: absolute;
    bottom: 0;
    left: calc(50% - 155px);
    z-index: 2;
}

.link-button a {
    z-index: 2;
}

.vision .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    background: rgba(0, 25, 44, 0.3);
}


/* ニュース・ブログ */

.news-blog {
    padding-bottom: 0;
}

.slider2 {
    position: relative;
}

.slick-arrow {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 0;
    width: 20px;
    height: 38px;
    color: transparent;
    z-index: 1;
    transition: opacity 0.5s;
    z-index: 2;
    cursor: pointer;
}

.slick-arrow:hover {
    opacity: 0.7;
}


/* 共通設定 */

.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.slick-next::after,
.slick-prev::after {
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}


/* next */

.slick-next {
    right: 25px;
}

.slick-next::after {
    right: 4px;
    transform: rotate(45deg);
}


/* prev */

.slick-prev {
    left: 25px;
}

.slick-prev::after {
    left: 4px;
    transform: rotate(-135deg);
}


/* スライダー */

.slider2 {
    margin: 30px auto 0;
    /* max-width: 500px; */
    width: 100%;
    height: 520px;
}

.slick-img2 {
    overflow: hidden;
}

.slider2 {
    margin: 30px auto 0;
    width: 100%;
}

@media screen and (max-width:768px) {
    .slider2 {
        height: 380px;
    }
    .slider2 .project-block {
        height: 380px;
    }
}


/* パンクズリスト */

#breadcrumbs {
    width: 85%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 25px 0;
}

#breadcrumbs span {
    padding: 0 5px;
}

#breadcrumbs span:first-child {
    padding-left: 0px;
}


/* ローディングアニメーション */

.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9998;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.passive {
    display: none;
}


/* 十種年特設ぺーじへ */

.anniversary {
    width: 100%;
    background-color: #F7F7F7;
    margin-bottom: -30px;
}

.anniversary-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1080px;
    margin: auto;
}

.anniversary-text {
    width: 60%;
    padding-right: 7.5%;
    box-sizing: border-box;
}

.anniversary-text {
    width: 90%;
}

.anniversary-heading {
    font-weight: bold;
    font-size: 30px;
    margin: 30px 0;
}

.anniversary-paragraph {
    font-weight: bold;
    font-size: 20px;
}

.anniversary-content>img {
    width: 40%;
}

.anniversary .link-button {
    margin-top: 30px;
}

.anniversary .link-button a {
    margin-left: 0;
    font-weight: bold;
}

@media screen and (max-width:768px) {
    .anniversary-content {
        flex-wrap: wrap;
    }
    .anniversary-text {
        width: 90%;
        margin: auto;
    }
    .anniversary-content>img {
        width: 60%;
        margin: auto;
        margin-top: 50px;
    }
}

section.project {
    padding-top: 0;
}