@import url(default.css);
@import url(moduble.css);
@import url(layout.css);

/* -------------------------------- home --------------------------------- */

.index {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider1 {}

.home-projects {
    display: flex;
    width: 100%;
}

.home-projects-container {
    margin: 20px 10px;
}

.home-products {
    display: flex;
    flex-direction: column;
}

.home-products-title {
    display: flex;
}

.home-products-title>div {
    display: flex;
    flex-direction: column;
    flex: 0.5;
}

.home-products-title-part1 {}

.home-products-title-part1>h2 {
    margin: 10px 0 20px;
}

.home-products-title-part2 {}

.home-products-title-part2>span {
    font-size: 16px;
}

.home-products-title-part2>a {
    width: 160px;
    height: 45px;
    margin-top: 30px;
}

.home-products-items {
    display: flex;
    /* width: 1200px; */
    width: 100%;
    /* background-color: red; */
    /* justify-content: center; */
}

@media only screen and (max-width: 425px) {

    .slider1 {
        display: none;
    }

    .home-projects {
        display: flex;
    }

    .home-products {
        width: 95vw;
        margin-bottom: 30px;
    }

    .home-products-title {
        flex-direction: column;
        margin: 30px 10px 30px;
    }

}

@media only screen and (min-width: 426px) {

    .slider1 {
        display: none;
    }

    .home-projects {
        display: flex;
    }

    .home-products {
        width: 95vw;
        margin-bottom: 30px;
    }

    .home-products-title {
        flex-direction: column;
        margin: 30px 10px 30px;
    }

}

@media only screen and (min-width: 769px) {

    .slider1 {
        display: none;
    }

    .home-projects {
        display: flex;
    }

    .home-products {
        width: 95vw;
        margin-bottom: 30px;
    }

    .home-products-title {
        flex-direction: row;
    }

}

@media only screen and (min-width: 1025px) {

    .slider1 {
        display: none;
    }

    .home-projects {
        display: flex;
    }

    .home-products {
        width: 1000px;
        margin: 100px 0;
    }

    .home-products-title {
        flex-direction: row;
    }

}

@media only screen and (min-width: 1281px) {

    .slider1 {
        display: none;
    }

    .home-projects {
        display: flex;
    }

    .home-products {
        width: 1200px;
        margin: 50px 0;
    }

    .home-products-title {
        flex-direction: row;
    }

}

@media only screen and (min-width: 1601px) {

    .slider1 {
        display: flex;
    }

    .home-projects {
        display: none;
    }

    .home-products {
        width: 1200px;
        margin: 100px 0;
    }

    .home-products-title {
        flex-direction: row;
    }

}

/* ---------------------------------------- */

.home-about {
    background: var(--colorGrey);
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-about-container {
    display: flex;
    align-items: center;
}

.home-about-content>h2 {
    margin-top: 10px;
}

.home-about-content>p {
    margin: 40px 0 30px 80px;
    line-height: 35px;
    position: relative;
    color: var(--colorFont);
}

.home-about-content>p::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 1px;
    background: var(--colorDark);
    bottom: -40px;
    right: 0;
}

.home-about-content>span {
    display: flex;
    color: var(--colorFont);
}

.home-about-content-call {
    margin: 80px 0 10px;
}

.home-about-content-phone {
    display: flex;
    color: var(--colorMain) !important;
    font-size: 36px;
    margin-bottom: 40px;
}

.home-about-content-play {
    display: flex;
    align-items: center;
    transition: all 0.2s linear;
}

.home-about-content-play:hover div {
    background-color: var(--colorDark);
    transition: all 0.2s linear;
}

.home-about-content-play:hover span {
    color: var(--colorMain);
    transition: all 0.2s linear;
}

.home-about-content-play div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colorMain);
}

.home-about-content-play span {
    margin: 0 15px;
}

@media only screen and (max-width: 425px) {
    .home-about-container {
        flex-direction: column;
        padding: 50px 0;
    }

    .home-about-container>img {
        width: 90vw;
    }

    .home-about-content {
        margin: 30px 5vw 0;
    }
}

@media only screen and (min-width: 426px) {
    .home-about-container {
        flex-direction: column;
        padding: 50px 0;
    }

    .home-about-container>img {
        width: 90vw;
    }

    .home-about-content {
        margin: 30px 5vw 0;
    }
}

@media only screen and (min-width: 769px) {
    .home-about-container {
        flex-direction: column;
        padding: 80px 0;
    }

    .home-about-container>img {
        width: 77vw;
    }

    .home-about-content {
        margin: 50px 100px 0 0;
    }
}

@media only screen and (min-width: 1025px) {
    .home-about-container {
        flex-direction: row;
        width: 1000px;
        padding: 100px 0;
    }

    .home-about-container>img {
        width: 500px;
    }

    .home-about-content {
        margin: 0 100px 0 0;
    }
}

@media only screen and (min-width: 1281px) {
    .home-about-container {
        flex-direction: row;
        width: 1200px;
        padding: 150px 0;
    }

    .home-about-container>img {
        width: 600px;
    }

    .home-about-content {
        margin: 0 100px 0 0;
    }
}

@media only screen and (min-width: 1601px) {
    .home-about-container {
        flex-direction: row;
        width: 1200px;
        padding: 150px 0;
    }

    .home-about-container>img {
        width: 600px;
    }

    .home-about-content {
        margin: 0 100px 0 0;
    }
}

/* ---------------------------------------- */

.home-gallerys {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-gallerys-items {
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-gallerys-items>div {}



.home-gallerys-items>div>img {}


@media only screen and (max-width: 575px) {
    .home-gallerys {
        padding: 50px 0;
    }

    .home-gallerys-items {
        width: 94vw;
        margin-top: 5vw;
    }

    .home-gallerys-items>div {
        width: 94vw;
    }

    .home-gallery-item1,
    .home-gallery-item2,
    .home-gallery-item3,
    .home-gallery-item4,
    .home-gallery-item5,
    .home-gallery-item6 {
        margin-top: 3vw;
    }
}

@media only screen and (min-width: 576px) {

    .home-gallerys {
        padding: 80px 0;
    }

    .home-gallerys-items {
        width: 93vw;
        margin-top: 50px;
    }

    .home-gallerys-items>div {
        width: 45vw;
    }

    .home-gallery-item1 {
        margin: 0;
    }

    .home-gallery-item2 {
        margin: 0;
    }

    .home-gallery-item3 {
        margin: -18vw 48vw 0 0;
    }

    .home-gallery-item4 {
        margin: 3vw 48vw 0 0;
    }

    .home-gallery-item5 {
        margin: -83vw 0 0 30vw;
    }

    .home-gallery-item6 {
        margin-top: -19vw;
    }
}

@media only screen and (min-width: 1025px) {
    .home-gallerys {
        padding: 150px 0;
    }

    .home-gallerys-items {
        width: 1000px;
        margin-top: 50px;
    }

    .home-gallerys-items>div {
        width: 315px;
    }

    .home-gallery-item1,
    .home-gallery-item2,
    .home-gallery-item3 {
        margin: 0;
    }

    .home-gallery-item5 {
        margin: -115px 0 0 0;
    }

    .home-gallery-item4,
    .home-gallery-item6 {
        margin: 30px 0 0 0;
    }
}

@media only screen and (min-width: 1281px) {
    .home-gallerys {
        padding: 150px 0;
    }

    .home-gallerys-items {
        width: 1200px;
        margin-top: 50px;
    }

    .home-gallerys-items>div {
        width: 380px;
    }

    .home-gallery-item1,
    .home-gallery-item2,
    .home-gallery-item3 {
        margin-top: 0;
    }

    .home-gallery-item5 {
        margin-top: -146px;
    }

    .home-gallery-item4,
    .home-gallery-item6 {
        margin-top: 30px;
    }
}

/* ----------------------------------------------------- */

.home-step {
    background: var(--colorGrey);
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-step-container {
    display: flex;
    flex-direction: column;
}

.home-step-container>.title2 {
    margin-bottom: 20px;
}

.home-step-content {
    display: flex;
    flex-wrap: wrap;
}

.home-step-content>div {
    display: flex;
    flex-direction: column;
}

.home-step-content .number {
    font-size: 72px;
    font-weight: 700;
}

.home-step-content .title {
    font-size: 18px;
    font-weight: 600;
    margin-top: -28px;
    color: var(--colorFont);
}

.home-step-content .line {
    display: flex;
    height: 2px;
    background: var(--colorMain);
    position: relative;
    align-items: center;
    margin: 50px 0;
}

.home-step-content .line::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFF;
    border: 16px solid var(--colorMain);
    border-radius: 50%;
}


.home-step-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--colorFont);
    margin-left: 20px;
}


@media only screen and (max-width: 980px) {

    .home-step-container {
        width: 90vw;
        padding: 50px 0;
    }

    .home-step-content>div {
        width: 90vw;
    }

}

@media only screen and (min-width: 981px) {

    .home-step-container {
        width: 980px;
        padding: 100px 0;
    }

    .home-step-content>div {
        width: 490px;
    }

}

@media only screen and (min-width: 1281px) {

    .home-step-container {
        width: 1200px;
        padding: 100px 0;
    }

    .home-step-content>div {
        width: 300px;
    }

}

/* ---------------------------------------- */

.home-blogs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-blogs-items {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

@media only screen and (max-width: 768px) {
    .home-blogs {
        padding: 50px 0;
    }

    .home-blogs-items {
        width: 94vw;
    }
}

@media only screen and (min-width: 769px) {
    .home-blogs {
        padding: 80px 0;
    }

    .home-blogs-items {
        width: 94vw;
    }
}

@media only screen and (min-width: 1200px) {
    .home-blogs {
        padding: 150px 0;
    }

    .home-blogs-items {
        width: 1200px;
    }
}

/* --- blogs page -------------------------------------- */

.blogs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogs-container {
    display: flex;
    justify-content: space-between;
    /* background: yellowgreen; */
}

.blogs-content {}

.blogs-panel {}

.blogs-items {
    display: flex;
    flex-direction: column;
}

.blogs-items>div {
    margin-bottom: 20px;
}

@media only screen and (max-width: 425px) {
    .blogs-container {
        flex-direction: column;
        margin: 0 10px;
    }
    
    .blogs-panel {
        margin: auto 10px 30px 10px;
    }
}

@media only screen and (min-width: 426px) {
    .blogs-container {
        flex-direction: column;
        margin: 0 10px;
    }

    .blogs-panel {
        margin: auto 10px 30px 10px;
    }
}

@media only screen and (min-width: 769px) {
    .blogs-container {
        flex-direction: column;
        margin: 70px 10px;
    }
    
    .blogs-panel {
        margin: 10px 10px 0 10px;
    }
}

@media only screen and (min-width: 1025px) {
    .blogs-container {
        flex-direction: row;
        width: 1000px;
        margin: 120px 0;
    }

    .blogs-panel {
        width: 360px;
        margin: 10px 0 0 0;
    }

    .blogs-items {
        width: 600px;
        margin: 0;
    }
}

@media only screen and (min-width: 1281px) {
    .blogs-container {
        flex-direction: row;
        width: 1200px;
        margin: 120px 0;
    }

    .blogs-panel {
        width: 380px;
        margin: 10px 0 0 0;
    }

    .blogs-items {
        width: 770px;
        margin: 0;
    }
}

@media only screen and (min-width: 1601px) {
    .blogs-container {
        flex-direction: row;
        width: 1200px;
        margin: 120px 0;
    }

    .blogs-panel {
        width: 380px;
        margin: 10px 0 0 0;
    }

    .blogs-items {
        width: 770px;
        margin: 0;
    }
}


/* --- products page -------------------------------------- */

.products {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media only screen and (max-width: 425px) {
    .products-items {
        width: 90vw;
        margin: 10vw;
    }

    .products-items>div {
        width: 90vw;
        margin: 3vw 0;
    }
}

@media only screen and (min-width: 426px) {
    .products-items {
        width: 90vw;
        margin: 10vw;
    }

    .products-items>div {
        width: 90vw;
        margin: 3vw 0;
    }
}

@media only screen and (min-width: 769px) {
    .products-items {
        width: 92vw;
        margin: 80px;
    }

    .products-items>div {
        width: 45vw;
        margin: 15px 0;
    }
}

@media only screen and (min-width: 1025px) {
    .products-items {
        width: 1000px;
        margin: 80px 0;
    }

    .products-items>div {
        width: 310px;
        margin: 15px 0;
    }
}

@media only screen and (min-width: 1281px) {
    .products-items {
        width: 1200px;
        margin: 150px 0;
    }

    .products-items>div {
        width: 380px;
        margin: 15px 0;
    }
}

@media only screen and (min-width: 1601px) {
    .products-items {
        width: 1200px;
        margin: 150px 0;
    }

    .products-items>div {
        width: 380px;
        margin: 15px 0;
    }
}

/* --- projects page -------------------------------------- */

.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media only screen and (max-width: 425px) {
    .projects-items {
        width: 90vw;
        margin: 10vw;
    }

    .projects-items>div {
        width: 90vw;
        margin: 3vw 0;
    }
}

@media only screen and (min-width: 426px) {
    .projects-items {
        width: 90vw;
        margin: 10vw;
    }

    .projects-items>div {
        width: 90vw;
        margin: 3vw 0;
    }
}

@media only screen and (min-width: 769px) {
    .projects-items {
        width: 92vw;
        margin: 80px;
    }

    .projects-items>div {
        width: 45vw;
        margin: 15px 0;
    }
}

@media only screen and (min-width: 1025px) {
    .projects-items {
        width: 1000px;
        margin: 80px 0;
    }

    .projects-items>div {
        width: 310px;
        margin: 15px 0;
    }
}

@media only screen and (min-width: 1281px) {
    .projects-items {
        width: 1200px;
        margin: 150px 0;
    }

    .projects-items>div {
        width: 380px;
        margin: 15px 0;
    }
}

@media only screen and (min-width: 1601px) {
    .projects-items {
        width: 1200px;
        margin: 150px 0;
    }

    .projects-items>div {
        width: 370px;
        height: 840px;
        margin: 15px 0;
    }
}

/* --- blog page -------------------------------------- */

.blog {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-container {
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 50px 30px;
}

.blog-content>p {
    margin: 15px 0;
}

.blog-content>strong {
    margin: 20px 0 15px;
    font-weight: 700;
}

@media only screen and (max-width: 425px) {
    .blog-container {
        width: 92vw;
        margin: 50px 0 0;
    }
}

@media only screen and (min-width: 426px) {
    .blog-container {
        width: 92vw;
        margin: 50px 0 0;
    }
}

@media only screen and (min-width: 769px) {
    .blog-container {
        width: 94vw;
        margin: 80px 0 0;
    }
}

@media only screen and (min-width: 1025px) {
    .blog-container {
        width: 1000px;
        margin: 80px 0 0;
    }
}

@media only screen and (min-width: 1281px) {
    .blog-container {
        width: 1200px;
        margin: 120px 0 0;
    }
}

@media only screen and (min-width: 1601px) {
    .blog-container {
        width: 1200px;
        margin: 120px 0 0;
    }
}