* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 2px solid green !important; */
}

:root {
    --hero-font: 5.5em;
    --subhero-font: 1.6em;
    --list-font: 1.3em;
    --title-font: 2em;
    --title2-font: 3em;
    --main-font: 1.2em;
    --big: 'Tapestry', cursive;
    --small: 'Cormorant Upright', serif;
    --min-hero-font: 3em;
    --min-subhero-font: 1em;
    --min-main-font: 0.7em;
    --min-main2-font: 0.8em;
    --min-title-font: 1.2em;
    --min-title2-font: 2em;
    --min-list-font: 0.8em;
}

::-webkit-scrollbar {
    width: 0.5rem;
    background: transparent;
}

::-webkit-scrollbar-track {
    position: absolute;
    background: transparent;
    margin-block: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background: rgb(201, 201, 201);
    border-radius: 5rem;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden !important;
    overflow: overlay !important;
}

.count {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}

.container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.container::after {
    position: absolute;
    content: "";
    left: 95%;
    bottom: 5%;
    z-index: 3;
    transform: translate(-95%, -5%);
    opacity: 0;
    width: 50px;
    height: 50px;
    border-bottom-right-radius: 0.5rem;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    animation: in 0.5s ease 2.2s forwards;
}

.container::before {
    position: absolute;
    content: "";
    left: 5%;
    top: 5%;
    z-index: 3;
    transform: translate(-5%, -5%);
    opacity: 0;
    width: 50px;
    height: 50px;
    border-top-left-radius: 0.5rem;
    border-left: 4px solid white;
    border-top: 4px solid white;
    animation: in 0.5s ease 2.2s forwards;
}

.cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.background {
    position: absolute;
    object-fit: cover;
    width: 120%;
    height: 120%;
    animation: fill 1s ease-in-out forwards;
}

@keyframes fill {
    0% {
        width: 120%;
        height: 120%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}

.linex3 {
    width: 0%;
    height: 0;
    border-bottom: 3px dotted white;
    position: absolute;
    top: 19%;
    left: 0%;
    z-index: 3;
    overflow: hidden;
    animation: 1s lineX ease-in-out 0.5s forwards;
}

@keyframes lineX {
    0% {
        width: 0%;
    }
    100% {
        width: 84%;
    }
}

.liney1 {
    width: 0%;
    height: 0%;
    border-right: 3px dotted white;
    position: absolute;
    top: 0%;
    left: 10.5%;
    z-index: 3;
    overflow: hidden;
    animation: 1s liney ease-in-out 0.5s forwards;
}

.liney2 {
    width: 0%;
    height: 0%;
    border-right: 3px dotted white;
    position: absolute;
    bottom: 0%;
    left: 84%;
    z-index: 3;
    overflow: hidden;
    animation: 1s liney ease-in-out 0.5s forwards;
}

@keyframes liney {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

.hero {
    position: relative;
    color: white;
    opacity: 0;
    height: auto;
    font-size: var(--hero-font);
    margin-bottom: 0rem;
    font-weight: 500;
    font-family: 'Tapestry', cursive;
    text-transform: capitalize;
    animation: in 1s ease 2.7s forwards;
    z-index: 3;
    text-align: center;
}

.subhero {
    position: relative;
    color: white;
    min-width: 400px;
    max-width: 1000px;
    font-size: var(--subhero-font);
    opacity: 0;
    font-weight: 500;
    font-family: 'Cormorant Upright', serif;
    animation: in 1s ease 3.1s forwards;
    z-index: 3;
    text-align: center;
    padding: 1.5em;
    margin: 1em;
    margin-top: 0em;
    overflow: hidden;
}

@media only screen and (max-width:600px) {
    .hero {
        font-size: var(--min-hero-font);
    }
    .subhero {
        font-size: var(--min-subhero-font);
    }
}

@keyframes in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.home-ul {
    position: absolute;
    top: 50%;
    left: 100%;
    width: fit-content;
    transform: translate(-100%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1.5em;
    list-style: none;
    z-index: 3;
    margin: 1em;
    overflow: hidden;
}

.home-li {
    position: relative;
    display: block;
    margin-bottom: 2em;
    margin-right: 2em;
    padding-inline: 0.5em;
    color: white;
    font-size: var(--list-font);
    font-family: 'Tapestry', cursive;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0;
    text-transform: capitalize;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.5s ease;
}

@media only screen and (max-width:600px) {
    .home-ul {
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        flex-direction: row;
    }
    .home-li {
        display: inline;
        font-size: var(--min-list-font);
    }
}

.home-li:hover {
    border-bottom: 3px solid white;
}

.home-ul li:nth-child(1) {
    animation: ul 0.5s ease 1s forwards;
}

.home-ul li:nth-child(2) {
    animation: ul 0.5s ease 1.2s forwards;
}

.home-ul li:nth-child(3) {
    animation: ul 0.5s ease 1.4s forwards;
}

.home-ul li:nth-child(4) {
    animation: ul 0.5s ease 1.6s forwards;
}

.home-ul li:nth-child(5) {
    animation: ul 0.5s ease 1.8s forwards;
}

.home-li a {
    text-decoration: none;
    color: white;
}

@keyframes ul {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

.page1 {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: -100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background: #0e101a;
    z-index: 4;
    overflow: hidden;
}

.fix {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 150vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.5em;
    overflow: hidden;
}

.section {
    position: relative;
    width: 500px;
    max-width: 500px;
    min-width: 400px;
    height: fit-content;
    display: block;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-inline: 1em;
    padding: 1em;
}

@media only screen and (max-width:600px) {
    .fix {
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        overflow: hidden;
        padding: 0;
    }
    .section {
        position: relative;
        width: 350px;
        max-width: 350px;
        min-width: 300px;
        height: 50vh;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        padding-inline: 2em;
    }
    .left {
        padding-bottom: 0;
        padding-top: 1em;
    }
    .left .title {
        width: 100%;
        margin-bottom: 1em;
        font-size: var(--min-title-font);
    }
    .left .main {
        width: 100%;
        font-size: var(--min-main-font);
        margin-bottom: 1em;
    }
    .left .justify {
        width: 100%;
        height: 50%;
    }
    .right {
        justify-content: start;
        flex-direction: column-reverse;
    }
    .right .main {
        top: -3em;
        margin-bottom: 1em;
        font-size: var(--min-main-font);
    }
    .right .justify {
        margin-top: -1em;
        margin-bottom: 0;
        width: 100%;
        min-height: 50%;
    }
}

.right {
    padding-top: 55px;
}

.cross {
    position: absolute;
    top: 0%;
    left: 0%;
    stroke-dasharray: 1687.7;
    stroke-dashoffset: 1687.7;
    animation: cross 60s linear infinite;
}

@keyframes cross {
    0% {
        stroke-dasharray: 1687.7;
        stroke-dashoffset: 1687.7;
    }
    50% {
        stroke-dasharray: 1687.7;
        stroke-dashoffset: 3.375.4;
    }
    100% {
        stroke-dasharray: 1687.7;
        stroke-dashoffset: 6750.8;
    }
}

.title {
    position: relative;
    width: fit-content;
    margin-bottom: 1em;
    color: white;
    border-bottom: 2px solid white;
    font-size: var(--title-font);
    font-family: var(--big);
    padding-right: 0.5em;
    text-transform: capitalize;
}

.main {
    position: relative;
    width: fit-content;
    font-size: var(--main-font);
    font-family: var(--small);
    color: white;
    letter-spacing: 2px;
    margin-bottom: 2em;
    text-transform: capitalize;
}

.right .justify {
    margin-bottom: 2em;
}

span {
    opacity: 0;
    margin-inline-end: 0.35rem;
    transform: translateY(10px);
    display: inline-block;
    transition: all 0.4s ease;
}

span.fade {
    opacity: 1;
    transform: translatey(0px);
}

.justify {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    margin-top: 1em;
}

.pic1 {
    position: absolute;
    top: -100%;
    width: 100%;
    max-height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.img1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pic2 {
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.page2 {
    position: absolute;
    top: 200%;
    width: 100%;
    height: 100vh;
    display: block;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: hidden !important;
    background: linear-gradient(to right bottom, #273b57, #24879b);
    z-index: 5;
}

.page2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    background: white;
    z-index: 1;
}

.page2::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    background: white;
}

.fregmant {
    width: 100%;
    height: 50%;
    min-height: 50%;
    color: white;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.top {
    justify-content: flex-start;
}

.bottom {
    justify-content: space-evenly;
}

.top .title {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translate(-50%);
    width: max-content;
    color: white;
    text-align: center;
    text-transform: capitalize;
    border-bottom: 3px solid white;
    font-size: 4.5em;
    padding-inline: 1.5rem;
    font-family: var(--big);
}

.ulp2 {
    position: relative;
    left: 0px;
    top: 1em;
    padding: 0;
    display: block;
    justify-content: left;
    align-items: center;
    text-transform: capitalize;
    transform: translateY(-10px);
    margin-inline: 1.5rem;
    list-style: none;
    opacity: 1;
    font-size: var(--list-font);
    font-family: var(--big);
    font-weight: 500;
    letter-spacing: 3px;
}

.ulp2 li {
    text-align: center;
    position: relative;
    width: fit-content;
    overflow: hidden;
    border-bottom: 3px solid white;
    transform: skewx(-30deg);
    margin-bottom: 1rem;
    padding-inline: 1em;
    transition: all 0.5s ease;
}

@media only screen and (max-width:600px) {
    .ulp2 {
        margin-inline: 0;
    }
    .ulp2 li {
        padding-inline-start: 0.5em;
    }
}

.ulp2 li::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    background: #0e101a;
    top: 0%;
    left: -101%;
    transition: all 0.5s ease;
}

.ulp2 li:hover::before {
    left: 0%;
}

.ulp2 li p {
    transform: skewx(30deg);
}

.ulp2add {
    border-bottom: 3px solid white !important;
    color: white;
}

.slide {
    position: absolute;
    width: fit-content;
    height: fit-content;
    left: 55%;
    top: 7em;
}

@media only screen and (max-width:600px) {
    .slide {
        top: 5em;
    }
}

.top .main span,
.bottom .main span {
    opacity: 1;
    color: yellow;
    margin-inline-end: 0.35rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.addcolor {
    color: red;
}

.wind {
    position: relative;
    font-size: var(--title2-font);
    width: max-content;
    padding-inline: 0.5em;
    height: max-content;
    left: 10%;
    align-self: center;
    transform: skewx(-30deg);
    text-align: center;
    font-family: var(--big);
    text-transform: capitalize;
    background: #0e101a;
    color: white;
    border-bottom: 5px solid white;
    overflow: hidden;
}

@media only screen and (max-width:600px) {
    .wind {
        font-size: 1.5em;
        left: 0%;
    }
    .slide {
        left: 50%;
    }
}

.wind p {
    transform: skewx(30deg);
}

.slide .main {
    position: relative;
    font-size: var(--main-font);
    max-width: 550px;
    color: white;
    margin-top: 1rem;
    font-weight: 500;
}

.bottom .slide {
    position: relative;
    width: fit-content;
    height: fit-content;
    left: 0%;
    top: -10%;
    padding-inline-start: 0.5em;
    z-index: 2;
}

.solar {
    position: relative;
    font-size: var(--title2-font);
    width: max-content;
    padding-inline: 0.5em;
    height: max-content;
    left: 20%;
    align-self: center;
    transform: skewx(30deg);
    text-align: center;
    font-family: var(--big);
    text-transform: capitalize;
    background: #0e101a;
    color: white;
    border-bottom: 5px solid white;
    overflow: hidden;
}

@media only screen and (max-width:600px) {
    .bottom .solar {
        font-size: 1.5em;
        left: 0%;
    }
}

.solar p {
    position: relative;
    transform: skewx(-30deg);
}

.slide .main {
    position: relative;
    font-size: var(--main-font);
    max-width: 550px;
    color: white;
    margin-top: 1rem;
}

.sign {
    position: relative;
    min-width: max-content;
    height: auto;
    display: inline-block;
    justify-content: center;
    align-items: center;
    align-self: right;
    text-align: center;
    text-transform: capitalize;
    font-size: 2.5em;
    letter-spacing: 2px;
    font-family: 'Tapestry', cursive;
}

.sign p {
    position: relative;
    padding-inline: 0.5em;
    left: 50%;
    transform: translate(-50%);
    width: fit-content;
    border-bottom: 3px solid white;
}

@media only screen and (max-width:600px) {
    .sign {
        font-size: 1em;
    }
}

.circles {
    z-index: -1;
    opacity: 0.7;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    position: absolute;
    width: 300px;
    aspect-ratio: 1/1;
    border: 2px solid white;
    border-radius: 50%;
}

.sec {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid white;
    border-radius: 50%;
}

.circle1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid white;
    border-radius: 50%;
    transition: transform 0.4s ease-out;
}

.arrows {
    position: absolute;
    display: flexbox;
    justify-content: center;
    align-items: center;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
}

.arrow {
    position: relative;
    opacity: 1;
    width: 20px;
    height: 20px;
    transform: translateY(0px) rotateZ(45deg);
    border-bottom: 3px solid white;
    border-right: 3px solid white;
}

.a1 {
    animation: down 1.5s ease-in-out infinite;
}

.a2 {
    animation: down 1.5s ease-in-out 0.2s infinite;
}

.a3 {
    animation: down 1.5s ease-in-out 0.4s infinite;
}

@keyframes down {
    0% {
        opacity: 0;
        transform: translateY(0px) rotateZ(45deg);
    }
    50% {
        opacity: 1;
        transform: translateY(10px) rotateZ(45deg);
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateY(0px) rotateZ(45deg);
    }
}

@media only screen and (max-width:600px) {
    .page2 .title {
        font-size: var(--min-title2-font);
    }
    .ulp2 li {
        font-size: var(--min-list-font);
        padding-inline-start: 0.5em;
    }
    .top .slide {
        padding-top: 1em;
        top: 4em;
        width: 50vw;
        height: 40vh;
        min-height: 40vh;
        left: 100%;
        transform: translate(-100%);
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
    }
    .wind p {
        font-size: 0.8em;
    }
    .top .main {
        width: 50vw;
        padding-inline: 0.5em;
        font-size: var(--min-main2-font);
    }
    .bottom .slide {
        width: 50vw;
        height: 50vh;
        min-height: 50vh;
        left: 0%;
        top: 1em;
        transform: translate(0%);
        min-height: 40vh;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
    }
    .solar p {
        font-size: 0.8em;
    }
    .bottom .main {
        width: 50vw;
        padding-inline: 0.5em;
        font-size: var(--min-main2-font);
    }
    .circle1 {
        width: 200px;
        height: 200px;
    }
    .circle {
        width: 200px;
        height: 200px;
    }
    .sec {
        width: 200px;
        height: 200px;
    }
    .sign {
        font-size: var(--min-main2-font);
        padding: 0.5em;
    }
}

.page3 {
    position: fixed;
    width: 0%;
    height: 100vh;
    z-index: 6;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    transform: translate(-50%);
    background: white;
    overflow: hidden;
    z-index: 5;
}

.page3 .fregmant {
    position: relative;
    width: 50%;
    min-width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1em;
}

.page3 .pic1 {
    position: relative;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 350px;
    min-height: 350px;
    pointer-events: none;
}

.page3 .pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.page3 .pic1 .line:nth-child(1) {
    position: absolute;
    top: -5em;
    right: -4em;
}

.page3 .pic1 .line:nth-child(2) {
    position: absolute;
    bottom: -5em;
    left: -4em;
    transform: rotateZ(180deg);
}

.page3 .text {
    position: relative;
    color: black;
    max-width: 400px;
    min-width: 150px;
    font-size: var(--main-font);
    text-transform: capitalize;
    font-family: var(--small);
    text-align: left;
}

.page3 .text {
    top: 4.8em;
    left: -6em;
}

.page3 .text::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    right: 90%;
    top: 73%;
    border-bottom: 3px solid black;
    border-left: 3px solid black;
}

.page3 .text::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    left: 88%;
    top: -5%;
    border-top: 3px solid black;
    border-right: 3px solid black;
}

.page3 .head {
    position: absolute;
    top: 48%;
    left: 50%;
    margin-left: -5em;
    transform: translate(-50%, -48%);
    width: max-content;
    color: black;
    font-family: var(--big);
    font-size: 2em;
    text-transform: uppercase;
}

.side {
    position: absolute;
    left: 50%;
    transform: translate(-50%) rotateZ(-45deg);
    margin-left: 30em;
    width: 25%;
    height: 200vh;
    overflow: hidden;
}

.side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    font-family: var(--big);
    font-size: var(--hero-font);
    text-transform: uppercase;
    color: white;
    letter-spacing: 15px;
    text-align: center;
    overflow: hidden;
}

.title1 .go:nth-child(1) {
    position: relative;
    width: max-content;
    transform: translateY(705px) rotateZ(90deg);
    animation: text 15s linear infinite;
    opacity: 1;
}

@keyframes text {
    0% {
        transform: translatey(705px) rotateZ(90deg);
    }
    100% {
        transform: translatey(-520px) rotateZ(90deg);
    }
}

a {
    text-decoration: none;
    color: black;
}

.link {
    position: absolute;
    top: 87%;
    left: 50%;
    transform: translate(-50%, -87%);
    margin-left: 3em;
    width: max-content;
    padding-inline: 0.5em;
    padding-bottom: 0.2em;
    font-size: var(--title2-font);
    font-family: var(--big);
    text-transform: capitalize;
}

.link::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 50%;
    right: 0%;
    bottom: 0%;
    border-bottom: 3px solid black;
    border-right: 3px solid black;
    animation: link 3s ease infinite;
    transition: all 0.8s ease;
}

.link::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 50%;
    left: 0%;
    top: 0%;
    border-top: 3px solid black;
    border-left: 3px solid black;
    transition: all 0.8s ease;
}

.link:hover::after,
.link:hover::before {
    width: 98%;
    height: 93%;
}

.page3-ul {
    position: absolute;
    top: 2em;
    left: 1em;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    cursor: default;
}

.page3-uladd {
    width: 60px;
    height: 250px;
}

.page3-li {
    position: relative;
    left: 0%;
    color: transparent;
    list-style: none;
    font-size: var(--list-font);
    text-align: center;
    text-align: center;
    text-transform: capitalize;
    align-self: flex-start;
    font-family: var(--big);
    margin: 0;
    top: 0;
    width: 30px;
    height: 0px;
    padding-bottom: 0px;
    margin-bottom: 5px;
    border-bottom: 3px solid black;
    pointer-events: none;
}

.air {
    transition: width 0.8s ease 0.9s, padding-bottom 0.5s ease 3.7s, top 0.7s ease 2.8s, color 0.5s ease 3.5s;
}

.sun {
    transition: width 0.8s ease 0.6s, padding-bottom 0.5s ease 3.7s, top 0.7s ease 2.3s, color 0.5s ease 3.3s;
}

.water {
    transition: width 0.8s ease 0.3s, padding-bottom 0.5s ease 3.7s, top 0.7s ease 1.8s, color 0.5s ease 3.1s;
}

.more {
    transition: width 0.8s ease, padding-bottom 0.5s ease 3.7s, top 0.7s ease 1.3s, color 0.5s ease 2.9s;
}


/* fixing back problem */

.airre {
    transition: width 0.8s ease 4.7s, padding-bottom 0.5s ease, top 0.7s ease 1.8s, color 0.5s ease 0.7s;
}

.sunre {
    transition: width 0.8s ease 4.4s, padding-bottom 0.5s ease, top 0.7s ease 2.3s, color 0.5s ease 0.9s;
}

.waterre {
    transition: width 0.8s ease 4.1s, padding-bottom 0.5s ease, top 0.7s ease 2.8s, color 0.5s ease 1.1s;
}

.morere {
    transition: width 0.8s ease 3.8s, padding-bottom 0.5s ease, top 0.7s ease 3.3s, color 0.5s ease 1.3s;
}

.airadd {
    color: black;
    top: 0%;
    width: 60px;
    padding-bottom: 25px;
    pointer-events: all;
}

.sunadd {
    color: black;
    top: 25%;
    width: 60px;
    padding-bottom: 25px;
    pointer-events: all;
}

.wateradd {
    color: black;
    top: 50%;
    width: 60px;
    padding-bottom: 25px;
    pointer-events: all;
}

.moreadd {
    color: black;
    top: 75%;
    width: 60px;
    padding-bottom: 25px;
    pointer-events: all;
}

@media only screen and (max-width:600px) {
    .fregmant {
        width: 100vw;
        min-width: 100vw;
    }
    .fregmant .pic1 {
        width: 120px;
        min-width: 120px;
        height: 30vh;
        min-height: 30vh;
        left: 13em;
    }
    .page3 .pic1 .line:nth-child(1) {
        width: 80px;
        min-width: 80px;
        height: 100px;
        min-height: 100px;
        top: -3.1em;
        right: -1.9em;
    }
    .page3 .pic1 .line:nth-child(2) {
        width: 80px;
        min-width: 80px;
        height: 100px;
        min-height: 100px;
        bottom: -3em;
        left: -1.8em;
    }
    .fregmant .head {
        font-size: var(--min-title-font);
    }
    .fregmant .text {
        width: 65vw;
        min-width: 55vw;
        left: 2.5em;
        font-size: var(--min-main-font);
    }
    .fregmant .text::after {
        left: -3%;
        top: 70%;
        width: 30px;
        height: 30px;
        border-bottom: 2px solid black;
        border-left: 2px solid black;
    }
    .fregmant .text::before {
        left: 80%;
        top: -7%;
        width: 30px;
        height: 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
    }
    .fregmant .head {
        margin-left: 0.5em;
        font-size: var(--min-main2-font);
    }
    .side {
        width: 0%;
        min-width: 0%;
        height: 100vh;
        top: -12em;
        margin-left: 10em;
    }
    .title1 .go {
        font-size: var(--min-main-font);
    }
    .link {
        top: 70%;
        left: 70%;
        transform: translate(-70%, -70%);
        margin-left: 3em;
        font-size: var(--min-title-font);
    }
    .page3-ul {
        width: 27px;
        height: 30px;
    }
    .page3-li {
        width: 27px;
        font-size: var(--min-list-font);
    }
    .page3-uladd {
        width: 45px;
        height: 100px;
    }
    .airadd {
        width: 45px;
        padding-bottom: 15px;
    }
    .sunadd {
        width: 45px;
        padding-bottom: 15px;
    }
    .wateradd {
        width: 45px;
        padding-bottom: 15px;
    }
    .moreadd {
        width: 45px;
        padding-bottom: 15px;
    }
}