* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ubuntu", sans-serif;
}

body {
    min-height: 100vh;
    background-color: black;
    /*background: url(bg.png) no-repeat center;
    background-size: cover;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page {
    width: 100%;
    max-width: 1400px;
    padding: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

h2 {
    margin-top: 60px;
    width: 100%;
    margin-bottom: 80px;
    text-transform: uppercase;
    color: #fff;
    font-size: 60px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.item2 {
    margin-bottom: 40px;
    font-size: 16px;
    color: #fff;
}

.icon2 {
    width: 10px;
    height: 10px;
    line-height: 60px;
    background-color: transparent;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}


.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.textb {
    width: calc(50% - 10px);
    height: 50px;
    padding: 12px;
    background-color: rgb(0, 0, 0);
    border: none;
    color: #fff;
    margin-bottom: 20px;
    border: 1px solid #222;
    font-size: 13px;
}

.textb:focus {
    border: 2px solid white;
}

textarea {
    width: 100%;
    min-height: 200px;
    max-height: 400px;
    resize: vertical;
    padding: 12px;
    background-color: rgb(0, 0, 0);
    border: none;
    color: #fff;
    margin-bottom: 20px;
    border: 1px solid #222;
    font-size: 13px;
}

textarea:focus {
    border: 2px solid white;
}

.btn2 {
    width: 120px;
    height: 40px;
    margin-left: auto;
    background-color: #3494db;
    border: none;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid #3494db;
    transition: .3s linear;
}

.btn2:hover {
    background-color: transparent;
    color: #3494db;
}

a .icon2 {
    font-size: 20px;
    margin-left: 5px;
    color: rgb(87, 86, 86);
}

@media screen and (max-width: 980px) {
    .contact-page {
        max-width: 800px;
    }

    h2 {
        font-size: 40px;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .contact-info,
    .contact-form {
        flex: 100%;
        margin-bottom: 30px;
    }

    .textb {
        width: 100%;
    }

    .item2 {
        font-size: 13px;
        padding: 7px;
    }

    .icon2 {
        margin-left: 10px;
        padding: 7px;
    }
}