@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

html,
body {
    height: 100%
}

body {
    display: grid;
    /* place-items: center; */
    /* background-image: url(https://scontent.fbho4-3.fna.fbcdn.net/v/t1.6435-9/89387051_2866005143513780_5838204953042092032_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=300f58&_nc_ohc=ueIyjNfkW1IAX_z40dg&_nc_ht=scontent.fbho4-3.fna&oh=00_AfAKO07DaDhWPscV9Eo9v_TMIA_Z23nOEyglSNroP6FoHw&oe=659BEBA9); */

}

.mobile-view{
    display: grid;
}

.desktop-view{
    display: none;
}

.card {
	color:#212529;
    /* width: 98%;
    border-radius: 10px; */
   background: transparent;
   /* box-shadow:  6px 6px 30px #0000009f, 
                -6px -6px 30px #0000009f; */
    border: none;
    height: 100vh;
}

.neo-button {
    width: 48px;
    height: 48px;
    outline: 0 !important;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    border: none;
    margin-right: 10px;
    border-radius: 50%;
    /* box-shadow:  28px 28px 57px #a23d3d, 
             -28px -28px 57px #d65151; */
}

.num a, span{
	font-weight: 500;
    color: #212529;
	/* color:#eee !important; */
}

.line{
	/* color:#fff; */
}

.neo-button:active {
   border-radius: 50%;
background: #ff3a3a;
box-shadow:  28px 28px 57px #a23d3d, 
             -28px -28px 57px #d65151;
}

.fa-facebook {
    color: #3b5998
}

.fa-whatsapp {
    color: #06b500
}

.fa-youtube {
    color: #cd201f
}

.fa-instagram {
    color: #f53f1e
}

.fa-share{
    color: #0e71c8;
}

.profile_button{
	color:#fff;
	padding:10px; 
    border:none;
    outline:0 !important;
    border-radius: 50px;
    background: #ff3a3a;
    box-shadow:  28px 28px 57px #a23d3d, 
                -28px -28px 57px #d65151;
	
}

.background{
    background: linear-gradient(145deg, #ffffff, #c5c5c5);
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-filter: blur(10px);
    background-size: cover;
    z-index: -99;
}

.rounded-circle{
    object-fit: cover;
}

.cover-img{
    background-image: url(https://static.wixstatic.com/media/d94c66_f92024b65bd045dab660558e2bc46534~mv2.jpeg/v1/fill/w_840,h_559,al_c,lg_1,q_85/d94c66_f92024b65bd045dab660558e2bc46534~mv2.jpeg);
    position: absolute;
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 150px;
    top: 0;
    left: 0;
    /* border-radius: 10px 10px 0px 0px; */
    z-index: 0;
}

.text-center{
    z-index: 99;
    margin-top: 70px;
}

.rounded-circle{
    border: 5px solid #ffffff;
}


.profile-card__button {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.411);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 19px;
    margin: 15px 35px;
    padding: 15px 40px;
    min-width: 201px;
    border-radius: 50px;
    min-height: 55px;
    color: #fff;
    cursor: pointer;
    backface-visibility: hidden;
    transition: all 0.3s;
}
@media screen and (max-width: 768px) {
    .profile-card__button {
        min-width: 170px;
        margin: 15px 25px;
   }
}
@media screen and (max-width: 576px) {
    .profile-card__button {
        min-width: inherit;
        margin: 0;
        margin-bottom: 16px;
        width: 100%;
        max-width: 300px;
   }
    .profile-card__button:last-child {
        margin-bottom: 0;
   }
}
.profile-card__button:focus {
    outline: none !important;
}
@media screen and (min-width: 768px) {
    .profile-card__button:hover {
        transform: translateY(-5px);
   }
}
.profile-card__button:first-child {
    margin-left: 0;
}
.profile-card__button:last-child {
    margin-right: 0;
}
.profile-card__button.button--blue {
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.4);
}
.profile-card__button.button--blue:hover {
    box-shadow: 0px 7px 30px rgba(19, 127, 212, 0.75);
}
.profile-card__button.button--orange {
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.35);
}
.profile-card__button.button--orange:hover {
    box-shadow: 0px 7px 30px rgba(223, 45, 70, 0.75);
}
.profile-card__button.button--gray {
    box-shadow: none;
    background: #dcdcdc;
    color: #142029;
}



@media screen and (min-width: 768px) {
   .card {
    width: 100%;
   }
   .cover-img{
    height: 410px;
   }
   .text-center{
    margin-top: 230px;
   }
   .rounded-circle{
    width: 200px;
	height: 200px;
   }
    .mobile-view{
        display: none;
    }
    .desktop-view{
        display: grid;
    }
}













