html {
      scroll-behavior: smooth;
}
    
body{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f4fbff;
    width: 100vw !important;
    overflow-x: hidden;
}


/*  */
/* header */
/*  */
header{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}
header > h1{
    font-size: 2rem;
    font-weight: bold;
    height: fit-content;
    margin: auto 0;
}
header > h1 > a{
    padding: 0 20px;
    display: block;
}
header > h1 > a > img{
    width: 140px;
}
header > ul {
    display: flex;
}
header > ul > li{
    list-style: none;
    margin: 0 10px;
    font-weight: bold;
}
header > ul > li > a{
    display: block;
    margin: auto 0;
}
.header-cta-mail{
    /* background: linear-gradient(135deg, #007aff, #00c6ff); */
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    color: #fff;
    display: inline-block;
    padding: 20px 20px;
    font-size: .9rem;
    letter-spacing: 1.1px;
}
.header-cta-call{
    height: fit-content;
    margin: auto 10px;
}
.header-cta-call > a{
    background: linear-gradient(135deg, #007aff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    /* flex-direction: column; */
    text-decoration: none;
}
.header-cta-call a > i{
    font-size: 1.3rem;
    margin: auto 5px;
}
.header-cta-call a > span{
    font-size: 1.1rem;
    display: block;
}


/*  */
/* hero */
/*  */

.hero{
    width: 90%;
    margin: 0 auto;
    /* padding: 90px 0 30px; */
    position: relative;
    /* background-color: #f4fbff; */
    padding: 90px 0 200px;
}
.hero-title > h2{
    font-size: 3.5rem;
    font-weight: bold;
    max-width: 700px;
    margin: 0 auto;
    line-height: 5rem;
    text-align: center;
    color: #313c55;
    font-family: 'Noto Sans JP', sans-serif;
}
.hero-title-strong{
    background: linear-gradient(135deg, #007aff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5rem;
    margin: 0 5px;
}
.highlight{
    background: linear-gradient(120deg, yellow 0%, yellow 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 4px;
}


.hero-images{
    margin: 10px auto;
    position: relative;
    width: fit-content;
}
.hero-images > ul{
    list-style: none;
    display: flex;
}
.hero-images > img{
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
}
.hero-images > ul > li{
    list-style: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    border-radius: 10px;
    padding: 10px 20px;
    position: absolute;
    background-color: #fff;
    font-size: 1.4rem;
}
.hero-images > ul > li:nth-child(1){
    bottom: 20%;
    left: -24%;
}
.hero-images > ul > li:nth-child(2){
    bottom: 11%;
    right: -32%;
}
.hero-images > ul > li:nth-child(3){
    top: 39%;
    left: -33%;

}
.hero-images > ul > li:nth-child(4){
    top: 46%;
    right: -31%;
}
.hero-images > ul > li:nth-child(5){
    top: 8%;
    left: -12%;
}
.hero-images > ul > li:nth-child(6){
    top: 15%;
    right: -27%;
}

.hero-badges{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.hero-badges img{
    width: 250px;
    display: block;
    margin: 0 20px;
}
.hero-badge{
    position: relative;
}
.hero-badge > .hero-badge-text{
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    color: #bc9c23;
    /* color: red; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 2rem;
    text-align: center;
    display: flex;
}

.hero-badge > .hero-badge-text > span{
    font-size: 1rem;
    margin-top: 10px;
    display: block;
}
.hero-badge-1 > .hero-badge-text{
    font-size: 4rem;
    top: 45%; 
}
.hero
.hero-badge-1 > .hero-badge-text > span{
    margin-top: auto;
    position: absolute;
    right: -10px;
    bottom: -18px;
}
.hero-badge-2 > .hero-badge-text{
    flex-direction: column;
}

/*  */
/* strongs */
/*  */
.strongs{
    background-color: #fff;
}
.strongs-main{
    padding: 20px 3% 50px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.strongs-main::after{
    content: "STRONGS";
    color: #dbeffa;
    font-size: 12rem;
    font-weight: bold;
    position: absolute;
    top: 40px;
    z-index: -1;
    left: 0;
    writing-mode: vertical-rl;
}
.strongs-element{
    display: flex;
    /* margin: 40px 0; */
    justify-content: space-around;
    max-width: 1000px;
    margin: 30px auto;
}
.strongs-element > img{
    width: 45%;
    /* max-width: 500px; */
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    border: #f4fbff 2px solid;
    height: 100%;
    aspect-ratio: 4/3;
    display: block;
    margin: auto 0;
}
.strong-content{
    padding: 20px;
    margin: auto 0;
    height: fit-content;
    width: 50%;
    /* max-width: 500px; */
}
.strong-content > span{
    background: linear-gradient(135deg, #007aff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.3rem;
}
.strong-content > h3{
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.strong-content > p{
    font-size: 1.3rem;
}

/*  */
/* flow */
/*  */
.products > img{
    display: block;
    margin: 0 auto 60px;
    width: 200px;
}
.products{
    position: relative;
}
.products::after{
    content: "PRODUCTS";
    color: #fff;
    font-size: 12rem;
    font-weight: bold;
    position: absolute;
    top: 40px;
    z-index: -1;
    right: -40px;
    writing-mode: vertical-rl;
}



.carousel-container {
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 140px;
    height: 140px;
    border: 3px solid white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #ffd700;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    flex: 1;
}

.main-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

.image-info{
    margin-top: 15px;
    /* padding: 15px; */
    position: relative;
}
.image-info > h3{
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    color: #fff;
    padding: 5px 40px;
    border-top-right-radius: 15px;
    font-size: 1.3rem;
    position: absolute;
    top: -58px;
    font-weight: bold;
}
.image-info p {
    margin: 0;
    color: #666;
    /* line-height: 1.2; */
    font-size: 1.4rem;
}

.image-item {
    display: none;
}
.products > h2{
    color: #313c55;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}
.section-subtitle{
    background: linear-gradient(135deg, #007aff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display: block;
    margin: 0 auto 5px;
    width: fit-content;
    font-size: 1.3rem;
}
.product-comments{
    margin: 30px 0;
    text-align: center;
    font-size: 1.3rem;
    color: #313c55;
}

.client-works{
    background-color: #4734b0;
    /* border-radius: 40px; */
    width: 95%;
    margin: 50px auto;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}
.client-works-main{
    display: flex;
    gap: 40px;
    width: fit-content;
    margin: 0 auto;
    padding: 30px 20px;
}
.client-works-main > img{
    width: 300px;
    height: auto !important; /* 強制的に縦横比を維持 */
    max-height: none;
    object-fit: contain; /* 保険的に縦横比維持 */
    background-color: #fff;
    border-radius: 20px;
    /* object-fit: cover; */
    padding: 1px 20px;
}
.client-works-contents{
    width: 500px;
}
.works-subtitle{
    background-color: #fff;
    padding: 3px 20px;
    border-radius: 25px;
    display: flex;
    width: fit-content;
}
.works-subtitle > img{
    width: 25px;
    margin-right: 10px;
    display: block;
}
.works-subtitle > span{
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    margin: auto 0;
}
.client-works-contents > h2{
    font-weight: bold;
    /* text-align: center; */
    font-size: 1.7rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    margin: 10px 0 20px;
}
.works-letter-color{
    color: #6750f4;
    font-size: 3rem;
    /* background-color: #fff; */
    padding: 5px;
    margin-right: 10px;
    color: yellow;

}
.works-letter-border{
    border-bottom: #fff 2px solid;
    font-size: 2.5rem;
}
.client-works-contents > p{
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px 0;
}

.client-works-contents ul {
    list-style: none; /* ・を消す */
    padding-left: 0;
    margin: 0.5rem 0;
}

.client-works-contents ul li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.client-works-contents ul li a {
    color: #fff;
    text-decoration: none; /* 下線なし */
    transition: color 0.3s; /* 色の変化をなめらかに */
}

/* マウスオーバー */
.client-works-contents ul li a:hover {
    color: yellow; /* ホバー時に黄色 */
}

/* クリック後やアクティブ時も白 */
.client-works-contents ul li a:visited,
.client-works-contents ul li a:active {
    color: #fff;
}
ー時に黄色 */
}




/*  */
/* twitter */
/*  */

.twitter{
    padding: 0 0 80px;
    background-color: #fff;
}
.twitter {
    background: #fff;
    padding-bottom: 100px;
}
.twitter > h2{
    font-weight: bold;
    font-size: 1.7rem;
    display: flex;
    /* margin-top: auto; */
    margin: auto auto 50px;
    width: fit-content;
}
.twitter > img{
    width: 100vw;
    /* margin-left: -40px; */
}
.twitter-main{
    background-color: #fff;
}
.twitter > h2 > span{
    margin-top: auto;
    margin: auto 5px;
}
.twitter > h2 > img{
    width: 40px;
    height: 40px;
    margin-left: 10px;
}
.twitter-title-border{
    border-bottom: #6750f4 5px solid;
    font-size: 3rem;
    margin-right: 10px;
    line-height: 1.1;
    /* color: #4734b0; */
}
.twitter > h2 > i{
    margin-top: auto;
    margin: auto 0;
    font-size: 1.9rem;
}
.twitter-main{
    display: flex;
    position: relative;
    padding: 0 50px;
    width: fit-content;
    margin: 0 auto;
}
.twitter-click{
    background-color: #313c55;
    border-top-left-radius: 5000px;
    display: block;
    padding: 50px 0 20px 0;
    margin-left: auto;
    width: 750px;
    position: relative;
}
.twitter-click > a{
    background-color: #fff;
    display: block;
    padding: 20px;
    width: 700px;
    border-top-left-radius: 90%;
    position: relative;
    margin-left: 50px;
    margin-bottom: -50px;
    margin-top: -54px;
    
}
.twitter-click > p{
    font-size: 2.2rem;
    font-weight: bold;
    text-align: right;
    position: absolute;
    right: 0;
}
.twitter-click > a > img{
    width: 300px;
    margin-left: auto;
    display: block;
    padding: 50px 0;
}
.twitter-tweet.twitter-tweet-rendered{
    width: 300px !important;
    position: absolute;
    /* left: 30%; */
    top: -10px;
    transform: translateX(-20%);
    z-index: 2;
}
.twitter-click > a > p{
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 4rem;
    position: absolute;
    bottom: 60px;
    left: 250px;
    /* text-orientation: upright; */
    font-weight: bold;   
}


/*  */
/* cta */
/*  */
.cta{
    padding: 40px 0;
    background: linear-gradient(to bottom, #007aff 0, #00c6ff 44%, transparent 80%, transparent 100%);
    /* background: linear-gradient(to bottom, #fee163 0, #fbb425 44%, transparent 44%, transparent 100%); */
}
.cta > h2{
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.cta > .section-subtitle{
    color: #fff;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}
.cta > form{
    width: 95%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 20px auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
}
.cta-field{
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}
.cta-field > label{
    font-weight: bold;
    align-items: center;
    
}
.cta-field > label > span{
    background-color: #3F51B5;
    color: #fff;
    font-size: .9rem;
    padding: 5px;
    margin-right: 10px;
}
.cta-field > input{
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-top: 10px;
}
.cta-field > textarea{
    background-color: #f5f5f5;
    resize: none;
    border-radius: 10px;
    margin-top: 10px;
    padding: 30px;
}
.cta > form > button{
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    display: block;
    margin: 30px auto 0;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 30px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #fff;
}
.cta > form > button:hover{
    background-image: linear-gradient(90deg, #e84d1e, rgb(233, 176, 4));
}

/*  */
/* footer */
/*  */
footer{
    padding: 40px 0 20px;
    background-color: #003670;
    color: #fff;
}
footer > ul > li{
    margin: 10px 0;
}
footer > img{
    width: 250px;
    margin: 20px 0;
}
footer > small{
    margin: 0 auto;
    display: block;
    width: fit-content;
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 1250px) {
    .hero-badge > .hero-badge-text{
        left: 125px;
        transform: translate(-50px, -50%);
    }
    .hero-badge-1 > .hero-badge-text{
        left: 140px;
        transform: translate(-50px, -50%);
    }
}
@media (max-width: 1160px) {
    .hero-images > img{
        width: 80%;
        max-width: 600px;
    }
    .hero-images{

    }
}
@media (max-width: 1024px) {
    .hero-badge > .hero-badge-text{
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-badge-1 > .hero-badge-text{
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-images{
        display: flex;
        flex-direction: column-reverse;
    }
    .hero-images > ul{
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    .hero-images > ul > li{
        position: unset;
        font-size: 1.2rem;
        text-align: center;
        margin: 10px 0;
        width: 49%;
        display: block;
    }
    .hero-badges{
        position: unset;
        width: fit-content;
        margin: 20px auto 0;
        transform: unset;
    }
    .hero{
        padding: 90px 0 60px;
    }
    .hero-badges img{
        width: 250px;
    }
    .twitter-main{
        margin: unset;
        margin-left: auto;
        padding: 80px 50px 0;
    }
    .twitter-click{
        width: 655px;
    }
    .twitter-click > a{
        width: 645px;
        margin-left: 10px;
        margin-bottom: -50px;
        margin-top: -54px;
    }
    .twitter-click > a > img{
        width: 250px;
    }
    .twitter-tweet.twitter-tweet-rendered{
        top: 0;
    }
    .twitter > img{
        margin-left: 0;
    }
    .client-works-main > img{
        border-bottom-left-radius: 75px;
    }
    
}
@media (max-width: 820px) {
    .strongs-element{
        flex-direction: column;
    }
    .strongs-element > img{
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }
    .strong-content{
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }

    .strongs-element:nth-child(1){
        flex-direction: column-reverse;
    }
    .carousel-container{
        width: 90%;
    }
    .thumbnail{
        width: 100px;
        height: 100px;
    }
    .client-works-main{
        flex-direction: column-reverse;
        gap: 10px;
        padding: 30px 40px;
    }
    .client-works-main > img{
        border-bottom-left-radius: 20px;
        width: 100%;
        padding: 10px 100px;
    }
    .client-works{
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }
    .client-works-contents{
        width: 100%;
        padding: 0 5px;
    }
    .product-comments{
        width: 90%;
        margin: 20px auto 0;
    }
    .twitter-main{
        flex-direction: column;
        width: 100%;
        margin-left: unset;
    }
    .twitter-tweet.twitter-tweet-rendered{
        position: unset;
        width: 100% !important;
    }
    .twitter-tweet-rendered {
        display: block !important;   /* flex を打ち消す */
        margin: 0 auto !important;   /* 中央寄せ */
        max-width: 550px !important; /* 埋め込み最大幅 */
        transform: unset !important;
    }
    iframe#twitter-widget-0{
        width: 100% !important;

    }
    .twitter-click{
        width: unset;
        background-color: #fff;
        margin: 0 auto;
    }
    .twitter-click > p{
        position: relative;
    }
    .twitter-click > a > img{
        margin-left: unset;
    }
    .twitter-click > a{
        width: 100%;
        margin-left: unset;
        margin-bottom: unset; 
        margin-top: unset;
        display: flex;
        flex-direction: row-reverse;
    }
    .twitter-click > a > p{
        position: unset;
        text-align: center;
        margin-right: 10px;
    }
    .twitter-click > p{
        bottom: 10px;
        font-size: 2rem;
        text-align: center;
        margin-top: -20px;
        padding-bottom: 20px;
    }
      
}
@media (max-width: 650px) {
    .header-cta-call a > span{
        display: none;
    }
    .header-cta-call a > i{
        font-size: 2rem;
    }
    header > ul > li > a{
        font-size: 0;
    }
    header > ul > li > a > i{
        font-size: 2rem;
        display: block !important;
    }
    .hero-title > h2{
        font-size: 2.5rem;
    }
    .hero-title-strong{
        font-size: 4rem;
    }
    .hero-images > ul > li{
        flex: 1 1 calc(50% - 10px); 
        display: flex;             
        justify-content: center;
        align-items: center; 
        flex-direction: column;
    }
    .hero-images > ul > li > span{
        display: block;
    }
    .hero-badges img{
        width: 170px;
    }
    .hero-badge > .hero-badge-text{
        font-size: 2rem;
    }
    .hero-badge > .hero-badge-text > span{
        font-size: .7rem;
        margin-top: 0;
        line-height: 1rem;
    }
    .hero-badge-1 > .hero-badge-text{
        font-size: 3rem;
    }
    .hero-badge-2 > .hero-badge-text {
        top: 47%;
    }
    .hero .hero-badge-1 > .hero-badge-text > span {
        margin-top: auto;
        position: absolute;
        right: -6px;
        bottom: -5px;
    }
    .strongs-main::after{
        color: #f4f4f4;
    }
    .thumbnail{
        width: 100px;
        height: 75px;
    }
    .image-info p{
        font-size: 1.1rem;
        font-weight: bold;
    }
    .works-letter-color{
        font-size: 2.7rem;
    }
    .works-letter-border{
        font-size: 2.3rem;
    }
    .client-works-main > img{
        padding: 10px 70px;
    }
    .twitter-click > p{
        font-size: 2rem;
        /* bottom: 30px; */
    }
}
@media (max-width: 470px) {
    header > h1 > a {
        padding: 0 10px;
    }
    .client-works-main{
        padding: 30px 20px;
    }
    .works-letter-color{
        font-size: 2.2rem;
        margin-right: 3px;
    }
    .works-letter-border{
        font-size: 2rem;
        margin-right: 3px;
    }
    .client-works-contents > h2{
        font-size: 1.2rem;
    }
    .client-works-main > img {
        padding: 10px 40px;
    }
    .hero-title > h2 {
        font-size: 2.1rem;
    }
    .hero-title-strong{
        display: block;
        margin-bottom: -80px;
    }
    .hero-images > ul > li{
        font-size: 1.1rem;
    }
    .hero-badges img {
        width: 100%;
        margin: unset;
    }
    .hero-badge{
        width: 50%;
    }
    .strong-content > p {
        font-size: 1.1rem;
    }
    .strong-content{
        padding: unset;
    }
    .strongs-element > img{
        margin: 20px auto 0;
    }
    .strong-content > h3{
        margin-bottom: 10px;
    }

    .products > h2{
        font-size: 1.8rem;
    }
    .section-subtitle{
        font-size: 1.1rem;
    }
    .product-comments{
        font-size: 1rem;
        font-weight: bold;
    }
    .client-works-contents > p{
        font-size: 1rem;
    }
    .twitter-main{
        padding: 50px 10px 0;
    }
    .twitter-click > a > p{
        font-size: 3.4rem;
    }
    .twitter-click > a > img{
        width: 200px;
    }
    .twitter-click > p{
        font-size: 1.7rem;
    }



    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    .arrow.prev { left: -10px; }
    .arrow.next { right: -10px; }
    
    .dots-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
    }
    
    .dot.active { background: #ffd700; }
    .main-image{
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .thumbnail-list{
        display: none;
    }
    .carousel-container{
        flex-direction: column;
    }
    .image-info {
        flex-grow: 1; /* 残りのスペースを占める */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .products::after{
        top: 100px;
        right: 0;
    }
    .client-works{
        margin: 50px auto 100px;
    }
    .twitter-click{
        padding: 0 0 20px 0;
    }
    .image-info > h3{
        top: -54px;
        font-size: 1.1rem;

    }
    .twitter{
        padding: 0 0 20px;
    }
    .cta > form{
        width: 90%;
    }
}

.arrow{
    display: none;
}