@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Poppins", sans-serif;
    background-image: linear-gradient(to right, #ff6cab, #7366ff);
}

html, body{
    height: 100%;
}

.wrapper{
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.header{
    margin: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #9e9c9c;
    border-radius: 50px;
    background: transparent;
    background: #939394;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .7);
    background-color: rgba(0, 0, 0, .3);
}


.name {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 800;
    cursor: pointer;
}

.navbar-links a {
    margin: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 3.5rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: .5s;
}

.navbar-links a:hover {
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 3.5rem;
    text-decoration: none;
    color: #000000;
    text-shadow: 0px 0px 20px rgb(255, 255, 255, 0.9);
}



/* SECTION START FROM HERE */


.contact{
    flex: auto;
    display: flex;
    padding: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sec_contact {
    width: 60%;
}

.abt {
    color: #414142;
    margin: 0;
    padding: 0;
}

.abt_head {
    border-radius: 50px;
    background: #fff;
    color: #000;
    width: 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}


h2 {
    font-size: 45px;
    font-weight: 800;
}

.box_cont_main {
    display: flex;
    margin-top: 20px;
    padding: 10px;
    background: #fff;
    text-align: left;
    width: 100%;
    transition: 1s;
    border-radius: 30px;    
}

.box_cont_main:hover {
    /* border: 4px solid rgb(66, 65, 65); */
    border-radius: 30px;
    background: transparent;
    box-shadow: 0 0 10px #000;
    
}

.box_cont_main::after{
    transition: .9s;
}

.box_cont_main::backdrop{
    transition: .9s;
}

.box_cont_main:focus {
    border: 4px solid rgb(66, 65, 65);
    border-radius: 10px;
    background: transparent;
}

.box_cont {
    border-right: 1px solid;
    width: 70%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 5px;
}

.cont_info{
    width: 30%;
    margin: 5px;
}

input {
    background: transparent;
    font-size: 15px;
    margin: 10px;
    width: 45%;
    padding: 10px 0;
    margin-bottom: 20px;
    outline: 0;
    border-width: 0 0 1px;
    border-color: #000;
}

input:focus {
    outline: 1.5px double #000;
    border-radius: 25px;
}

#msg_box {
    background: transparent;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    width: 93%;
    height: 15vh;
    margin-bottom: 10px;
    outline: 0;
    border-width: 0 0 1px;
    border-color: #000;
    resize: none;
}

#msg_box:focus {
    outline: 1.5px double #000;
    border-radius: 25px;
}


.send_btn {
    background: #2AB6FF;
    text-decoration: none;
    border: none;
    color: #fff;
    border-radius: 25px;
    width: 120px;
    height: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.send_btn:hover {
    background: #33B6FF;
    color: #000;
    transition: .5s;
    box-shadow: 2px 2px 5px #000;
}


.contact-box{
    display: flex;
    flex-direction: column;
    /* margin-left: 15px; */
    padding: 10px;
    border-bottom: 1.5px solid;
}

.contact-box p{
    margin-bottom: 35px;
}


.by{
    font-size: 20px;
    border: 2px solid #2AB6FF;
    border-radius: 25px;
    padding: 5px;
    background: #2AB6FF;
    margin-right: 10px;
}

.home-sci{
    padding-top: 25px;
    border-top: 1.5px solid;
    /* border: 2px solid black; */
    align-items: center;
    justify-content: center;
    text-align: center;
}


.home-sci a {
    margin: 5px;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover {
    color: #fff;
    border: 2px solid #2AB6FF;
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #2AB6FF;
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}



/* FOOTER START FROM HERE */

.footer{
    padding: 15px;
    text-align: center;
}

.footer-text p {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
}

