@import "common_styles/nullstyle.css";
@import "common_styles/index.css";

main {
    height: 100vh;
    display: block;
}

.content {
    max-width: 1900px;
    padding: 30px;
}

.content img {
    position: absolute;
}

.content img:first-of-type {
    position: relative;
    margin-top: -5%;
    width: 100%;
    z-index: 1;
}

.content img:nth-of-type(2) {
    padding-top: 5%;
    margin-left: -30px;
    width: 90%;
    z-index: 2;
}

.content img:nth-of-type(3) {
    top: 15%;
    margin-left: 20px;
    width: 90%;
    z-index: 5;
}

.content img:nth-of-type(4) {
    width: 40%;
    right: 10%;
    top: 15%;
    z-index: 6;
}

.content img:nth-of-type(5) {
    width: 30%;
    left: 10%;
    top: 17%;
    z-index: 7;
}

.content img:nth-of-type(6) {
    width: 48%;
    left: 10%;
    top: 25%;
    z-index: 8;
}

.content img:nth-of-type(7) {
    width: 24%;
    right: 6%;
    top: 30%;
    z-index: 9;
}

.content img:nth-of-type(8) {
    width: 45%;
    right: 2%;
    top: 37%;
    z-index: 10;
}

.content img:nth-of-type(9) {
    width: 47%;
    left: 20%;
    top: 36%;
    z-index: 11;
}

.tabs {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 75%;
    left: 10%;
    top: 8%;
    z-index: 3;
}

.tabs_logo {
    display: flex;
    justify-content: center;
    width: 300px;
    height: 100px;
    margin-top: 4%;
    padding: 25px 60px;
    transform: rotate(-3deg);
    color: #25312D;
    background-color: #8DA689;
    box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25), 0 -4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 4;
}

.tabs_logo svg {
    width: 100%;
    height: 85%;
}

.tabs_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 4;
}

.tabs_links_item {
    display: flex;
    justify-content: center;
    height: 160px;
    padding: 20px;
    color: #D3D0D0;
    box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25), 0 -4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 5;
}

.tabs_links_item svg {
    width: 46px;
    height: 46px;
}

.tabs_links_item:hover {
    color: #F5F5F5;
}

.tabs_links_item:active {
    color: #9F98B2;
}

.tabs_links_item:first-child {
    background-color: rgb(174, 102, 49);
    transform: rotate(-7deg);
}

.tabs_links_item:nth-child(2) {
    background-color: rgb(103, 86, 150);
    transform: rotate(4deg);
}

.tabs_links_item:last-child {
    background-color: rgb(185, 171, 98);
    transform: rotate(-6deg);
}

