@font-face {
    font-family: Play-Bold;
    src: url("/fonts/Play-Bold.ttf");
}

@font-face {
    font-family: RubikWetPaint-Regular;
    src: url("/fonts/RubikWetPaint-Regular.ttf");

}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    /* height: 100%; */
    font-family: Play-Bold;
    overflow-y: hidden;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page {
    position: relative;
    z-index: 2;
    /* background: linear-gradient(145deg, rgba(2, 0, 36, 1) 10%, rgba(0, 194, 45, 0.43) 54%); */
    margin: 0;
    background: #000;
    overflow: hidden;
    height: 100vh;
}

#matrix_container {
    position: relative;
    z-index: 1;
}

canvas {
    position: absolute;
    border: 1px solid black;

}

.header__logo img {
    width: 600px;

}

.container {
    /* border: 1px solid red; */
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    /* background-color: rgb(0, 255, 128); */
}

.header__contacts:after {
    content: "";
    clear: both;
    display: block;
}

.header_phone,
.header_email {
    color: #cbcacb;
    letter-spacing: 0.25px;
    line-height: 45px;
    position: relative;
}

.header_phone {
    padding-left: 20px;
    padding-right: 30px;
}

.header_phone:before {
    content: "\f095";
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    color: #ffc222;
}

.header_email {
    padding-left: 24px;
}

.header_email:before {
    content: "\f003";
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    color: #ffc222;
}

.header_btn {
    float: right;
    line-height: 36px;
    font-size: 22px;
    color: #ffffff;
    background-color: #ffc02200;
    padding: 5px 20px 4px 50px;
    display: block;
    position: relative;
    text-transform: uppercase;
}

.header_btn:before {
    content: "\f0b1";
    font-family: 'icomoon';
    position: absolute;
    left: 22px;
    color: #ffc222;
}

.header_content__inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    font-family: Play-Bold;
}

.header_content__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu li {
    display: inline-block;
}

.menu li+li {
    padding-left: 10px;
}

.menu a {
    color: #ffffff;
    font-size: 20px;
    line-height: 32px;
    padding: 0px 16px;
    transition: all 1s;
}

.menu a:hover {
    background-color: #ffc222;
    border-top: 2px solid rgb(255, 255, 255);
    border-bottom: 2px solid rgb(255, 255, 255);
}

main {
    position: relative;
}

.man__content {
    width: 65%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.man__foto img {
    margin-top: 20%;
    width: 100%;
}

.man__content-text {
    font-family: RubikWetPaint-Regular;
    float: right;
    line-height: 36px;
    font-size: 45px;
    color: #ffffff;
    background-color: #ffc02200;
    padding: 5px 20px 4px 50px;
    display: block;
    position: relative;
    text-transform: uppercase;
}

.social-icons {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    border: 1px solid #cbcacb;
    border-radius: 10px;
    background-color: #cbcacb;
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.copyright-text {
    position: relative;
    z-index: 5;
    width: 100%;
    color: #cbcacb;
    text-align: center;
    transition: transform 0.3s;
}