/* main_section */

.main_section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main_section .text {
    position: absolute;
    bottom: 5%;
    left: 8%;
    font-size: 2.5em;
    line-height: 1.5em;
}

.main_section .text-line {
    display: block;
}

.main_section .with-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.main_section .search_open {
    margin-left: 1em;
    line-height: normal;
    position: relative;
    bottom: 0.5em;
}



/* sima_welcome */

.sima_welcome {
    margin: var(--section-margin);
}


/* slogan parlax */

.parlax {
    position: relative;
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.photo_main_2 {
    background-image: url('../img/main_2.png');
}

.slogan .text {
    position: absolute;
    width: 84%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 2.3em;
}

.slogan .text {
    position: absolute;
    width: 84%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 2.3em;
}


/* stages */

.stages {
    margin: var(--section-margin);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.stages .item {
    position: relative;
    width: 15%;
}

.stages .item svg {
    position: absolute;
    left: 0;
    top: 0;
}

.stages .item .text {
    margin: 122px 0 .6rem;
    font-size: 24px;
    line-height: 35px;
}

.stages .item .subtext {
    font-size: 16px;
    line-height: 24px;
}

.stages .arrow_right {
    margin-top: 20px;
}


/* parlax photo_main_2 */

.photo_main_3 {
    background-image: url('../img/main_3.png');
}


/* faq */

.faq {
    margin: var(--section-margin);
}

.faq h3 {
    margin-bottom: 0.75rem;
    font-size: calc(1.325rem + 0.9vw);
    font-weight: 400;
}

.faq .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.faq .flex .col {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .75em;
}

.faq .item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .75em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
}

.faq .item .title::after {
    content: "";
    width: 1em;
    height: 1em;
    scale: 1.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23828282' d='M8 12L3 7l1.4-1.4L8 9.2l3.6-3.6L13 7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq .item.open .title::after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.faq .item .detail_text {
    margin-top: .5em;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}


/* news */

.news {
    padding: 1em 0 ;
    background-color: #fff;
}

.news h3 {
    margin: 0 0 .75em 8vw;
    font-size: calc(1.325rem + 0.9vw);
    font-weight: 400;
    color: #000;
}

.news .blog_news {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.news .item {
    position: relative;
    display: block;
    color: #000;
}

.news .item .title {
    margin: .5em 45px 1.5em 1em;
}

.news .item .date {
    margin-left: 1em;
    font-weight: lighter;
}

.news .item img {
    width: 100%;
}

.news .item svg {
    position: absolute;
    bottom: 3%;
    right: 4%;
    padding: .3em;
    scale: 1.3;
    fill: #000;
    border: 1px #000 solid;
    border-radius: var(--border-radius);
}

.news .item svg path {
    stroke: currentColor;
}



/* popup */

.popup .search button {
    margin-bottom: 0.5em;
}

.popup .search a {
    color: #000;
    margin-bottom: 2em;
    font-size: .9em;
    font-weight: 300;
}