body {
    padding: 0;
    margin: 0;
    background-color: white;
    color: var(--main-first);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: var(--main-first);
    text-decoration: underline dotted;
}

a:hover {
    color: var(--main-second);
    transition: 0.1s;
}

.main {
    /* margin-top: 80px; */
}

.image {
    width: 100%;
}

.object {
    background-color: var(--main-third);
    color: var(--main-first);
}

.object-100 {
    height: calc(100vh - 80px);
}

.object-main {
    color: var(--main-third);
    background: linear-gradient(-3deg, var(--main-first), var(--main-second));
    font-family: "Arial Rounded MT Bold", "Arial";
}

.object-heading {
    height: 240px;
    color: var(--main-third);
    background: linear-gradient(-3deg, var(--main-first), var(--main-second));
    font-family: "Arial Rounded MT Bold", "Arial";
}

.heading-title {
    font-size: 40px;
    position: absolute;
    margin-top: 120px;
    margin-left: 50px;
}

.heading-subtitle {
    font-size: 20px;
    position: absolute;
    margin-top: 165px;
    margin-left: 50px;
}

.main-title,
.main-subtitle {
    display: block;
    position: absolute;
    text-align: left;
    margin-left: 80px;
    width: calc(100% - 80px);
}

.main-title {
    font-size: 10vh;
    margin-top: 35vh;
}

.main-subtitle {
    font-size: 3vh;
    margin-top: 47vh;
}

/* ICONS */

.object-main .icon-white {
    filter: invert(1);
}

.object-main .icon {
    width: 135px;
    transform: rotate(30deg);
    margin-left: 70%;
    margin-top: 50vh;
    animation-name: icon;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.22,-0.02,.77,1.01);
    position: absolute;
}

@keyframes icon {
    0% {
        translate: 0px 0px;
    }
    50% {
        translate: 0px 20px;
    }
    100% {
        translate: 0px 0px;
    }
}

.object-main .icon-1 {
    animation-delay: 0.2s;
    transform: rotate(-15deg);
    margin-left: 60%;
    margin-top: 50vh;
    width: 150px;
}

.object-main .icon-2 {
    animation-delay: 1.6s;
    margin-left: 80%;
    margin-top: 60vh;
    transform: rotate(-5deg);
    width: 100px;
}

.object-main .icon-3 {
    animation-delay: 1.2s;
    margin-left: 75%;
    margin-top: 30vh;
    transform: rotate(-20deg);
}

.object-main .icon-4 {
    animation-delay: 0.9s;
    margin-left: 50%;
    margin-top: 15vh;
    transform: rotate(0deg);
    width: 90px;
}

.object-main .icon-5 {
    animation-delay: 0.5s;
    margin-left: 40%;
    margin-top: 65vh;
    transform: rotate(10deg);
    width: 120px;
}

.object-main .icon-6 {
    animation-delay: 0.7s;
    margin-left: 85%;
    margin-top: 10vh;
    transform: rotate(5deg);
}

#main_subtitle_1,
#main_subtitle_2,
#main_subtitle_3 {
    animation-delay: 2.5s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    width: calc(0vh + 0px);
    overflow: hidden;
    display: inline-flex;
    white-space: nowrap;
    color: var(--main-third);
    transition: color 0.3s;
}

#main_subtitle_1 {
    animation-name: show-text-1;
}

#main_subtitle_2 {
    animation-name: show-text-2;
}

#main_subtitle_3 {
    animation-name: show-text-3;
}

/* .main-subtitle:hover #main_subtitle_1,
.main-subtitle:hover #main_subtitle_2,
.main-subtitle:hover #main_subtitle_3 {
    color: var(--main-fourth) !important;
} */

@keyframes show-text-1 {
    0% {
        width: calc(0vh + 0px);
        color: var(--main-fourth);
    }
    40% {
        width: calc(11vh + 5px);
        color: var(--main-fourth);
    }
    100% {
        color: var(--main-third);
        width: calc(11vh + 5px);
    }
}

@keyframes show-text-2 {
    0% {
        width: calc(0vh + 0px);
        color: var(--main-fourth);
    }
    40% {
        width: calc(6vh + 0px);
        color: var(--main-fourth);
    }
    100% {
        color: var(--main-third);
        width: calc(6vh + 0px);
    }
}

@keyframes show-text-3 {
    0% {
        width: calc(0vh + 0px);
        color: var(--main-fourth);
    }
    40% {
        width: calc(4vh + -3px);
        color: var(--main-fourth);
    }
    100% {
        color: var(--main-third);
        width: calc(4vh + -3px);
    }
}

.shadow-hr {
    box-shadow: 0px 3px 15px #000;
    height: 1px;
    position: absolute;
    margin-top: 0vh;
    background-color: var(--main-first);
    width: 100%;
    z-index: 2;
}

.object-standart {
    padding: 24vh calc(50% - 542px);
}

.object-standart:nth-child(odd) {
    background-color: #f6f6f6;
}

.object-image-container,
.object-text-container {
    display: inline-block;
    width: 500px;
    padding: 0px 16px;
}
.object-text-container {
    vertical-align: top;
    color: black;
}

.object-image {
    width: 400px;
}

.icon-arrow-down {
    width: 30px;
    display: block;
    position: absolute;
    margin: 0px calc(50% - 15px);
    margin-top: 30px;
}

.object-websites .image-1 {
    margin: 0px 3%;
}
.object-websites .image-2,
.object-websites .image-3 {
    position: absolute;
    filter: brightness(1.4);
    border-radius: 12px;
    height: 35px;
    width: auto;
    margin-top: 90px;
    transition: 0.4s;
    animation-name: code;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.22,-0.02,.77,1.01);
}

@keyframes code {
    0% {
        transform: translateY(0.0px);
    }
    50% {
        transform: translateY(4.9px);
    }
    100% {
        transform: translateY(0.0px);
    }
}

.object-websites .image-2 {
    margin-left: 0px;
    animation-delay: 1.5s;
}

.object-websites .image-3 {
    margin-left: 90px;
}
.object-websites .object-image-container:hover .image-2 {
    translate: -5px;
}
.object-websites .object-image-container:hover .image-3 {
    translate: 5px;
}

.object-icon {
    width: 50px;
    display: inline-block;
    margin-right: 10px;
}

.object-title {
    display: inline-block;
    font-size: 50px;
    font-weight: bolder;
}
.object-description {
    display: block;
}

.object-description,
.object-link {
    font-size: 20px;
}

.object-webapps .image-1 {
    border-radius: 12px;
    margin-left: 50px;
}

.object-webapps .image-2, .object-webapps .image-3, .object-webapps .image-4 {
    border-radius: 12px;
    width: 100px;
    box-shadow: 0px 0px 5px #1119;
    position: absolute;
    transition: 0.4s;
    animation-name: favicons;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.22,-0.02,.77,1.01);
}

@keyframes favicons {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.object-webapps .image-2 {
    margin-top: 140px;
    margin-left: 10px;
}

.object-webapps .image-3 {
    margin-top: 250px;
    margin-left: 260px;
    animation-delay: 1.5s;
}

.object-webapps .image-4 {
    margin-top: 30px;
    margin-left: 370px;
    animation-delay: 3.5s;
}

.object-webapps .object-image-container:hover .image-2 {
    translate: -5px;
}
.object-webapps .object-image-container:hover .image-3 {
    translate: 0px 5px;
}
.object-webapps .object-image-container:hover .image-4 {
    translate: 5px;
}
.object-tools .image-1 {
    border-radius: 12px;
    margin-right: 50px;
    margin-left: 50px;
}

.object-tools .image-2 {
    position: absolute;
    width: 300px;
    margin-top: 57px;
    margin-left: 214px;
    animation-delay: 1.5s;
}

.object-tools .image-3 {
    position: absolute;
    width: 36px;
    background-color: #889c2c;
    padding: 12px;
    border-radius: 10px;
    margin-top: 178px;
    margin-left: 40px;
    box-shadow: 0px 0px 5px #1119;
    animation-delay: 3.5s;
}

.object-tools .object-image-4-wrap {
    background-color: #9bb232;
    width: 105px;
    height: 105px;
    padding: 5px;
    margin-top: -24px;
    margin-left: 101px;
    border-radius: 10px;
    position: absolute;
    box-shadow: 0px 2px 5px #1119;
}

.object-tools .image-4 {
    transform: rotate(-45deg);
    width: 100px;
    height: 100px;
}

.object-tools .image-5 {
    position: absolute;
    width: 36px;
    background-color: #9bb232;
    padding: 12px;
    border-radius: 10px;
    margin-top: 190px;
    margin-left: 343px;
    box-shadow: 0px 0px 5px #1119;
    animation-delay: 2.9s;
}

.object-tools .image-2,
.object-tools .image-3,
.object-tools .object-image-4-wrap,
.object-tools .image-5 {
    animation-name: snake;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.22,-0.02,.77,1.01);
    transition: 0.4s;
}


@keyframes snake {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.object-tools .object-image-container:hover .image-2 {
    translate: 5px;
}
.object-tools .object-image-container:hover .image-3 {
    translate: -5px;
}
.object-tools .object-image-container:hover .object-image-4-wrap {
    translate: 0px -5px;
}
.object-tools .object-image-container:hover .image-5 {
    translate: 0px 5px;
}

.object-image-container {
    height: 300px;
}

.object-thumbnail {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 10px black inset;
}

.object-element .object-icon {
    display: block;
}