body {
    margin: 0;
    padding: 0;

    background-color: black;

    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: 400;
}

img {
    display: block;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

h1 {
    font-weight: 600;
    font-size: 40px;
}

h2 {
    font-weight: 700;
    font-size: 32px;
}

h3 {
    font-weight: 600;
    font-size: 32px;
    color: black;
}

p {
    margin: 0;
    margin-top: 35px;
    padding: 0;
    font-weight: 400;
    font-size: 20px;
}

button {
    width: 100%;
    max-width: 430px;
    height: 60px;
    margin: 0;
    margin-top: 50px;

    border-radius: 61px;
    border: none;
    background-color: #1A73E8;

    font-size: 24px;
    font-weight: 400;
    color: white;
    transition: 0.3s;
}

button:hover {
    background-color: #3b86e8;
}

.button-sub {
    width: 100%;
	max-width: 430px;
    height: 60px;
    background-color: transparent;
    border: 1px solid #1b73e8;
    border-radius: 61px;
    margin: 25px 0;
    /* border: 0; */
    font-size: 24px;
    font-weight: 400;
    color: #1b73e8;
    transition: 0.3s;
}

.button-sub:hover {
    color: white;
	border-color: white;
	
}

section {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.inner {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
}

.inner__left {
    margin-left: 0;
    margin-right: auto;
}

.inner__right {
    margin-left: auto;
    margin-right: 0;
}

.item__img {
    object-fit: cover;
}

.item__img img {
    width: 100%;   
}

.item__img-with-space {
	display:block;
	width:100%;
}

.item__img-with-space-mob {
	display:none;
}

.item__text {
    max-width: 430px;
    margin: auto 0;
    padding: 20px 20px 0 20px;
}



@media screen and (max-width: 1000px) {
    .inner {
        display: block;
    }

	.item__img-with-space {
		display:none;
	}

	.item__img-with-space-mob {
		display:block;
		width:100%;
	}

    .item__text {
        margin: 45px auto 100px auto;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
        font-weight: 700;
    }

    h2 {
        font-size: 24px;

    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    button {
        font-size: 18px;
        font-weight: 700;
    }
	
	.button-sub{
		font-size: 18px;
        font-weight: 700;
	}
}

/* hero */

/* timeline */

.timeline__sec {
    background-color: white;
}

.timeline__inner {
    max-width: 1010px;
    margin: 0 auto;
    padding: 60px 20px;
}

.timeline__p {
    color: black;
}

.timeline__img {
    padding-bottom: 60px;
}

.timeline-img {
    width: 100%;
    margin-top: 70px;
}

.timeline-img-mob {
    display: none;
}

@media screen and (max-width: 1000px) {
    .timeline__inner {
        max-width: 430px;
    }
}

@media screen and (max-width: 480px) {
    .timeline-img {
        display: none;
    }

    .timeline-img-mob {
        display: block;
        width: 100%;
        margin: 30px auto 0 auto;
    }
}

/* details */

.details-p {
    margin-top: 25px;
    font-size: 15px;
}
.details-p-mobile {
    display: none;
}

.details__item {
    max-width: 1010px;
    padding: 0 20px;
    font-style: italic;
    font-size: 15px;
}

@media screen and (max-width: 1000px) {
    .details-p {
        display: none;
    }

    .details-p-mobile {
        display: block;
        padding: 0 20px;
        max-width: 430px;
        margin: 35px auto 0 auto;
        font-size: 15px;
    }
    
    .details__item {
        max-width: 430px;
        margin: 35px auto;
    }

    .details__item p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .details-p {
        font-size: 15px;
    }
}

/* two-sizes */


/* tree-shoobox  */

.tree-shoobox__img {
    order: 2;
}

.tree-shoobox__text {
    order: 1;
}

/* construction */


/* knovledgle */

.knovledgle__img {
    order: 2;
}

/* in-hand */
.in-hand__inner {
    
} 