@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Poppins", sans-serif;
    color: #4d4d4d;
}
.left-section {
    background: #F8F8FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    /* position: relative; */
}
.left-section .logo {
    width: 140px;
    margin-bottom: 2rem;
}
.left-section .footer {
    margin-top: 4rem;
    margin-bottom: 0;
}
.left-section h1 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 2rem;
}
@media (max-width: 767px) {
    .left-section h1 {
        font-size: 42px;
    }
    .left-section {
        height: 100%;
    }
}
.left-section h5 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 2rem;
    padding-top: 2rem;
}
.left-section p {
    font-size: 16px;
    font-weight: 300;
}
.right-section {
    background: url('../../images/img.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
}
@media (max-width: 767px) {
    .right-section {
        height: 20vh;
    }
}
.btn {
    color: #4d4d4d;
    border: 2px solid #4d4d4d;
}

.btn:hover {
    color: #0dc4ac;
    background: transparent;
    border: 2px solid #0dc4ac;
}

.social-links {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .social-links {
        margin-top: 30px;
    }   
}

.social-links ul {
    padding-left: 0;
}

.social-links ul li {
    display: inline-block;
    margin-right: 14px;
}

.social-links ul li a {
    line-height: 50px !important;
    width: 50px;
    height: 50px;
    color: #4d4d4d;
    border: 2px solid #4d4d4d;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-radius 0.2s linear 0s;
}

.social-links ul li:last-child {
    margin-right: 0;
}

.social-links ul li a i {
    font-size: 20px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 3;
    transition: transfrom 0.01s linear 0s;
}

.social-links ul li a:hover {
    color: #0dc4ac;
    border: 2px solid #0dc4ac;
}