.section1 {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.langingContainer {
    width: 25%;
}

.langingContainer svg {
    width: 100%;
    height: auto;
    display: block;

    fill: var(--Gold);
    fill-opacity: 0;
    stroke-width: 0;
    stroke: url(#gradation-1);
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes dash1 {
    0% {
        stroke-dashoffset: 800;
        stroke-width: 3px;
    }

    50% {
        stroke-dashoffset: 1600;
        stroke-width: 0.1px;
    }

    50.1% {
        stroke-dashoffset: 800;
    }

    80% {
        stroke-width: 2px;
        fill: #1bb;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: #fff;
        stroke-width: 0;
        fill: var(--Gold);
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

.isReady .langingContainer svg{
    -webkit-animation: dash1 1.8s linear forwards;
    animation: dash1 1.8s linear forwards;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}



.isReady .landingTitle {
    opacity: 1;
    transition: 1s;
    transition-delay: 2s;
    margin-top: 30px;
}

.landingTitle {
    font-size: 2em;
    font-family: var(--Sans);
    line-height: 1em;
    color: var(--Gold);
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transition: 1s;

}

.landingTitle span {
    display: block;
    font-size: 20px;
    font-family: var(--Sans);
    font-weight: 400;
    color: var(--White);
    opacity: .5;
}




.section2 {
    background: var(--Main);
    width: 100%;
    padding: 20vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--Serif);
    font-weight: 600;
    color: var(--Gold);
    line-height: 2em;
    text-align: center;
    font-size: 24px;
}

.section2 .text {
    font-family: var(--Sans);
    font-weight: 400;
    color: var(--White);
    font-size: 18px;
}

.section3 {
    width: 100%;
    padding: 20vh 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 100px;

}

.aSection {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

.aSection picture {
    display: block;
    width: 30%;
}

.aSectionText {
    width: 35%;
}

.aSectionText h2 {
    margin-bottom: 20px;
}

.aSectionText p {
    font-family: var(--Sans);
    font-weight: 400;
}

.aSection:nth-child(2n) {
    flex-direction: row-reverse;
}


.section4{
	width: 100%;
    padding: 15vh 0 25vh 0; 

    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--Brown) url(../img/p.png) repeat center center;;
}
.youtube{
	width: 40%;
}
.youtube img{
	display: block;
	width: 100%;
}

.swiper-button-nextA,
.swiper-button-prevA{
    color:var(--White);
}



/*////RWD////*/

@media screen and (max-width:1440px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1180px) {}

@media screen and (max-width:1024px) {}

@media (orientation:portrait) and (max-height: 1180px) {
    .langingContainer {
        width: 40%;
    }

    .section1,
    .section3 {

       background: transparent;
    }

    .section3 {
        width: 100%;
        padding: 20vh 50px;
    }

    .aSection picture,
    .aSectionText {
        width: 50%;
    }
    .youtube{
		width: 80%;
	}

   
}

@media (orientation:portrait) and (max-height: 1024px) {}

@media screen and (max-width:640px) {
    .langingContainer {
        width: 80%;
    }

    .langingContainer svg {
        width: 70%;
        margin: 0 auto;
    }

    .aSection {
        flex-direction: column;
        gap: 20px;
    }

    .aSection:nth-child(2n) {
        flex-direction: column;
    }
    .aSection picture,
    .aSectionText {
        width: 100%;
    }

    .section4{
        padding: 10vh 0 15vh 0; 
    }


}

@media screen and (max-width:414px) {}

@media screen and (max-width:375px) {}

/*Iphone 10*/
@media (orientation: portrait) and (max-height: 812px) {}

@media (orientation: portrait) and (max-height: 736px) {}

@media (orientation: portrait) and (max-height: 667px) {}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}