.dimbackground {
    background: white; /*#FFEAD6;*/
    padding: 1em 0;
}

.dimension {
    color: #5e5e55;
    padding: 0 100px;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 0px solid #ccc;
    background-color: #03a9d3;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    width: 50%;
    color: #ffffff;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #027793;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #027793;
}

/* Style the tab content */
.tabcontent {
    color: #5e5e55;
    display: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
}

.tab-content {
    width: 100%;
    height: 100vh;
    align-content: center;
}

/*   */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #444;
    color: #03a9d3;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

p {
    margin: 0 0 13px 0;
}

a {
    color: #03a9d3;
}

.center {
    text-align: center;
}

.container {
    width: 95%;
    max-width: 1220px;
    margin: 0 auto;
}

.domain {
    display: grid;
    grid-template-columns: 1fr 3fr;
    position: relative;
}

.domain_base {
    position: relative;
}

.title_big {
    font-size: 20px;
    font-weight: 600;
    color: #03a9d3;
    padding: 2px 0;
    position: sticky;
    top: 0;
    text-align: center;
    height: calc(10vw + 20px);
    transition: all 0.2s ease-in;
}

.title_small {
    font-size: 0.9vw;
    font-weight: 600;
    color: #03a9d3;
    padding: 30px 0;
    position: sticky;
    top: 0;
    text-align: center;
    height: calc(10vw + 20px);
    transition: all 0.2s ease-in;
}

.domain__number {
    font-size: 8vw;
    font-weight: 600;
    color: #03a9d3;
    padding: 30px 0;
    position: sticky;
    top: 0;
    text-align: center;
    height: calc(10vw + 20px);
    transition: all 0.2s ease-in;
}

.domain__content {
    border-top: 2px solid #03a9d3;
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 10px;
    padding: 15px 0;
}

.domain__content .title {
    font-weight: 600
}

.domain__content .text {
    line-height: 26px;
}

.domain__content_news {
    border-top: 2px solid #03a9d3;
    display: grid;
    grid-template-columns: 2fr 4fr;
    grid-gap: 10px;
    padding: 15px 0;
}

.domain__content_news .title {
    font-weight: 600
}

.domain__content_news .text {
    line-height: 26px;
}

.domain__content_base {
    border-top: 2px solid #03a9d3;
    padding: 15px 0;
}

.domain__content_base .title {
    font-weight: 600
}

.domain__content_base .text {
    line-height: 26px;
}

@media (max-width: 600px) {
    .domain__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .domain__content .text {
        font-size: 15px;
    }
}