#contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #2255a4;;
}

#contact .ct{
    max-width: 800px;
    text-align: center;
}

#contact .ct h1{
    font-size: 3em;
    color: #fff;
    font-weight:bolder;
    text-align: center;
}
#contact .ct p{
    font-size: 1.1em;
    color: #fff;
    font-weight: 300;
    text-align: center;
}

.co{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.co .contactinfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.co .contactinfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
    cursor: pointer;
}

.co .contactinfo .box .icon{
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75em;
   color: #ffff;
}

.co .contactinfo .box .text{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    font-size: 1.1em;
    color:#fff;
    font-weight: 300;
}

.co .contactinfo .box .text h3{
    font-weight: 500;
    color: #2ecc71;
}

.co .contactinfo .box .text h3 .txt{
    color: #fff;
    margin-top: 50px;
    font-weight: 500;
    padding-left: 10px;
    border-left: 50px solid #ffff;
    line-height: 1em;
}

.sci{
    position: relative;
    display: flex;
    gap:30px;
    margin: 20px 0;
}

.sci li{
    list-style:none;
}

.sci li a{
    color: #fff;
    font-size: 2em;
    transition: 0.5s;
}

.sci li a:hover{
    color: #2ecc71;
}

.contact-right from{
    width: 100%;
}

form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #fff;
    padding: 15px;
    margin: 15px 0;
    color: black;
    border-radius: 6px;
}

@media (max-width: 991px){
    #contact{
        padding: 50px;
    }
    .co .contactinfo .box .icon{
        min-width: 10px;
        height: 10px;
        display:ruby-text;
        justify-content:left;
        align-items:baseline;
        font-size: 1.00em;
        color: #ffff;

    }
    .co{
        flex-direction: column;
    }

    .co .contactinfo,.co .contact-right{
        width: 100%;
    }

    .co .contact-right{
        padding: 20px;
    }
    #contact .ct h1{
        font-size: 30px;
        margin: 10px;
    }

    #contact .ct p{
        font-size: 0.99em;
    }
}

#msg{
    color: #61b752;
    margin-top: 10px;
    display: block;
}

h2{
    color: #ffff;
}

button{
    background-color: green;
    color: #080808;
    border: 2px solid transparent;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
}

button:hover{
    transform: scale(1.2);
    background-color: transparent;
    border: 2px solid #ffcc74;
    color: #ffcc74;
    transition: 0.4s;
    cursor: pointer;
}