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

body {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #6a2388, #690993);
    color: white;
    font-size: calc(12px + 0.5vw);
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 8%;
}

.container .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
}

.row section.col {
    display: flex;
    flex-direction: column;
}

.row section.left {
    flex-basis: 35%;
    min-width: 320px;
    margin-right: 60px;
}

.row section.right {
    flex-basis: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}


section.left .contactTitle h2 {
    position: relative;
    font-size: calc(18px + 0.7vw);
    color: #ddd;
    display: inline-block;
    margin-bottom: 25px;
}

section.left .contactTitle h2::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #888;
    top: 120%;
    left: 0;
}

section.left .contactTitle h2::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    background-color: dodgerblue;
    top: calc(120% - 1px);
    left: 0;
}

section.left .contactTitle p {
    font-size: calc(14px + 0.3vw);
    color: #ccc;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-bottom: 22px;
}

section.left .contactInfo {
    margin-bottom: 16px;
}

.contactInfo .iconGroup {
    display: flex;
    align-items: center;
    margin: 25px 0px;
}

.iconGroup .icon {
    width: 45px;
    height: 45px;
    border: 2px solid #ec5558;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}

.iconGroup .icon i {
    font-size: 20px;
    color: #ddd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iconGroup .details span {
    display: block;
    color: #888;
    font-size: calc(14px + 0.3vw);
}

.iconGroup .details span:nth-child(1) {
    text-transform: uppercase;
    color: #ccc;
}

section.left .socialMedia {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 22px 0px 20px;
}

.socialMedia a {
    width: 35px;
    height: 35px;
    text-decoration: none;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    background-color: transparent;
    transition: 0.4s;
    border: 1px solid #ec5558;
}

.socialMedia a i {
    color: #fff;
    font-size: 18px;
    line-height: 35px;
    transition-delay: 0.4s;
}

.socialMedia a:hover {
    transform: translateY(-5px);
    background-color: #ec5558;
    border: 1px solid transparent;
}

.socialMedia a:hover i {
    color: #fff;
}



.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.logo .img-responsive {
    width: 50%;
    max-width: 200px;
    border-radius: 50%;
    object-fit: cover;
}




@media(max-width: 900px) {
    .container .row {
        display: flex;
        flex-wrap: wrap;
    }

    .row section.left,
    .row section.right {
        flex-basis: 100%;
        margin: 5% 0;
    }


    section.left .socialMedia {
        justify-content: center;
    }


    .row section.right {
        order: -1;
        text-align: center;
    }


    .logo {
        justify-content: center;
    }
}