* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: #383ef0;
    overflow: hidden;
}

section:before {
    position: absolute;
    content: '';
    width: 2000px;
    height: 105%;
    bottom: -70%;
    background: #ffffff;
}

section .heading {
    display: inline-block;
    position: relative;
    color: #020543;
    font-size: 4vw;
    padding: 60px;
    width: 100%;
    text-align: center;
    font-weight: 800;
}

section .heading:before {
    position: absolute;
    content: '';
    width: 15%;
    height: 7px;
    left: 50%;
    transform: translate(-50%);
    bottom: 25%;
    background: #393939;
}

section .heading b {
    color: #fff;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.wrapper .container {
    position: relative;
    width: 350px;
    color: #fff;
    background: #222;
    margin: 40px 10px;
    padding: 30px 20px;
    border-radius: 3px;
    transition: 0.3s ease;
}

.wrapper .container p {
    margin-top: 50px;
    color: #fff;
    padding: 0 8px;
    font-size: 15px;
    opacity: 0.8;
}

.wrapper .container .left {
    font-size: 30px;
    display: block;
    text-align: left;
    color: #3b7cf5;
}

.wrapper .container .right {
    font-size: 30px;
    display: block;
    text-align: right;
    color: #3b7cf5;
}

.wrapper .container .social {
    width: 100%;
}

.wrapper .container .social i {
    font-size: 1.2em;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.wrapper .container .social i:hover {
    background: #3b7cf5;
}