/* Global Elements*/

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



nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(233, 165, 48);
}

.nav-links{
    flex: 1;
    text-align: left;
}


.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li::after{
    content: ' ';
    width: 0%;
    height: 2px;
    background: #5a54cd;
    display:block;
    margin:auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    content: ' ';
    width: 100%;
    height: 2px;
    background: #5a54cd;
    display:block;
    margin:auto;
}

.nav-links ul li a{
    color: #061c31;
    text-decoration: none;
    font-size: 13px;
    justify-content: center;
}
.link{
    color: rgb(117, 48, 138);
}
.link:hover{
    color: rgb(246, 203, 31);
}
.link:after{
    color: rgb(99, 91, 91);
}

body{
    font-family: 'Outift';
    background: linear-gradient(#cba6f0, #76b2da);
}


.card{
    justify-content: center;
}




/*footer*/
footer {
    background: linear-gradient(#c4a3ca, #787b7a);
}

.footercon{
    width: 100%;
    padding: 70px 30px 20px;
}

.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding: 10px;
    background-color: #f3a8e1;
    margin: 10px;
    border-radius: 50%;
}

.socialIcons a i{
    font-size: 2em;
    color:#061c31;
    opacity: 0.9;
}

/* hover effect on social media icons*/
.socialIcons a:hover{
    background-color: #f3e70c;
    transition: 0.5s
}

.socialIcons a:hover i{
    background-color: white;
    transition: 0.5s
}

.footerBottom{
    padding: 20px;
    text-align: center;
}

.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}



/* Contact Form Elements*/
.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    color: purple;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: rgb(73, 147, 212);
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    outline: none;
    border: none;
    padding-left: 25px;
    font-weight: 500;
    color: #696464;
    border-radius: 50px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid #0794d0;
}

.contact-inputs:placeholder{
    color:#5572c3
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fafcfe;
    gap: 10px;
    border: none;
    border-radius: 50pc;
    background: linear-gradient(#6ecbf0, #de7ae9);
    cursor: pointer;
}

.contact-left button img{
    height: 15px;
}

.contact-right img{
    width: 700px;
}

@media (max-wdith:800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-right{
        display: none;
    }
    .footerNav{
        flex-direction: column;
    }
}

/*End of Base styles*/
.container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: normal;
    gap: 1em;
}
#contact{
    text-align: center;
    align-items: center;
    justify-content: center;
}

.item-4 p{
    padding: 1em;
}

.selfie{
    border: 5px dotted #fcfbfb;
    padding: 10px;
}

.img-fluid{
    padding: 1em;
    border: 10px solid #fff;
   justify-content: center;
   align-items: center;
   width: 500px;
}

